/* style.css - AQUA Natação Infantil */

/* Variables / Design Tokens */
:root {
    /* Harmonious Color Palette - Standardized to new Sky Blue Logo */
    --primary: #0284c7;         /* Bright Sky Blue */
    --primary-light: #06b6d4;   /* Turquoise/Cyan */
    --primary-dark: #0369a1;    /* Dark Sky Blue */
    --primary-rgb: 2, 132, 199;
    --accent: #f97316;          /* Warm Coral/Orange */
    --accent-hover: #ea580c;    /* Darker Orange */
    --accent-rgb: 249, 115, 22;
    
    --bg-main: #f0f9ff;         /* Light Sky Blue Tint */
    --bg-white: #ffffff;
    --bg-dark: #0f172a;         /* Deep Slate for Footer */
    --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    
    --text-dark: #0f172a;       /* Slate 900 */
    --text-muted: #475569;      /* Slate 600 */
    --text-light: #ffffff;
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --header-height: 120px;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Shadows & Borders */
    --shadow-sm: 0 4px 6px -1px rgba(14, 116, 144, 0.05), 0 2px 4px -1px rgba(14, 116, 144, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(14, 116, 144, 0.08), 0 4px 6px -2px rgba(14, 116, 144, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(14, 116, 144, 0.12), 0 10px 10px -5px rgba(14, 116, 144, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(14, 116, 144, 0.06);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-light {
    color: var(--text-light) !important;
}

.badge {
    display: inline-block;
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sub-title {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px; /* Wide tracking matching the logo's 'N A T A Ç Ã O' style */
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(14, 116, 144, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Header Section */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(14, 116, 144, 0.08);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    height: 80px;
}

.main-header.scrolled .logo-img {
    height: 75px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 115px; /* Made even larger for maximum prominence */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Blends logo background smoothly */
    transition: var(--transition);
}

.logo-text {
    display: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 999;
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    background: var(--bg-gradient);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
    gap: -4px;
}

.trust-avatars .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fef08a; /* yellow-200 */
    border: 2px solid var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #eab308;
    box-shadow: var(--shadow-sm);
}

.trust-text {
    font-size: 0.937rem;
    color: var(--text-muted);
}

.hero-image-area {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 12px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-light);
    aspect-ratio: 1;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float 4s ease-in-out infinite;
}

.floating-card h4 {
    font-size: 0.937rem;
    font-weight: 700;
    color: var(--text-dark);
}

.floating-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.card-1 {
    top: 20%;
    left: -40px;
}

.card-2 {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

.card-2 .card-icon {
    background-color: var(--accent);
}

/* Diferenciais Section */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    font-size: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--text-light);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.937rem;
    color: var(--text-muted);
}

/* Programas Section */
.programs-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(14, 116, 144, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--bg-white);
    color: var(--primary);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.program-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.program-body p {
    font-size: 0.937rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-benefits {
    margin-bottom: 24px;
}

.program-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.program-benefits li i {
    color: var(--primary-light);
}

/* Condominium Info Box */
.condominium-box {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 2px dashed rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.condominium-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--accent);
}

.condominium-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.condominium-text {
    flex: 1;
    min-width: 280px;
}

.condominium-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.condominium-text p {
    font-size: 0.937rem;
    color: var(--text-muted);
}

/* O Estúdio Section */
.studio-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.studio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.studio-images {
    position: relative;
}

.studio-main-img img {
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-white);
}

.studio-info {
    padding-left: 20px;
}

.studio-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.studio-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
    width: 24px;
    text-align: center;
    margin-top: 4px;
}

.detail-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 0.937rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Depoimentos Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-gradient);
}

.testimonials-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.testimonials-slider {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testimonials-slider::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 8rem;
    color: rgba(6, 182, 212, 0.08);
    font-family: serif;
    line-height: 1;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-stars {
    color: #eab308;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(14, 116, 144, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    width: 24px;
    border-radius: 6px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.2);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* arbitrary height to slide down */
    padding: 0 24px 8px;
}

/* Contact / Lead Form Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    max-width: 500px;
}

.contact-desc {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 1.125rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
}

.contact-detail-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form-wrapper {
    position: relative;
}

.form-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #cbd5e1; /* slate-300 */
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.937rem;
    transition: var(--transition);
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.form-feedback {
    margin-top: 15px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    display: none;
    padding: 10px;
    border-radius: 50px;
}

.form-feedback.success {
    display: block;
    background-color: #d1fae5; /* green-100 */
    color: #065f46; /* green-800 */
    border: 1px solid #a7f3d0;
}

.form-feedback.error {
    display: block;
    background-color: #fee2e2; /* red-100 */
    color: #991b1b; /* red-800 */
    border: 1px solid #fecaca;
}

/* Form Trust & Urgency Badges */
.contact-link {
    color: var(--text-light);
    transition: var(--transition);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.form-badge-alert {
    background-color: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--accent);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.812rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    gap: 12px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-badge-item i {
    color: var(--primary-light);
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: #94a3b8; /* slate-400 */
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-area {
    margin-bottom: 24px;
}

.footer-brand .brand-name {
    color: var(--text-light);
}

.footer-desc {
    font-size: 0.937rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.937rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 0.937rem;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.875rem;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.text-accent {
    color: var(--accent);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

/* Responsive Styles */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .logo-img {
        height: 60px; /* Proportional sizing for mobile header */
    }

    .main-header.scrolled {
        height: 70px;
    }

    .main-header.scrolled .logo-img {
        height: 50px;
    }
    
    .features-section,
    .programs-section,
    .studio-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .main-nav, .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section Mobile Spacing Optimization */
    .hero-section {
        padding: 105px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-actions .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image-area {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .condominium-box {
        padding: 24px 20px;
        gap: 20px;
    }

    .condominium-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .condominium-text h3 {
        font-size: 1.25rem;
    }
    
    .studio-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .studio-info {
        padding-left: 0;
    }

    .studio-details {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .testimonials-slider {
        padding: 30px 20px;
        min-height: auto;
    }

    .testimonial-quote {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }

    .faq-accordion {
        gap: 12px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 1.05rem;
    }

    .faq-answer p {
        margin-bottom: 16px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .main-footer {
        padding: 50px 0 0;
    }
    
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-info {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .contact-details-list {
        align-items: center;
        text-align: left;
        margin: 0 auto;
        display: inline-flex;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-badge-alert {
        margin-bottom: 16px;
    }

    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
}
