/* style.css - Araxá Acqua Park */
:root {
    /* Colors */
    --primary-blue: #0E5C8B; /* Dark Ocean Blue */
    --primary-light: #258BBB;
    --accent-cyan: #00A3B5;
    --accent-green: #38A169;
    --text-dark: #1F2937;
    --text-muted: #4B5563;
    --text-light: #F9FAFB;
    --bg-light: #F3F4F6;
    --bg-white: #FFFFFF;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    --grad-green: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    
    /* Layout */
    --container-width: 1200px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 92, 139, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 92, 139, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Glassmorphism utility */
.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--accent-cyan);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("hero_bg.png") center/cover no-repeat;
    z-index: -2;
}

/* Fallback background if images not yet linked */
.hero-bg::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: var(--grad-primary);
    opacity: 0.2;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%),
                linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: -1;
}

.hero-content {
    color: var(--text-light);
    z-index: 1;
}

.hero-text-block {
    max-width: 650px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text-block h1 span {
    color: var(--accent-cyan);
}

.hero-text-block p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-blue);
    font-size: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits (Por que o Araxá Acqua Park) */
.benefits {
    padding: 100px 0;
    background: white;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

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

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    background: white;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon-wrapper {
    font-size: 48px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease, color 0.4s ease;
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.15);
    color: var(--primary-light);
}

