/* ==========================================================================
   VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
:root {
    --primary-color: #8B9A42;
    /* Verde principal */
    --accent-color: #8B9A42;
    /* Cor de destaque */
    --accent-light: #F0F4E6;
    /* Verde claro */
    --light-color: #EEEEEE;
    /* Cinza claro */
    --dark-color: #302F2E;
    /* Preto acinzentado */
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --border-radius-lg: 16px;

}

/* ==========================================================================
   Esonder campos em versao mobile/desktop
   ========================================================================== */

   /* Para telas menores que 768px (mobile) */
@media (max-width: 767.98px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Para telas maiores ou iguais a 768px (desktop) */
@media (min-width: 768px) {
    .hide-on-desktop {
        display: none !important;
    }
}
.uppercase {
    text-transform: uppercase;
}

/* Gradiente base */
.btn-gradient {
    background: linear-gradient(90deg, #485819 0%, #718217 100%)!important;
    color: white;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #3a4a14 0%, #5f7014 100%)!important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 88, 25, 0.3);
}

.btn-gradient:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(72, 88, 25, 0.3)!important;
}

.btn-gradient:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(72, 88, 25, 0.4)!important;
}
/* ==========================================================================
   RESET E ESTILOS BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   SCROLL BEHAVIOR FIX
   ========================================================================== */

/* Ajustar o scroll-padding-top para a altura da navbar + espaço extra */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Aumentado para acomodar melhor */
}

/* Ajuste específico para mobile */
@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 120px; /* Mais espaço no mobile */
    }
    
    /* Corrigir posição das âncoras */
    .section-anchor {
        position: relative;
        top: -100px; /* Offset negativo para compensar */
        display: block;
        visibility: hidden;
    }
}

/* Melhorar o scroll suave */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
body {
    /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-4 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.5rem;
    line-height: 1.1;
}

.lead {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Espaçamento entre seções */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .py-6 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .display-4 {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .py-6 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .display-4 {
        font-size: 3.5rem;
    }

    .lead {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */
.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: #7a893a;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
}

.btn-outline-accent:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--dark-color);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark-color);
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    font-size: 0.8rem;
    position: relative;
    z-index: 1030;
}

.announcement-bar a {
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   NAVIGATION - MOBILE FRIENDLY
   ========================================================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1020;
}

.navbar-scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-toggler {
    padding: 0.25rem;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Botões na navbar otimizados para mobile */
@media (max-width: 767.98px) {
    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar .btn {
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   NAVBAR - MOBILE OTIMIZADA
   ========================================================================== */

/* Ajuste do botão de agendamento mobile */
@media (max-width: 991.98px) {
    .navbar .btn-accent {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    /* Espaçamento entre os botões no canto direito */
    .navbar .d-flex.d-lg-none {
        gap: 0.5rem;
    }

    /* Estilo dos botões dentro do menu mobile */
    .navbar-collapse .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }

    /* Separador dos botões no menu */
    .navbar-collapse .border-top {
        border-top-color: rgba(139, 154, 66, 0.2) !important;
    }

    /* Ajuste do toggler */
    .navbar-toggler {
        padding: 0.375rem;
    }
}

/* Ajustes específicos para mobile muito pequeno */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 35px;
    }

    .navbar .btn-accent {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }

    /* Reduzir espaçamento entre botões */
    .navbar .d-flex.d-lg-none {
        gap: 0.25rem;
    }
}

/* Para tablets (md) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar .btn-accent {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Efeito de hover nos botões do menu mobile */
.navbar-collapse .btn:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Garantir que o menu mobile tenha boa largura */
.navbar-collapse {
    padding: 1rem 0;
}

/* Ajuste dos itens do menu */
.navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
}

/* Responsividade do menu dropdown */
.navbar-collapse.show {
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

/* Animações suaves */
.navbar-collapse.collapsing,
.navbar-collapse.show {
    transition: all 0.3s ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }
}

