/* CONFIGURAÇÕES GERAIS */
:root {
    --brand-dark: #132033;
    --brand-gold: #89723D;
    --brand-gold-light: #A68D5B;
    --brand-gold-hover: #725e32;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    
    /* Spacing Variables */
    --section-padding-desktop: 100px;
    --section-padding-mobile: 60px;
    --container-padding-desktop: 40px;
    --container-padding-mobile: 20px;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    width: 100%;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

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

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

.logo {
    height: 48px;
    width: auto;
}

.company-name {
    font-family: serif;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--brand-dark);
}

.btn-whatsapp-header {
    background-color: var(--brand-gold);
    color: white;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.btn-whatsapp-header:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    padding: 160px 0 100px;
    background-color: var(--brand-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero-text .attention {
    display: inline-block;
    color: var(--brand-gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.image-border {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-gold);
    border-radius: 24px;
    z-index: 1;
}

/* BOTÕES WHATSAPP */
.btn-whatsapp {
    background-color: var(--brand-gold);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgba(137, 114, 61, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--brand-gold-hover);
    transform: scale(1.05);
}

.btn-whatsapp-large {
    background-color: var(--brand-gold);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgba(137, 114, 61, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: var(--brand-gold-hover);
    transform: scale(1.05);
}

/* ANIMAÇÃO PULSE */
.pulse {
    animation: whatsapp-pulse 2s infinite;
}

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

/* SEÇÕES COMUNS */
section {
    padding: var(--section-padding-desktop) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: serif;
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand-gold);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* SOLUTIONS SECTION */
.solutions {
    background: linear-gradient(to bottom, #fff, var(--gray-50));
    position: relative;
}

.solutions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(137, 114, 61, 0.2);
    border-color: var(--brand-gold-light);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.icon-bg {
    background: var(--brand-dark);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    color: var(--brand-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -4px rgba(19, 32, 51, 0.3);
    flex-shrink: 0;
}

.solution-card h3 {
    font-family: serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--brand-dark);
    line-height: 1.2;
}

.card-description {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 0;
    border-left: none;
}

.list {
    margin-top: auto;
}

.list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-800);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.list-content {
    flex: 1;
}

.list li strong {
    color: var(--brand-dark);
    display: inline;
    margin-bottom: 0;
}

.list li svg {
    color: var(--brand-gold);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.solution-cta {
    background-color: var(--brand-dark);
    padding: 80px 60px;
    border-radius: 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(137, 114, 61, 0.3);
}

.solution-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(137, 114, 61, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* PAIN SECTION */
.pain {
    background-color: var(--gray-50);
}

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

.pain-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-gold);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.icon-red {
    background: #fef2f2;
    padding: 8px;
    border-radius: 99px;
    color: var(--brand-gold);
}

.pain-card p {
    font-weight: 500;
    color: var(--gray-800);
}

/* METHODOLOGY SECTION */
.methodology {
    background-color: var(--brand-dark);
    color: white;
}

.methodology .section-header h2 {
    color: white;
}

.methodology .section-header p {
    color: #94a3b8;
}

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

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

.method-card svg {
    margin-bottom: 24px;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.method-card p {
    color: #94a3b8;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--gray-50);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--brand-gold);
    color: white;
    padding: 8px;
    border-radius: 8px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-style: normal;
    font-weight: bold;
    color: var(--brand-dark);
}

/* ABOUT SECTION */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-family: serif;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-600);
}

.about-list {
    margin: 32px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* DIFFERENTIALS SECTION */
.differentials {
    background-color: var(--gray-50);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.diff-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.diff-card svg {
    margin-bottom: 20px;
}

.diff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.diff-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* FINAL CTA SECTION */
.final-cta {
    padding: 0;
}

.cta-box {
    background-color: var(--brand-gold);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    color: white;
    transform: translateY(50px);
    margin: 0 20px;
}

.cta-box h2 {
    font-family: serif;
    font-size: 2.5rem;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* FOOTER */
.footer {
    background-color: var(--brand-dark);
    color: white;
    padding: 150px 0 40px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 24px;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--brand-gold-light);
}

.footer-contact ul li {
    margin-bottom: 16px;
}

.footer-contact a {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a:hover {
    color: white;
}

.footer-address p {
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

/* PROCESS SECTION */
.process {
    background-color: white;
}

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

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--brand-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.process-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* FAQ SECTION */
.faq {
    background-color: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--gray-600);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
}

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

/* RESPONSIVIDADE ADICIONAL */
@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--brand-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
}

@media (min-width: 769px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
    }
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--container-padding-mobile);
    }
}

@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.75rem; }
    .differentials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { gap: 40px; }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }

    .header { height: 70px; }
    .company-name { display: none; }
    
    .hero { padding: 120px 0 60px; }
    .hero-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px; 
    }
    .hero-text h1 { font-size: 2.25rem; }
    .hero-text p { 
        margin-left: auto; 
        margin-right: auto; 
        font-size: 1.125rem;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-border {
        top: -10px;
        right: -10px;
    }
    
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.85rem; }
    
    .solutions-grid { grid-template-columns: 1fr; gap: 24px; }
    .solution-card { padding: 30px 20px; border-radius: 24px; }
    .solution-card h3 { font-size: 1.5rem; }
    
    .solution-cta { padding: 40px 20px; border-radius: 24px; }
    
    .pain-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .methodology-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
    
    .about-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .about-text h2 { font-size: 2rem; }
    
    .differentials-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .cta-box { 
        transform: translateY(0); 
        padding: 40px 20px; 
        border-radius: 24px; 
        margin: 0;
    }
    .cta-box h2 { font-size: 1.6rem; }
    .cta-box p { font-size: 1.1rem; }
    
    .footer { padding: 80px 0 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-contact a, .footer-address p { justify-content: center; }
    
    .btn-whatsapp, .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .process-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.85rem; }
    .section-header h2 { font-size: 1.6rem; }
    .logo { height: 40px; }
    .btn-whatsapp-header .btn-text { display: none; }
    .btn-whatsapp-header { padding: 10px; }
}