.icon-wrapper .tree-icon, .icon-wrapper .plus-icon {
    position: absolute;
    bottom: 0;
    right: -10px;
    font-size: 24px;
    color: var(--accent-green);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Seja Sócio Novo Design */
.membership-new {
    background: url('https://images.unsplash.com/photo-1541846465-21d3f3afab0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.membership-new-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.membership-left.panel-glass {
    background: rgba(245, 250, 252, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px 50px 70px 50px;
    position: relative;
    flex: 0.8;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-title {
    font-size: 2.2rem;
    color: #1b7396;
    margin-bottom: 5px;
}

.m-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4B5563;
}

.m-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1F2937;
    line-height: 1.3;
}

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }

.m-btn {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 15px 40px;
    z-index: 10;
}

.m-btn:hover {
    transform: translateX(-50%) translateY(-3px);
}

.membership-right {
    flex: 1.2;
    display: flex;
    align-items: center;
}

.m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.m-card {
    border-radius: 25px;
    padding: 30px 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 180px;
    position: relative;
    transition: transform 0.3s ease;
}

.m-card:hover {
    transform: translateY(-5px);
}

.m-card i {
    font-size: 44px;
    margin-bottom: 12px;
    color: #FAD961; 
}

.bg-teal { background: linear-gradient(135deg, #24A29B, #1B8A88); }
.bg-blue { background: linear-gradient(135deg, #1D789B, #195273); }
.bg-yellow { background: linear-gradient(135deg, #FAD961, #EEA545); color: #1F2937; }
.bg-yellow i { color: #195273; }
.bg-yellow p, .bg-yellow span { color: #1F2937; }

.m-card p {
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 500;
}

.m-card span {
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.stacked-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.s-bg1, .s-bg2 {
    position: absolute;
    top: 5px; left: 5px; width: 100%; height: 100%;
    border-radius: 25px;
}

.s-bg1 { background: linear-gradient(135deg, #1D789B, #195273); transform: rotate(-5deg); z-index: 1; }
.s-bg2 { background: linear-gradient(135deg, #24A29B, #1B8A88); transform: rotate(5deg); z-index: 2; }

.stacked-wrapper:hover {
    transform: translateY(-5px);
}
.stacked-wrapper:hover .s-bg1 { transform: rotate(-8deg) translate(-2px, 2px); }
.stacked-wrapper:hover .s-bg2 { transform: rotate(8deg) translate(2px, 2px); }

.m-front {
    position: relative;
    z-index: 3;
}

.btn-gradient {
    background: linear-gradient(to right, #1C5A86, #38A169);
    color: white;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(28, 90, 134, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(28, 90, 134, 0.4);
}

/* Atrações */
.attractions {
    padding: 100px 0;
    background: white;
}

.attractions .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.attractions .section-title h2 span {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

.col-header {
    background: var(--grad-primary);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    text-align: center;
}

.kids .col-header { background: var(--grad-green); }
.relax .col-header { background: linear-gradient(135deg, #0f766e, #0e5c8b); }

.attr-card {
    height: 150px;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.attr-card::before {
    content:'';
    position:absolute;
    bottom:0; width:100%; height:80%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.attr-details {
    position: relative;
    z-index: 2;
    padding: 15px;
    color: white;
}

.attr-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.attr-details p {
    font-size: 0.85rem;
    color: #F3F4F6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Attraction Custom Backgrounds */
.bg-1 { background: url("radical_1.png") center/cover; }
.bg-2 { background: url("radical_2.png") center/cover; }
.bg-3 { background: url("radical_3.png") center/cover; }
.bg-4 { background: url("infantil_1.png") center/cover; }
.bg-5 { background: url("infantil_2.png") center/cover; }
.bg-6 { background: url("infantil_3.png") center/cover; }
.bg-7 { background: url("relax_1.png") center/cover; }
.bg-8 { background: url("relax_2.png") center/cover; }
.bg-9 { background: url("relax_3.png") center/cover; }

/* Infraestrutura */
.infra {
    padding: 100px 0;
    background: var(--bg-light);
}

.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.img-box {
    height: 250px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.img-box span {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 15px;
    width: 100%;
    font-weight: 600;
}

.img-box.main {
    height: 100%;
    min-height: 400px;
}

.hotel-details {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    margin: 20px;
    border-radius: var(--radius-md);
}

.bg-sports { background: url("https://images.unsplash.com/photo-1622396481328-9b1b78cdd9fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80") center/cover; }
.bg-food { background: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80") center/cover; }
.bg-hotel { background: url("hotel_render.png") center/cover; } /* Using generated image */

/* Progresso Obras */
.progress {
    padding: 100px 0;
    background: white;
}

.progress-box {
    background: var(--primary-blue);
    color: white;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.progress-texts {
    padding: 60px;
}

.progress-texts h2 span {
    color: var(--accent-cyan);
}

.progress-texts p {
    margin: 20px 0 40px;
    opacity: 0.9;
}

.timer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time-unit {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    text-align: center;
}

.time-unit .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.time-unit .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sep {
    font-size: 2rem;
    font-weight: 800;
}

.forecast-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-cyan);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.progress-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.prog-img {
    background-size: cover;
    background-position: center;
}

.bg-obra1 { background-image: url("construction_site.png"); }
.bg-obra2 { background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80"); }

/* Footer */
footer {
    background: #0B4568;
    color: white;
    padding: 80px 0 20px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.8;
}

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    line-height: 2;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-cyan);
}

.footer-contact p {
    margin-bottom: 15px;
    opacity: 0.8;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    font-size: 20px;
    color: var(--accent-cyan);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-cyan);
}

.contact-link i {
    font-size: 24px;
}

.text-gray { color: #9CA3AF; }
.text-sm { font-size: 0.85rem; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20b858;
}

/* Responsiveness */
@media (max-width: 992px) {
    .benefits-grid, .attractions-grid, .container-split {
        grid-template-columns: 1fr 1fr;
    }
    
    .progress-box {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .progress-images {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text-block h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid, .attractions-grid, .container-split, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-new-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-texts {
        padding: 30px 20px;
        text-align: center;
    }
    
    .timer {
        justify-content: center;
        gap: 10px;
    }
    
    .time-unit {
        padding: 10px 15px;
    }
    
    .time-unit .num {
        font-size: 1.5rem;
    }
    
    .forecast-alert {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-grid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px auto;
        display: block;
    }
    
    .footer-contact p, .contact-link {
        justify-content: center;
    }
    
    .footer-brand p, .footer-links a, .footer-contact p, .footer-bottom, .text-gray {
        color: #ffffff;
        opacity: 1;
    }
}