/* Micro-benefícios */
.micro-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* Calculadora no Hero */
.hero-calculator {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.calculator-header {
    background: linear-gradient(135deg, var(--accent-color), #7a893a);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.calculator-body {
    padding: 2rem;
}

.price-preview {
    background: var(--accent-light);
    border-radius: 10px;
    padding: 1.25rem;
}

.price-display {
    display: flex;
    align-items: baseline;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.fs-7 {
    font-size: 0.875rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-cta {
    margin-top: auto;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.step-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(139, 154, 66, 0.1);
    line-height: 1;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--accent-color);
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-light);
}

/* ==========================================================================
   DIFFERENTIAL SECTION
   ========================================================================== */
.differential-card {
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.diff-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 1.75rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.rating {
    color: #FFC107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.section-cta {
    position: relative;
    overflow: hidden;
}

.section-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), #7a893a);
    z-index: 1;
}

.section-cta>.container {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .calculator-card {
        padding: 3rem;
    }
}

/* Seletor de Serviço */
.service-selector {
    margin-bottom: 2rem;
}

.service-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: poPoppins;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-option:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-light);
}

.service-option.active {
    border-color: var(--accent-color);
    background-color: var(--accent-light);
}

.service-option i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-option span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Formulário de Cálculo */
.calculator-form {
    transition: opacity 0.3s ease;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 154, 66, 0.25);
}

