:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --gold-color: #b7a662;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #495057;
    --text-primary: #1a1a1a;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --background-primary: #FFFFFF;
    --background-secondary: #F8FAFC;
    
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-primary);
    overflow-x: hidden;
}

/* Typography */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.text-gold { color: var(--gold-color); }
.text-dark { color: var(--text-primary); }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid var(--border-color); */
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

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

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--gold-color), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.logo-letter {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.brand-text {
    line-height: 1.2;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--gold-color);
    font-weight: 500;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-color) !important;
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    font-weight: 500;
    /* box-shadow: var(--shadow-gold); */
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid #dee2e6;
}

.btn-outline-light:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: var(--background-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-actions {
        margin-bottom: 20px;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-actions .btn-lg {
        padding: 16px 24px;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 16px;
    /* box-shadow: var(--shadow-strong); */
    /* width: 100%; */
}

.hero-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-color);
    font-weight: 600;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--background-secondary);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    /* box-shadow: var(--shadow-subtle); */
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-subtle);
    /* border: 2px solid var(--gold-color); */
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--gold-color);
    /* box-shadow: var(--shadow-medium); */
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--gold-color);
}

.feature-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefit Cards */
.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--gold-color);
}

.benefit-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Gallery */
.splide__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

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

.splide__arrow {
    background: var(--gold-color);
    border: none;
    opacity: 0.8;
}

.splide__arrow:hover {
    background: var(--gold-dark);
    opacity: 1;
}

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

.cta-section h2 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--border-color);
    margin-bottom: 2rem;
}

.cta-section .btn-gold-light {
    background: #FBF7EB;
    color: var(--text-primary);
    font-weight: 500;
    border: 2px solid #EFE2B7;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-strong);
}

.contact-form .btn-gold {
    justify-content: center;
}

.form-control {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--white);
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
}

.form-check-label {
    color: var(--text-secondary);
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-question:hover {
    background: var(--background-secondary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-answer.active {
    max-height: 300px;
    padding: 1.5rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-color);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-strong);
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn { background: #25D366; }
.phone-btn { background: var(--gold-color); color: var(--primary-dark); }

.back-to-top { 
    background: var(--text-primary) !important;
    display: flex !important; /* Força aparecer sempre */
    opacity: 0.5 !important; /* Sempre visível */
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    z-index: 1000 !important;
    font-size: 20px;
}



@media (min-width: 769px) {
    .logo-mobile {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2rem; }
    .hero { padding: 40px 0 60px; }
    .section { padding: 60px 0; }
    .hero-actions { justify-content: center; }
    .floating-buttons { bottom: 2rem; right: 1rem; }
    .floating-btn { width: 60px; height: 60px; font-size: 30px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .contact-form { padding: 2rem; }
    .benefit-card { padding: 1.5rem; }
    .feature-card { padding: 1.5rem; }

    .navbar {
        display: none;
    }

    

     .back-to-top {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px;
    }
}

@media (max-width: 576px) {

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

    .logo-mobile {
        margin-bottom: 40px;
    }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.75rem; }
    .btn-lg { padding: 12px 24px; font-size: 1rem; }
    .brand-logo { gap: 8px; }
    .logo-circle { width: 35px; height: 35px; }
    .logo-letter { font-size: 1rem; }
    .brand-name { font-size: 1rem; }
    .brand-tagline { font-size: 0.75rem; }

    .navbar {
        display: none;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Scroll Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}



/* Selection */
::selection {
    background: var(--gold-color);
    color: var(--white);
}

/* Focus States */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--gold-color);
    outline-offset: 2px;
}



/* Add these new styles to your existing CSS */

/* Solution Cards */
.solution-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold-color);
    /* box-shadow: var(--shadow-medium); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 1.5rem;
    color: var(--gold-color);
}

.solution-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

/* Benefit Cards - Update for section-dark */
.section-dark .benefit-card {
    background: var(--white);
    border: 1px solid var(--border-color);
}

.section-dark .benefit-card h5 {
    color: var(--text-primary);
}

.section-dark .benefit-card p {
    color: var(--text-secondary);
}

/* Process Steps - Update styling */
.process-step {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
    height: 100%;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.process-number {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    /* box-shadow: var(--shadow-gold); */
}

.process-step h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    margin: 0;
}



.section-pagamentos {
    background-color: var(--secondary-dark);
    padding: 80px 0;
}

.section-pagamentos img {
    max-width: 100%;
}

.scafeli {
    color: #fff;
}