:root {
    --primary: #f4a6a6;
    --primary-light: #fbecec;
    --secondary: #83bceb;
    --accent: #f79f9f;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --exclusive-gold: #c5a880;
    --exclusive-gold-dark: #aa895d;
    --exclusive-gold-light: #faf7f2;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    background: linear-gradient(
145deg,
rgb(240, 240, 240),
rgba(187, 187, 187, 0.92)
);


    
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

strong, .bold {
    font-weight: 600;
    color: var(--accent);
}

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

/* ================= HEADER ================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.233);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    display: flex;
    align-items: center; /* alinha verticalmente */
    gap: 10px;
}
.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}
.logo-text {
    font-size: 1.6rem;
    font-weight: 300;
    color: #525252;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    display: inline-block;
}
nav.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav.nav-menu ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
    position: relative;
}

nav.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav.nav-menu ul li a:hover {
    color: var(--accent);
}

nav.nav-menu ul li a:hover::after,
nav.nav-menu ul li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }
    
    nav.nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgb(255, 255, 255);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    nav.nav-menu.open {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    nav.nav-menu ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ================= HERO SECTIONS ================= */
.hero {
    margin-top: 6px; /* Header offset */
    position: relative;
    width: 100%;
    height: calc(100vh - 6px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 0;
}

.hero-content {
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.glass-title {
    background: #ffffff00;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid #ffffff00;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(0px);
    opacity: 0;
    animation: fadeUp 1.2s ease forwards 0.3s;
}

.hero-content h1 {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1.4;

    text-shadow:
        0 1px 0 rgb(0, 0, 0),
        0 0 12px rgba(255, 255, 255, 0.205),
        0 0 30px rgba(255, 255, 255, 0.158);
}

/* Inner hero for other pages */
.hero.inner {
    height: 380px;
}

/* ================= GLOBAL CONTAINERS ================= */
.container-box {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.desc-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* ================= DIÁRIO DO BEBÊ SECTION ================= */
.diario-section {
    padding: 80px 20px;
}

.diario-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
}

.diario-text {
    flex: 1 1 400px;
    text-align: left;
}

.diario-text h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.diario-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.diario-img {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.diario-img img {
    max-width: 100%;
    width: 320px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.diario-img img:hover {
    transform: translateY(-10px);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 166, 166, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 166, 166, 0.6);
}

/* ================= GRID DE CARDS (Glassmorphism) ================= */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.glass-card img.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-main);
}

.glass-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================= ACCORDION ================= */
.accordion {
    max-width: 800px;
    margin: 40px auto;
}

.accordion-item {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255,255,255,0.8);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px; 
    padding: 0 25px 25px 25px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.accordion-content-inner img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ================= TIMELINE ================= */
.timeline {
    max-width: 700px;
    margin: 50px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--accent);
    top: 0;
    bottom: 0;
    left: 20px;
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    left: 11px;
    top: 5px;
    z-index: 1;
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ================= FLOATING WHATSAPP & FOOTER ================= */
.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.btn-whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 196, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

footer {
    background: rgba(40, 40, 40, 0.95);
    color: #fff;
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: auto;
}

footer img.logo-footer {
    max-width: 60px;
    margin-bottom: 20px;
}

footer p {
    margin: 8px 0;
    font-size: 14px;
    color: #ccc;
}

footer a {
    color: var(--accent);
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    text-decoration: underline;
    color: #fff;
}

/* Animações */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .diario-grid {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .glass-title {
        padding: 20px;
    }
}

/* ================= PORTAL DE ADMISSÃO EXCLUSIVA ================= */
.exclusive-header-badge {
    background: linear-gradient(135deg, var(--exclusive-gold), var(--exclusive-gold-dark));
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(197, 168, 128, 0.3);
}

.vip-welcome-banner {
    background: var(--exclusive-gold-light);
    border-bottom: 2px solid var(--exclusive-gold);
    color: var(--exclusive-gold-dark);
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    animation: slideDown 0.5s ease-out;
}

.vip-welcome-banner strong {
    color: var(--exclusive-gold-dark);
}

.vip-welcome-banner .close-banner-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--exclusive-gold-dark);
    cursor: pointer;
    margin-left: 15px;
    font-weight: bold;
}

/* Modal Wrapper */
.admissao-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(40, 35, 30, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.admissao-modal.open {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Content */
.admissao-modal-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.admissao-modal.open .admissao-modal-card {
    transform: translateY(0);
}

.admissao-modal-header {
    background: linear-gradient(135deg, #2b2b2b, #151515);
    color: white;
    padding: 25px 30px;
    position: relative;
    text-align: center;
}

.admissao-modal-header h3 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: var(--exclusive-gold-light);
}

.admissao-modal-header p {
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.admissao-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.admissao-modal-close:hover {
    color: white;
}

.admissao-modal-body {
    padding: 30px;
}

.admissao-modal-intro {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

/* Tabs */
.admissao-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.admissao-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admissao-tab-btn:hover {
    color: var(--exclusive-gold-dark);
}

.admissao-tab-btn.active {
    color: var(--exclusive-gold-dark);
    border-bottom: 3px solid var(--exclusive-gold);
}

/* Tab Panels */
.admissao-panel {
    display: block;
}

.admissao-panel.hidden {
    display: none;
}

.admissao-form-group {
    margin-bottom: 18px;
    text-align: left;
}

.admissao-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.admissao-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    background: white;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.admissao-input:focus {
    outline: none;
    border-color: var(--exclusive-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.25);
}

.admissao-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    background: white;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-main);
    resize: none;
    height: 80px;
    transition: all 0.3s ease;
}

.admissao-textarea:focus {
    outline: none;
    border-color: var(--exclusive-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.25);
}

.btn-admissao-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--exclusive-gold), var(--exclusive-gold-dark));
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
    transition: all 0.3s ease;
}

.btn-admissao-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.45);
}

/* Success View */
.admissao-success-view {
    text-align: center;
    padding: 20px 10px;
}

.admissao-success-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 168, 128, 0.15);
    color: var(--exclusive-gold-dark);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.admissao-success-view h4 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.admissao-success-view p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.referral-generated-box {
    background: #fdfcf9;
    border: 1px dashed var(--exclusive-gold);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
}

.referral-link-display {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 12px;
    color: #555;
    border-radius: 6px;
    margin-bottom: 10px;
    text-align: center;
    word-break: break-all;
}

/* Loader Spinner */
.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 0;
}

.admissao-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(197, 168, 128, 0.2);
    border-top: 3px solid var(--exclusive-gold-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Banner de exclusividade na Home */
.exclusive-warning-banner {
    background: linear-gradient(135deg, rgba(43,43,43,0.95), rgba(21,21,21,0.95));
    color: white;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--exclusive-gold);
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.exclusive-warning-banner h3 {
    color: var(--exclusive-gold);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.exclusive-warning-banner p {
    font-size: 0.95rem;
    color: #e0e0e0;
    max-width: 600px;
    line-height: 1.5;
}

.exclusive-warning-banner .btn-admissao-trigger {
    background: var(--exclusive-gold);
    color: #111;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    transition: all 0.3s;
}

.exclusive-warning-banner .btn-admissao-trigger:hover {
    background: var(--exclusive-gold-light);
    color: var(--exclusive-gold-dark);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

