:root {
    --primary: #b38b59;       /* Um tom de ouro velho/bronze bem elegante */
    --primary-hover: #9c7748;
    --secondary: #e6dfd5;     /* Tom areia claro, remete a spa/relaxamento */
    --dark: #232220;          /* Cinza escuro quente */
    --dark-grey: #3c3a37;
    --light: #faf9f7;         /* Branco off-white aconchegante */
    --text: #5e5b56;          /* Texto suave para nao cansar a vista */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text);
    background-color: var(--light);
}

h1, h2, h3, h4, .logo, .footer-logo {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* Utilities */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 40px; /* Padronizado como pílula */
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    border: 1px solid var(--primary);
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-style: italic;
    margin-top: 1.5rem;
}

blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-grey);
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 3%;
    background-color: transparent;
    position: fixed;
    width: 90%;
    left: 5%;
    top: 20px;
    z-index: 1000;
    border: 1px solid var(--primary);
    border-radius: 50px; /* Cantos arredondados */
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
}

.logo {
    font-size: 2.2rem;
    font-style: italic;
    color: var(--primary);
    margin-top: 5px; /* Alinha visualmente a fonte com o icone */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    width: 24px;
    height: 24px;
    color: var(--dark);
    transition: var(--transition);
}

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

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    background-color: transparent; /* Fundo transparente conforme solicitado */
    padding: 5px;
    border-radius: 50px;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: var(--dark); /* Cor ajustada para garantir leitura no fundo claro */
    padding: 8px 24px;
    border-radius: 40px;
    transition: var(--transition);
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--primary); /* Pílula ativa em destaque */
    color: #ffffff;
}

/* Hero Section - Bento Layout */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid var(--dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--dark);
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.box-highlight {
    color: var(--primary);
    background: rgba(179, 139, 89, 0.1);
    padding: 0 15px;
    border-radius: 12px;
    border: 1px solid rgba(179, 139, 89, 0.3);
    display: inline-block;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 300;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.sp-avatars {
    display: flex;
}

.sp-avatars .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background-color: var(--primary);
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    overflow: hidden;
}

.sp-avatars .avatar:first-child {
    margin-left: 0;
}

