/* --- RESET E DESIGN SYSTEM ELEGANTE --- */
:root {
    --bg-main: #18181b;
    --bg-card: #242429;
    --bg-card-hover: #2d2d34;
    --accent-gold: #d8a4a1; /* Tom Rose Gold */
    --accent-glow: rgba(216, 164, 161, 0.15);
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* --- UTILITÁRIOS --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    margin-top: 5px;
}

.divider {
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn-primary {
    background: var(--accent-gold);
    color: #111;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(216, 164, 161, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    z-index: 999;
    transition: var(--transition);
}

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

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.logo .dot {
    color: var(--accent-gold);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 8px 20px !important;
    border-radius: 30px;
    color: var(--accent-gold) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(216, 164, 161, 0.2);
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.typed-text {
    color: var(--accent-gold);
    font-weight: 600;
}

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

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* --- SLIDER DE FOTOS SUAVE --- */
/* --- SLIDER DE FOTOS - TRANSIÇÃO SUAVE CONTINUA --- */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px; /* Mantém a altura estável para não pular */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    max-width: 480px;
    
    /* Efeito de opacidade com aceleração de hardware */
    opacity: 0;
    visibility: hidden;
    will-change: opacity, filter;
    transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out, filter 1.8s ease-in-out;
    
    filter: drop-shadow(0px 0px 15px rgba(216, 164, 161, 0.3));
}

.slide-img.active {
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0px 0px 25px rgba(216, 164, 161, 0.75));
}

/* Indicadores */
.slider-dots {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot-item {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot-item.active,
.dot-item:hover {
    background-color: var(--accent-gold);
    width: 26px;
    border-radius: 12px;
}
}

/* Indicadores (Pontinhos) abaixo das fotos */
.slider-dots {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot-item {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot-item.active,
.dot-item:hover {
    background-color: var(--accent-gold);
    width: 26px;
    border-radius: 12px;
}
}

/* Indicadores (Pontinhos) abaixo das fotos */
.slider-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot-item {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot-item.active,
.dot-item:hover {
    background-color: var(--accent-gold);
    width: 24px;
    border-radius: 10px; /* Transforma o ponto em um tracinho quando ativo */
}

/* Ajustes da Imagem PNG sem fundo */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.main-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    /* Contorno suave em degradê rosa recortando o PNG */
    filter: drop-shadow(0px 0px 18px rgba(216, 164, 161, 0.5));
    transition: var(--transition);
}

.main-img:hover {
    filter: drop-shadow(0px 0px 28px rgba(216, 164, 161, 0.8));
}

/* --- ABOUT SECTION --- */
.about {
    padding: 120px 0;
    background: #141417;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.about-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(216, 164, 161, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

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

/* --- LINHA DO TEMPO --- */
.timeline-section {
    padding: 120px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-content {
    padding: 30px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.timeline-content.highlight {
    border: 1px dashed var(--accent-gold);
}

.timeline-content .date {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- PILARES --- */
.pillars {
    padding: 120px 0;
    background: #141417;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-box {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}

.pillar-box:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.pillar-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pillar-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- CONTATO --- */
.contact {
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-card);
    border-radius: 28px;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-white);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- FOOTER --- */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #111113;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item.right { left: 0%; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        padding: 30px;
        display: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; gap: 20px; }
    .hero-text h1 { font-size: 2.8rem; }
}