/* Resultado do Cálculo */
.result-card {
    background: var(--accent-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.result-header {
    background: rgba(139, 154, 66, 0.1);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.result-body {
    padding: 1.5rem;
}

.price-breakdown {
    padding-right: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.final-price {
    text-align: center;
}

.final-price .price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.final-price .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--dark-color) !important;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info i {
    width: 20px;
    color: var(--accent-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.payment-badges .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* ==========================================================================
   FOOTER ENHANCEMENTS
   ========================================================================== */

.footer-copyright {
    line-height: 1.5;
}

.footer-copyright a {
    color: var(--accent-color) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    color: #7a893a !important;
    text-decoration: underline !important;
}

/* Adicionar efeito de brilho no link MazaExpert */
.footer-copyright a {
    position: relative;
    display: inline-block;
}

.footer-copyright a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-copyright a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Estilo para o texto de desenvolvimento */
.footer-copyright .small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Badges de pagamento */
.payment-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-badges .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-copyright {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .payment-badges {
        justify-content: center;
    }

    .footer-copyright .small {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 767.98px) {

    /* Ajustes gerais */
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    /* Hero section mobile */
    .hero-calculator {
        margin: 2rem 0;
    }

    /* Micro-benefits em coluna */
    .micro-benefits {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Process steps em coluna */
    .process-step {
        margin-bottom: 2rem;
    }

    /* Service cards */
    .service-card {
        margin-bottom: 1.5rem;
    }

    /* Calculator form mobile */
    .calculator-card {
        padding: 1.5rem;
    }

    .service-option {
        margin-bottom: 1rem;
    }

    /* Result display mobile */
    .final-price .price-amount {
        font-size: 2rem;
    }

    /* Footer mobile */
    .footer .col-md-4,
    .footer .col-md-3 {
        margin-bottom: 2rem;
    }
}

/* Touch-friendly button sizes */
@media (max-width: 767.98px) {

    .btn-lg,
    .btn-xl {
        min-height: 48px;
        /* Tamanho mínimo para toque */
        padding: 0.75rem 1.5rem;
    }

    .form-control,
    .form-select {
        min-height: 48px;
        /* Tamanho mínimo para toque */
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-cta .btn {
        font-size: 1rem;
    }

    .service-option {
        padding: 1rem 0.5rem;
    }

    .service-option i {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ACESSIBILIDADE
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus states para acessibilidade */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-accent {
        border: 2px solid currentColor;
    }
}

/* ==========================================================================
   HERO CAROUSEL SECTION
   ========================================================================== */
.hero-carousel {
    position: relative;
    height: 10vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: auto;
        min-height: 600px;
        max-height: none;
    }
}

/* Carousel Base */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: auto;
        min-height: 950px;
    }
}

/* Background dos Slides */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Conteúdo dos Slides */
.slide-content {
    padding-top: 10vh;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .slide-content {
        padding-top: 5vh;
        text-align: center;
    }
}

/* Badge no Slide */
.slide-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Títulos */
.slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content .lead {
        font-size: 1rem;
    }
}

/* Micro-benefícios */
.micro-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.benefit-item i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .micro-benefits {
        justify-content: center;
    }
}

/* CTA no Hero */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Calculadora no Slide */
.slide-calculator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-top: 2rem;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.calculator-header {
    background: rgba(139, 154, 66, 0.2);
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-header h5 {
    color: white;
    margin-bottom: 0.25rem;
}

.calculator-body {
    padding: 1.5rem;
}

.slide-calculator .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.price-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-display {
    display: flex;
    align-items: baseline;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

/* Trust Features */
.trust-features {
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Price Examples */
.price-examples {
    margin: 2rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-header {
    background: rgba(139, 154, 66, 0.2);
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.price-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.price-header h5 {
    color: white;
    margin: 0;
}

.price-body {
    padding: 1.5rem;
    text-align: center;
}

.price-body .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.price-features li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.price-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 1rem;
    }
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: 2rem;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scroll-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.scroll-down:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(5px);
}

.scroll-down i {
    font-size: 1.5rem;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .slide-calculator {
        display: none;
    }

    .trust-features .col-md-4 {
        margin-bottom: 1rem;
    }

    .price-examples .col-md-6 {
        margin-bottom: 1rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 576px) {
    .slide-content {
        padding-top: 3vh;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .feature-item {
        padding: 1rem 0.75rem;
    }

    .feature-item i {
        font-size: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Otimizações para performance */
.carousel-item {
    will-change: opacity;
}

.slide-background {
    will-change: transform;
}

/* Acessibilidade */
.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
    .slide-background {
        background-image: linear-gradient(rgba(48, 47, 46, 0.95), rgba(48, 47, 46, 0.95)), var(--bg-image) !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid white;
    }
}

/* ==========================================================================
   ANIMAÇÕES PARA O CAROUSEL
   ========================================================================== */

/* Animação de entrada para conteúdo dos slides */
.slide-content[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-content[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-content[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-content[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-content[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-content[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito parallax sutil para background */
@media (min-width: 768px) {
    .slide-background {
        transform: translateZ(0);
        will-change: transform;
    }

    .carousel-item.active .slide-background {
        animation: parallaxEffect 20s linear infinite;
    }

    @keyframes parallaxEffect {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }
}

/* Efeito de texto brilhante */
.text-accent {
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.carousel-item.active .text-accent::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Efeito de gradiente animado para badges */
.slide-badge {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slide-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.carousel-item.active .slide-badge:hover::before {
    left: 100%;
}

/* Progress bar para transição entre slides */
.carousel {
    position: relative;
}

.carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent-color);
    z-index: 10;
    animation: progressBar 6s linear infinite;
}

@keyframes progressBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.carousel.paused::after {
    animation-play-state: paused;
}

/* Efeito de vidro para elementos no carousel */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Loading state para o carousel */
.carousel-loading {
    position: relative;
}

.carousel-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: loadingShimmer 1.5s infinite;
    z-index: 1;
}

@keyframes loadingShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.section-about {
    position: relative;
    overflow: hidden;
}

/* Visual da seção */
.about-visual {
    position: relative;
}

.main-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.main-image:hover {
    transform: translateY(-5px);
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

@media (max-width: 768px) {
    .stats-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 2rem;
    }
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 140px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Conteúdo */
.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Valores da Empresa */
.company-values {
    margin: 2rem 0;
}

.value-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.value-desc {
    line-height: 1.5;
}

/* Diferenciais */
.differentiators {
    background: var(--accent-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.differentiators h5 {
    font-weight: 700;
    color: var(--dark-color);
}

.diff-check {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.diff-check i {
    flex-shrink: 0;
}

.diff-check span {
    font-weight: 500;
    color: var(--dark-color);
}

/* CTA da seção */
.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-cta {
        justify-content: center;
    }
}

/* Métricas da Empresa */
.company-metrics {
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.metric-card {
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.metric-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 1.75rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================================================
   PROCESS SELECTION SECTION
   ========================================================================== */

.section-process-selection {
    position: relative;
}

.section-process-selection .process-step {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.section-process-selection .process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.section-process-selection .step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(139, 154, 66, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.section-process-selection .step-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--accent-color);
    font-size: 1.75rem;
}

.section-process-selection .step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-process-selection .step-desc {
    font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE ABOUT SECTION
   ========================================================================== */

@media (max-width: 992px) {
    .about-content {
        padding-left: 0 !important;
        margin-top: 3rem;
    }

    .stats-overlay {
        right: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .section-about .col-lg-6 {
        text-align: center;
    }

    .value-item {
        text-align: left;
    }

    .differentiators .row {
        justify-content: center;
        font-family: 'Poppins', sans-serif !important;
    }

    .company-metrics .col-md-3 {
        margin-bottom: 1.5rem;
    }

    .metric-card {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   ANIMAÇÕES PARA ABOUT SECTION
   ========================================================================== */

/* Animação de entrada suave */
.about-visual {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.about-content {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efeito de hover para cards */
.metric-card,
.process-step,
.value-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradiente animado para números */
.stat-number,
.metric-number {
    position: relative;
    background: linear-gradient(135deg, var(--accent-color), #7a893a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Efeito de destaque para valores */
.value-icon {
    position: relative;
    overflow: hidden;
}

.value-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.value-item:hover .value-icon::after {
    transform: translateX(100%);
}

/* ==========================================================================
   HERO CAROUSEL - MOBILE FIRST APPROACH
   ========================================================================== */

.hero-carousel {
    position: relative;
    min-height: 100vh;
    max-height: none;
    overflow: hidden;
}

/* Altura dinâmica para mobile */
@media (max-height: 700px) {
    .hero-carousel {
        min-height: 40px;
    }
}

/* Background responsivo */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--mobile-bg);
}

@media (min-width: 768px) {
    .slide-background {
        background-image: var(--desktop-bg);
    }
}

/* Container e alinhamento */
.min-vh-80 {
    min-height: 80vh;
}

@media (max-height: 600px) {
    .min-vh-80 {
        min-height: 90vh;
    }
}

/* Conteúdo do Slide - Mobile First */
.slide-content {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .slide-content {
        padding: 3rem 0;
    }
}

/* Badge responsivo */
.slide-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 576px) {
    .slide-badge {
        font-size: 0.875rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Títulos Responsivos */
.slide-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 576px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .slide-content h1 {
        font-size: 3rem;
    }
}

/* Texto lead responsivo */
.slide-content .lead {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .slide-content .lead {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .slide-content .lead {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

/* Micro-benefícios mobile */
.micro-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .micro-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.benefit-item i {
    font-size: 1rem;
    min-width: 24px;
}

/* CTA Mobile */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Botões mobile friendly */
.btn-mobile {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .btn-mobile {
        min-height: auto;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .btn-mobile.w-100.w-md-auto {
        width: auto !important;
    }
}

/* Calculadora - apenas desktop */
.slide-calculator {
    display: none;
}

@media (min-width: 992px) {
    .slide-calculator {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--border-radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        overflow: hidden;
        margin-top: 2rem;
        animation: slideInRight 0.8s ease-out;
    }
}

/* Trust Features mobile */
.trust-features {
    margin: 1.5rem 0;
}

.feature-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.8rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .feature-item {
        padding: 1.5rem;
        min-height: 160px;
    }

    .feature-item i {
        font-size: 2.5rem;
    }

    .feature-item h5 {
        font-size: 1.1rem;
    }
}

/* Price Cards mobile */
.price-examples {
    margin: 1.5rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    height: 100%;
    margin-bottom: 1rem;
}

.price-header {
    background: rgba(139, 154, 66, 0.2);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.price-header h5 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.price-body {
    padding: 1.25rem;
    text-align: center;
}

.price-body .price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.price-features li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.25rem;
}

.price-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (min-width: 768px) {
    .price-body .price-amount {
        font-size: 2.5rem;
    }

    .price-header i {
        font-size: 2rem;
    }
}

/* Carousel Controls - Mobile */
.carousel-indicators {
    margin-bottom: 1rem;
    bottom: 0;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 3px;
}

.carousel-indicators button.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
}

/* Controles Touch para Mobile */
.carousel-touch-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
}

.carousel-touch-prev,
.carousel-touch-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.carousel-touch-prev:hover,
.carousel-touch-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Mobile Bottom CTA */
.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(48, 47, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-bottom-cta .btn {
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 154, 66, 0.3);
}

/* Scroll Indicator - apenas desktop */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

/* Performance para mobile */
.carousel-item {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Otimizações para telas pequenas */
@media (max-width: 375px) {
    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content .lead {
        font-size: 0.95rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .btn-mobile {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

/* Landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-carousel {
        min-height: 500px;
    }

    .min-vh-80 {
        min-height: 70vh;
    }

    .slide-content {
        padding: 1rem 0;
    }

    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .micro-benefits {
        margin-bottom: 1rem;
    }

    .mobile-bottom-cta {
        display: none;
    }
}

/* Ajustes para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .price-card {
        margin-bottom: 1.5rem;
    }
}

/* Prevenir zoom em inputs no iOS */
@media (max-width: 768px) {

    .slide-calculator input,
    .slide-calculator select {
        font-size: 16px !important;
    }
}

/* Smooth transitions */
.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item:not(.active) {
    opacity: 0;
    display: block;
}

/* Loading state */
.carousel-item {
    will-change: transform, opacity;
}

/* Acessibilidade */
.carousel-touch-prev:focus,
.carousel-touch-next:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .slide-background {
        background: var(--dark-color) !important;
    }

    .feature-item,
    .price-card {
        border: 2px solid white;
    }
}

/* FAQ Section Styles */
.section-faq {
    background-color: #f8f9fa;
}

.accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background-color: white;
    color: #302F2E;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #F0F4E6;
    color: #302F2E;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 154, 66, 0.25);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B9A42'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B9A42'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-top: 1px solid rgba(139, 154, 66, 0.1);
}

.accordion-body ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.accordion-body strong {
    color: #302F2E;
}

/* Alert custom styles */
.alert-light {
    background-color: #F8F9FA;
    border: 1px solid #E0E0E0;
    color: #666666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    .accordion-button i {
        margin-right: 0.75rem;
    }
}

/* ==========================================================================
   NAVBAR - FECHAMENTO AUTOMÁTICO MOBILE
   ========================================================================== */

/* Transição suave para o fechamento */
.navbar-collapse {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Melhorar área de clique nos links mobile */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.875rem 1rem !important;
        margin: 0.125rem 0;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        background-color: rgba(139, 154, 66, 0.08);
        padding-left: 1.25rem !important;
    }

    /* Indicador visual de clique */
    .navbar-nav .nav-link:active {
        transform: translateY(1px);
        background-color: rgba(139, 154, 66, 0.15);
    }

    /* Botões dentro do menu */
    .navbar-collapse .btn {
        transition: all 0.2s ease;
    }

    .navbar-collapse .btn:active {
        transform: translateY(2px);
    }
}

/* Adicionar delay para scroll após fechar menu */
@media (max-width: 991.98px) {
    html {
        scroll-behavior: smooth;
    }

    /* Pequeno delay para permitir fechamento do menu antes do scroll */
    a[href^="#"] {
        transition: none;
    }
}

/* Ajuste para links âncora */
.navbar-nav .nav-link[href^="#"] {
    cursor: pointer;
}

/* Estado ativo do link */
.navbar-nav .nav-item.active .nav-link {
    color: var(--accent-color) !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-item.active .nav-link:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 1px;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item.active .nav-link:after {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 6px;
    }
}

/* Garantir que as seções tenham padding-top suficiente */
#sobre,
#servicos,
#como-funciona,
#faq,
#diferencial,
#avaliacoes,
#calcular,
#faq {
    scroll-margin-top: 100px; /* Compatível com navegadores modernos */
}

@media (max-width: 991.98px) {
    #sobre,
    #servicos,
    #como-funciona,
    #faq,
    #diferencial,
    #avaliacoes,
    #calcular,
    #faq {
        scroll-margin-top: 120px;
    }
}

/* Ajustar padding das seções se necessário */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Adicionar um pouco mais de espaço no topo para mobile */
@media (max-width: 768px) {
    .py-6 {
        padding-top: 5rem;
    }
}
/* ==========================================================================
   SCROLL FIX - MOBILE MENU
   ========================================================================== */

/* Ajustar scroll behavior para mobile */
@media (max-width: 991.98px) {
    /* Adicionar espaço no topo das seções */
    section[id] {
        scroll-margin-top: 100px;
        position: relative;
    }
    
    /* Criar pseudo-elemento para offset */
    section[id]::before {
        content: '';
        display: block;
        height: 100px;
        margin-top: -100px;
        visibility: hidden;
        pointer-events: none;
    }
    
    /* Ajustar quando menu está aberto */
    .navbar-collapse.show ~ * section[id] {
        scroll-margin-top: 150px;
    }
    
    .navbar-collapse.show ~ * section[id]::before {
        height: 150px;
        margin-top: -150px;
    }
}

/* Override do comportamento padrão do Bootstrap */
.navbar-collapse {
    transition: height 0.35s ease !important;
}

/* Garantir que a navbar mantenha altura consistente */
.navbar {
    min-height: 70px;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* ==========================================================================
   HERO CAROUSEL - ANIMAÇÕES E EFEITOS como funciona refell
   ========================================================================== */

   /* Container dos passos */
.process-steps-container {
    display: flex;
    flex-wrap: wrap;
}

/* Em desktop: layout normal */
@media (min-width: 768px) {
    .process-steps-container {
        flex-wrap: wrap;
        overflow-x: visible;
    }
    
    .process-step-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }
    
    .process-step {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
}

/* Em mobile: scroll horizontal */
@media (max-width: 767.98px) {
    .process-steps-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
        padding-bottom: 1rem; /* Espaço para indicadores de scroll */
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .process-step-col {
        flex: 0 0 85%; /* Cada card ocupa 85% da tela */
        max-width: 85%;
        scroll-snap-align: start;
        margin-right: 1.5rem; /* Espaço entre os cards */
    }
    
    .process-step-col:last-child {
        margin-right: 0;
    }
    
    .process-step {
        background: white;
        border-radius: 12px;
        padding: 2rem 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        height: 100%;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }
    
    .process-step:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        transform: translateY(-5px);
    }
    
    .step-icon-wrapper {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
    }
    
    .step-number {
        position: absolute;
        top: -10px;
        left: -10px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #485819 0%, #718217 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.125rem;
        box-shadow: 0 4px 10px rgba(72, 88, 25, 0.3);
    }
    
    .step-icon {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: #485819;
        border: 3px solid white;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .step-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
    }
    
    .step-desc {
        font-size: 0.9375rem;
        line-height: 1.5;
        flex-grow: 1;
    }
    
    /* Esconder scrollbar padrão */
    .process-steps-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .process-steps-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .process-steps-container::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #485819 0%, #718217 100%);
        border-radius: 10px;
    }
    
    /* Firefox */
    .process-steps-container {
        scrollbar-width: thin;
        scrollbar-color: #485819 #f1f1f1;
    }
}

/* Para telas muito pequenas (smartphones pequenos) */
@media (max-width: 375px) {
    .process-step-col {
        flex: 0 0 90%;
        max-width: 90%;
    }
    
    .process-step {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
}

/* Indicadores de scroll (opcional) */
.process-steps-indicators {
    display: none;
}

@media (max-width: 767.98px) {
    .process-steps-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .step-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .step-indicator.active {
        background: #485819;
        width: 24px;
        border-radius: 12px;
    }
}


/* Estilos para o reset do formulário */
.service-option {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-option.active {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-option:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Animação para reset do formulário */
.calculator-form.resetting {
    animation: formReset 0.5s ease;
}

@keyframes formReset {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicador visual de serviço ativo */
.service-indicator {
    position: relative;
}

.service-indicator::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #718217;
    transition: width 0.3s ease;
}

.service-option.active .service-indicator::after {
    width: 80%;
}

/* Estilo para campos resetados */
input:disabled, select:disabled, textarea:disabled {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

input[data-reset="true"] {
    animation: fieldReset 0.5s ease;
}

@keyframes fieldReset {
    0% { background-color: #f8f9fa; }
    50% { background-color: #e3f2fd; }
    100% { background-color: #f8f9fa; }
}