.sp-avatars .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-proof span {
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-solid-dark {
    background: var(--dark);
    color: #fff;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-solid-dark:hover {
    background: var(--primary);
}

.btn-icon-dark {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.btn-icon-dark:hover {
    background: var(--primary);
    transform: rotate(45deg);
}

/* Right side - Visual Bento */
.hero-visual {
    flex: 1.2;
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
}

.visual-img {
    width: 100%;
    height: 100%;
    border-radius: 60px;
    border-top-left-radius: 120px;
    border-bottom-right-radius: 200px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

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

.floating-pills {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    width: 70%;
}

.floating-pills .pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.floating-dark-card {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 280px;
    background: var(--dark);
    color: #fff;
    padding: 30px;
    border-radius: 40px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Criando o efeito de curva invertida do bento box */
.floating-dark-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 20px 0 var(--dark);
}

.floating-dark-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 20px 0 var(--dark);
}

.floating-dark-card h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.2;
}

.floating-dark-card p {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

.absolute-icon {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 11;
}

.absolute-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

/* Pain & Prof Containers */
.pain-container, .prof-container, .concept-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pain-text h2, .prof-text h2, .concept-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pain-text p, .prof-text p, .concept-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.pain-quotes {
    margin: 2.5rem 0;
}

/* Image Wrappers (Placeholders for missing images) */
.image-wrapper {
    width: 100%;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-wrapper.vertical { height: 600px; }
.image-wrapper.square { height: 500px; }
.image-wrapper.horizontal { height: 400px; }

.overlay-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}
.overlay-text.color-dark { color: var(--dark); }

/* Concept (Dark variant) */
.concept {
    background-color: var(--dark);
    color: var(--secondary);
}

.concept h2 {
    color: var(--primary);
}

.concept p {
    color: #b5b1a8;
}

/* Services / Experience - Zig Zag Layout */
.services-section {
    padding: 100px 5%;
    background-color: var(--light);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem; /* Espaçamento entre as seções */
}

.service-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 0 0 400px; /* Diminui a imagem fixando uma largura menor */
    height: 450px;
    border-radius: 25px; /* Cantos arredondados mais marcados conforme solicitado */
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

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

.service-text {
    flex: 1; /* O texto ocupa o espaço restante */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: transparent;
}

.service-overline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.service-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-outline {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid var(--dark);
    color: var(--dark);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    font-weight: 500;
    border-radius: 40px; /* Padronizado como pílula */
}

.btn-outline:hover {
    background-color: var(--dark);
    color: #fff;
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary);
}

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

.testimonial-card {
    background-color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px; /* Arredondamento conforme solicitado */
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.client-name {
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-style: italic;
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 3px;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 3.5rem;
}

.cta-container p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scarcity {
    margin-top: 1.5rem !important;
    font-size: 0.95rem !important;
    font-family: var(--font-body);
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 2rem 0;
    cursor: pointer;
}

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

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 0;
    transition: var(--transition);
}

.faq-icon {
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.faq-item p {
    font-weight: 300;
    color: var(--text);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 1.2rem;
}

.faq-item.active h4 {
    color: var(--primary);
}

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

/* Contact Section */
.contact {
    background-color: var(--secondary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-block h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-block p {
    color: var(--dark);
    font-weight: 300;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    gap: 15px;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor oficial do whatsapp se quiser, ou usar primary */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.floating-wa svg {
    width: 35px;
    height: 35px;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #1ebe57;
}

/* Footer */
footer {
    background: #1a1918;
    color: #777;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-logo {
    color: var(--primary);
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .container { padding: 0 6%; }
    
    /* Fallback to Column for Complex Layouts */
    .hero-layout, .service-row, .service-row.reverse, .contact-container, .pain-container, .prof-container, .concept-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    /* Override reveres for mobile to keep Text -> Image consistency where needed */
    .concept-container { flex-direction: column-reverse; }
    
    /* Hero */
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { margin: 0 auto 2.5rem; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero-visual { width: 100%; height: 450px; min-height: auto; margin-top: 2rem; flex: none; }
    .floating-dark-card { width: 85%; bottom: -15px; right: 5%; padding: 20px; }
    
    /* Centering action groups */
    .hero-actions, .contact-actions, .social-proof { justify-content: center; flex-wrap: wrap; }
    .sp-avatars { justify-content: center; }
    
    /* Navbar */
    .nav-links { display: none; } /* Require hamburger menu logic to display properly */

    /* Typography */
    .pain-text h2, .prof-text h2, .concept-text h2, .cta-section h2, .service-text h3 { font-size: 2.2rem; }
    
    /* Resizing Images */
    .service-img, .image-wrapper.vertical, .image-wrapper.square, .image-wrapper.horizontal, .contact-map {
        height: 380px;
        width: 100%;
        flex: none;
    }

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

@media (max-width: 480px) {
    .container { padding: 0 5%; }
    .hero h1 { font-size: 2.3rem; }
    .top-badge { font-size: 0.75rem; padding: 6px 14px; }
    .pain-text h2, .prof-text h2, .concept-text h2, .cta-section h2, .service-text h3, .contact-info h2 { font-size: 1.8rem; }
    
    /* Make buttons full width for thumbs */
    .btn-solid-dark, .btn-outline, .btn-primary { width: 100%; padding: 16px 20px; text-align: center; }
    .hero-actions .btn-icon-dark { display: none; } /* Ocultar botão de ícone no celular se os botões tomarem 100% da tela */
    .contact-actions { gap: 10px; width: 100%; }
    
    .faq-question h4 { font-size: 1.1rem; padding-right: 15px; }
    .faq-icon { font-size: 1.5rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
