/* Estilos Gerais */
:root {
    --primary-color: #C0FF00; /* Verde Degrau Digital */
    --secondary-color: #14120F; /* Preto Degrau Digital */
    --accent-color: #8CBE00; /* Verde mais escuro para destaques */
    --green-neon: #C0FF00; /* Verde neon brilhante */
    --text-color: #14120F; /* Preto para textos */
    --light-text: #FFFFFF; /* Texto claro */
    --light-bg: #F8F9FA; /* Fundo claro */
    --dark-bg: #14120F; /* Fundo escuro preto para footer */
    --border-color: #E8E9EC; /* Cor de borda */
    --shadow: 0 4px 12px rgba(192, 255, 0, 0.15); /* Sombra com o tom da cor primária */
    --transition: all 0.3s ease;
    --webkit-tap-highlight-color: transparent;
}

/* Normalização para todos os navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Correções para consistência entre navegadores */
html {
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    color: var(--text-color);
    line-height: 1.6;
    animation: fadeIn 0.6s ease-in-out;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: -webkit-fill-available;
}

/* Fix para altura em dispositivos móveis */
@supports (-webkit-touch-callout: none) {
    html {
        height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
}

/* Normalização para diferentes navegadores */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

/* Ajustes para inputs em todos os navegadores */
button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
}

button, select {
    text-transform: none;
}

/* Foco consistente em todos os navegadores */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias para imagens */
img {
    max-width: 100%;
    height: auto;
    border: 0;
    -ms-interpolation-mode: bicubic;
    display: inline-block;
    vertical-align: middle;
}

/* Fix para Firefox */
@-moz-document url-prefix() {
    select {
        text-indent: 0.01px;
        text-overflow: '';
        padding-right: 25px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 16px;
    }
    
    .hero-section,
    .benefits-section {
        background-attachment: scroll !important;
    }
}

/* Fix para Edge e IE */
@supports (-ms-ime-align:auto) {
    .hero-section, 
    .about-section, 
    .benefits-section {
        background-attachment: scroll !important;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 30px;
    }
}

/* Fix para Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 30px;
    }
    
    input[type="date"]::-webkit-calendar-picker-indicator {
        background: transparent;
        bottom: 0;
        color: transparent;
        cursor: pointer;
        height: auto;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
        opacity: 0.001;
    }
}

/* Safari iOS Específico */
@supports (-webkit-touch-callout: none) {
    /* Fix para vh em iOS */
    :root {
        --vh: 1vh;
    }
    
    .hero-section {
        min-height: calc(var(--vh, 1vh) * 100);
        background-attachment: scroll !important;
    }
    
    /* Corrigir problemas de posicionamento fixo */
    header {
        position: -webkit-sticky;
        position: sticky;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        z-index: 100;
    }
    
    /* Corrigir renderização de fontes */
    body, h1, h2, h3, h4, h5, h6, p {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Melhorar a renderização de texto */
    .hero-section h1 {
        letter-spacing: -0.02em;
    }
    
    /* Ajuste para formulários */
    .form-group input, 
    .form-group select {
        font-size: 16px; /* Evitar zoom indesejado */
        padding: 12px 15px;
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Fix para overflow hidden falhar em iOS */
    .menu, .submenu, .hero-section, .benefits-section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix para inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Fix para botões */
    button, 
    .cta-button, 
    .submit-button {
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        -webkit-touch-callout: none;
        touch-action: manipulation;
    }
    
    /* Fix para fixed position */
    .menu.active {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix para problemas de zoom */
    .form-group input, 
    .form-group select, 
    .submit-button {
        font-size: 16px;
    }
}

/* Fix para dispositivos Samsung */
@supports (-webkit-appearance:none) and (not (-ms-ime-align:auto)) and (not (-moz-appearance:none)) {
    .form-group select {
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 30px;
    }
}

/* Corrigir problema com flexbox em alguns navegadores */
@supports not (gap: 20px) {
    .vantagens-container > *,
    .benefits-grid > *,
    .products-grid > *,
    .hero-badges > * {
        margin: 10px;
    }
}

/* Fix para Webkit scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 3px solid rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Script para calcular altura correta em iOS */
@media (max-width: 768px) {
    .hero-section::before {
        content: "";
        display: block;
        width: 100%;
        clear: both;
    }
}

/* Melhorias específicas para accessibilidade e compatibilidade */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Suporte a impressão */
@media print {
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    header, footer, .benefits-section, .cta-button, .final-cta {
        display: none !important;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
}

/* Estilos específicos para o restante do conteúdo */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Botões */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(192, 255, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Botão mais arredondado */
.btn-rounded {
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(192, 255, 0, 0.35);
    letter-spacing: 0.5px;
    transform: translateY(0);
}

.btn-rounded:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(192, 255, 0, 0.5);
}

.cta-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
    border-radius: inherit;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(192, 255, 0, 0.4);
    color: var(--secondary-color);
}

.cta-button:hover::after {
    height: 100%;
}

.outlined-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 50px;
    text-align: center;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(192, 255, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.outlined-button:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(192, 255, 0, 0.4);
}

.product-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.product-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.product-link:hover::after {
    width: 100%;
}

/* Header e Menu */
header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 50px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu a {
    font-weight: 600;
    color: var(--light-text);
    position: relative;
    padding: 5px 0;
}

.menu a:hover {
    color: var(--primary-color);
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1;
    border-radius: 10px;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin-bottom: 10px;
}

.submenu a {
    display: block;
    padding: 8px 0;
    font-weight: 500;
    color: var(--light-text);
}

.submenu a:hover {
    color: var(--primary-color);
}

.menu-mobile-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-mobile-icon span {
    width: 30px;
    height: 3px;
    background-color: var(--light-text);
    transition: var(--transition);
}

/* Hero Section - Versão melhorada para responsividade */
.hero-section {
    position: relative;
    min-height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background-color: var(--secondary-color);
    background-image: linear-gradient(to right, 
        rgba(20, 18, 15, 0.95) 0%,
        rgba(20, 18, 15, 0.85) 100%),
        url('img/CAPA.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--light-text);
    font-weight: 700;
}

.hero-content h1 .highlight-text {
    color: var(--primary-color);
    display: block;
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--light-text);
    max-width: 600px;
}

.hero-image {
    display: none;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 50px;
    }

    .hero-content h1,
    .hero-content h1 .highlight-text {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-section .container {
        padding: 0 20px;
    }

    .hero-content h1,
    .hero-content h1 .highlight-text {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 30px;
    }

    .hero-content h1,
    .hero-content h1 .highlight-text {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
    clip-path: none;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(255, 255, 255, 0.05);
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: block;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.hero-section h1 .green-text {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.hero-section h1 span.employee-badges {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(192, 255, 0, 0.3);
    display: inline-block;
    margin-top: 10px;
    white-space: nowrap;
    word-break: keep-all;
    -webkit-hyphens: none;
    hyphens: none;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h1 span.green-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h1 span.green-text {
        font-size: 2rem;
    }
}

.hero-section h1 span.employee-badges::after {
    display: none;
}

.hero-section h1 span.employee-badges::after {
    display: none;
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.badge {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(192, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(192, 255, 0, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0 100px;
    position: relative;
    margin-top: -30px;
    padding-top: 80px;
    background: linear-gradient(180deg, white, #f9f9f9);
    z-index: 4;
    transition: background-color 0.5s ease-in-out;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(192, 255, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(192, 255, 0, 0.05) 50%, rgba(192, 255, 0, 0.05) 75%, transparent 75%, transparent);
    background-size: 60px 60px;
    opacity: 0.05;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--light-bg) 0%, rgba(248, 249, 250, 0) 100%);
    clip-path: none;
    z-index: 3;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    position: relative;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: left;
    line-height: 1.3;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(192, 255, 0, 0.5);
}

.about-content .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.about-content p {
    max-width: 800px;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: left;
}

.about-content .outlined-button {
    margin-top: 1rem;
}

.about-image {
    flex: 1;
    text-align: right;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(192, 255, 0, 0.15);
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(192, 255, 0, 0.1);
    z-index: -1;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.about-image .img-shadow {
    position: absolute;
    width: 90%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -15px;
    right: 5%;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.6;
    transition: all 0.5s ease;
    z-index: 0;
}

.about-image:hover .img-shadow {
    opacity: 0.8;
    filter: blur(7px);
}

.about-decorations {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: -1;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.12;
}

.circle-sm {
    width: 35px;
    height: 35px;
    bottom: -20px;
    left: 30px;
    animation: float 6s ease-in-out infinite;
}

.circle-md {
    width: 60px;
    height: 60px;
    bottom: 10px;
    left: 80px;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
    }
    
    .about-content {
        text-align: center;
        order: 2;
    }
    
    .about-content h2 {
        text-align: center;
        font-size: 2.3rem;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content p {
        text-align: center;
    }
    
    .about-image {
        margin-bottom: 40px;
        order: 1;
        text-align: center;
    }
    
    .about-image img {
        max-width: 80%;
    }
    
    .about-decorations {
        bottom: auto;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .circle-sm {
        left: -60px;
    }
    
    .circle-md {
        left: 60px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0 120px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
    
    .about-image img {
        max-width: 100%;
    }
}

/* Estatísticas */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: var(--primary-color);
    overflow: hidden;
}

.stats-section .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 40px;
    background: rgba(20, 18, 15, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h2 {
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.stat-item p {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.stat-item span {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    display: block;
    opacity: 0.9;
    position: relative;
}

@media (max-width: 992px) {
    .stats-section .container {
        padding: 0 30px;
    }
    
    .stat-item h2 {
        font-size: 3rem;
    }
    
    .stat-item p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        padding: 30px;
    }

    .stat-item h2 {
        font-size: 2.8rem;
    }

    .stat-item p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }

    .stat-item {
        padding: 25px;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1.1rem;
    }

    .stat-item span {
        font-size: 0.9rem;
    }
}

/* Chart Section */
.chart-section {
    background-color: white;
    padding: 80px 0 100px;
    position: relative;
    margin-top: -30px;
    padding-top: 80px;
    background: linear-gradient(180deg, white, white);
    z-index: 1;
}

.chart-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--light-bg) 0%, rgba(248, 249, 250, 0) 100%);
    clip-path: none;
    z-index: 3;
}

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

.chart-item {
    margin-bottom: 25px;
}

.chart-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.chart-bar {
    width: 100%;
    height: 40px;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: 600;
    border-radius: 8px;
}

/* Produtos */
.products-section {
    background-color: var(--light-bg);
    padding: 80px 0 100px;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
    clip-path: none;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
    clip-path: none;
}

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

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
    position: relative;
}

.product-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.product-card.featured::before {
    content: 'Destaque';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-bottom-left-radius: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 125, 202, 0.15);
}

.product-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.product-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-card p {
    margin-bottom: 1.5rem;
    color: #666;
    flex-grow: 1;
}

/* Diferenciais */
.benefits-section {
    background-color: var(--secondary-color);
    padding: 80px 0 120px;
    position: relative;
    margin-top: -30px;
    padding-top: 80px;
    background: linear-gradient(180deg, #1a1815, var(--secondary-color));
    z-index: 1;
    color: var(--light-text);
    overflow: hidden;
    transition: background-color 0.5s ease-in-out;
}

/* Elementos decorativos para a seção de diferenciais */
.benefits-section .decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.2;
}

.benefits-section .decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(100px);
    border-radius: 50%;
    top: 15%;
    left: -100px;
    animation: pulse-slow 15s ease-in-out infinite alternate;
}

.benefits-section .decoration-2 {
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    filter: blur(90px);
    border-radius: 50%;
    bottom: 10%;
    right: -80px;
    animation: pulse-slow 12s ease-in-out infinite alternate 2s;
}

@keyframes pulse-slow {
    0% {
        opacity: 0.1;
        transform: scale(0.9) translateY(0);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.1) translateY(-20px);
    }
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(20, 18, 15, 0.5) 25%, transparent 25%, transparent 50%, rgba(20, 18, 15, 0.5) 50%, rgba(20, 18, 15, 0.5) 75%, transparent 75%, transparent);
    background-size: 80px 80px;
    opacity: 0.1;
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, var(--light-bg) 0%, rgba(20, 18, 15, 0) 100%);
    clip-path: none;
    z-index: 3;
}

.benefits-section .section-header {
    position: relative;
    z-index: 2;
}

.benefits-section .section-header h2 {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.benefits-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(192, 255, 0, 0.7);
}

.benefits-section .subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    padding: 40px 30px;
    border-radius: 12px;
    background: rgba(25, 23, 20, 0.7);
    border: 1px solid rgba(192, 255, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(192, 255, 0, 0.3);
    background: rgba(25, 23, 20, 0.9);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    display: inline-block;
}

.benefit-card:hover i {
    transform: scale(1.2);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.benefit-card:hover p {
    color: white;
}

.benefits-cta {
    margin-top: 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.benefits-tagline {
    margin-top: 25px;
    font-style: italic;
    color: #aaa;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.benefits-tagline strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 992px) {
    .benefits-section .section-header h2 {
        font-size: 2.4rem;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .benefits-section .section-header h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-card i {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Simulação */
.simulation-section {
    background-color: white;
    padding: 80px 0 100px;
    position: relative;
    margin-top: -30px;
    padding-top: 80px;
    z-index: 1;
    color: var(--text-color);
    overflow: hidden;
}

.simulation-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.simulation-content {
    flex: 1.1;
}

.simulation-content h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.simulation-content p {
    color: #555;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.simulation-image {
    flex: 0.9;
    text-align: center;
    position: relative;
    max-width: 450px;
    z-index: 3;
    transition: all 0.3s ease;
}

.simulation-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.simulation-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-caption {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
    width: 80%;
    max-width: 320px;
    transition: all 0.3s ease;
}

.image-caption i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.simulation-image:hover .image-caption {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.simulation-form {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.simulation-form:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: var(--secondary-color);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #aaa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 255, 0, 0.15);
    background-color: white;
}

.form-group input:focus::placeholder,
.form-group select:focus::placeholder {
    color: #ccc;
}

/* Estilo para texto digitado */
.form-group input:not(:placeholder-shown) {
    background-color: white;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #d0ff20;
}

.pre-cadastro-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Media queries for the simulation section */
@media (max-width: 992px) {
    .simulation-section .container {
        flex-direction: column;
        gap: 40px;
        max-width: 650px;
    }
    
    .simulation-content {
        order: 2;
        width: 100%;
    }
    
    .simulation-image {
        order: 1;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .simulation-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .simulation-content p {
        text-align: center;
    }

    .pre-cadastro-badge {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: fit-content;
    }
    
    .simulation-form {
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .simulation-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .simulation-form {
        padding: 25px 20px;
    }
    
    .simulation-image img {
        max-width: 100%;
    }
    
    .simulation-content h2 {
        font-size: 2.2rem;
    }
    
    .simulation-content p {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .image-caption {
        width: 85%;
        font-size: 0.85rem;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .simulation-form {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .pre-cadastro-badge {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
}

/* FAQ */
.faq-section {
    background-color: white;
    padding: 80px 0 100px;
    position: relative;
}

.faq-section .container {
    max-width: 900px;
}

.faq-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faq-section h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question h3 {
    color: var(--accent-color);
}

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

/* Conteúdo da resposta - inicialmente oculto */
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: #f8f9fa;
    opacity: 0;
    visibility: hidden;
}

/* Conteúdo da resposta - quando visível */
.faq-item.active .faq-answer {
    padding: 20px 25px 25px;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    list-style-type: none;
    color: #555;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* CTA Final */
.final-cta {
    background-color: var(--secondary-color);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 70px 0 20px;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1815, var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-contact h3,
.footer-info h3,
.footer-social h3 {
    position: relative;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--light-text);
    padding-bottom: 10px;
}

.footer-contact h3::after,
.footer-info h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(192, 255, 0, 0.3);
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
}

.footer-contact ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-info ul li {
    margin-bottom: 15px;
}

.footer-info ul li a {
    color: #aaa;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-info ul li a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-info ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-info ul li a:hover::before {
    background-color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(192, 255, 0, 0.3);
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-disclaimer strong {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-contact h3,
    .footer-info h3,
    .footer-social h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-disclaimer {
        padding: 20px;
        font-size: 0.85rem;
    }
}

/* Vantagens do Consignado Trabalhador */
.vantagens-section {
    background-color: white;
    padding: 80px 0 100px;
    position: relative;
    z-index: 2;
}

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

.vantagens-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vantagens-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.vantagens-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}

.vantagens-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.vantagem-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vantagem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.vantagem-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.vantagem-card:hover::before {
    opacity: 0.1;
}

.vantagem-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(192, 255, 0, 0.3);
    transition: all 0.4s ease;
}

.vantagem-card:hover .vantagem-icon {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(192, 255, 0, 0.5);
}

.vantagem-icon i {
    color: var(--secondary-color);
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.vantagem-card:hover .vantagem-icon i {
    transform: rotateY(180deg);
}

.vantagem-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.vantagem-card:hover .vantagem-content h3 {
    color: var(--accent-color);
}

.vantagem-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .vantagens-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vantagens-section {
        padding: 60px 0 80px;
    }
    
    .vantagens-header h2 {
        font-size: 2.2rem;
    }
    
    .vantagens-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vantagem-card {
        padding: 25px;
    }
    
    .vantagem-icon {
        width: 50px;
        height: 50px;
    }
    
    .vantagem-icon i {
        font-size: 1.4rem;
    }
    
    .vantagem-content h3 {
        font-size: 1.3rem;
    }
    
    .vantagem-content p {
        font-size: 1rem;
    }
}

/* Transições entre seções */
.section-transition {
    position: relative;
}

.transition-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0; /* Alterado de 20px para 0px para remover a borda superior */
    background: none; /* Removido o gradiente verde */
    z-index: 5;
}

.transition-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0; /* Alterado de 20px para 0px para remover a borda inferior */
    background: none; /* Removido o gradiente verde */
    z-index: 5;
}

/* Remover também os gradientes nas transition classes específicas */
.dark-to-light::before,
.light-to-dark::before,
.light-to-dark::after,
.dark-to-light::after {
    background: none;
}

.shine-effect::before {
    background: none;
}

/* Remover bordas verdes */
.border-highlight::before,
.border-highlight::after {
    background: none !important;
    height: 0 !important;
    border: none !important;
}

/* Media queries para ajustes responsivos */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .vantagem-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.6rem !important;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1.05rem;
    }
    
    .btn-rounded {
        padding: 16px 35px;
    }
    
    /* Ajustes na seção de vantagens */
    .vantagens-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Otimizações para tablet */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-section p {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 15px;
    }

    /* Menu mobile ajustado para melhor visualização */
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 70px;
        z-index: 99;
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .menu.active {
        right: 0;
    }

    .menu-item {
        width: 100%;
    }

    .menu a {
        padding: 15px 25px;
    }

    .submenu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        border-radius: 0;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        display: block;
        padding: 0;
        margin: 0;
    }

    .menu-item.active .submenu {
        visibility: visible;
        max-height: 300px;
    }

    .menu-mobile-icon {
        display: flex;
    }

    .menu-mobile-icon.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-mobile-icon.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile-icon.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .vantagens-container {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        margin-bottom: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contact h3::after,
    .footer-info h3::after,
    .footer-social h3::after {
        width: 40px;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-info ul li a {
        font-size: 0.9rem;
    }

    .footer-info ul li a::before {
        width: 5px;
        height: 5px;
    }
    
    /* Garantir que não haja rolagem horizontal */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    /* Impedir que imagens causem overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Otimizações para smartphone */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding: 70px 0 90px;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    /* Ajustes no botão CTA */
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .btn-rounded {
        padding: 14px 30px;
    }
    
    /* Ajustes no formulário */
    .simulation-form {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Ajustes nas estatísticas */
    .stats-section .container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    /* Ajustes no FAQ */
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* Melhorias para impedir rolagem horizontal em todos os dispositivos */
@media (max-width: 480px) {
    .decoration, 
    .circle-decoration, 
    .benefits-section .decoration,
    .about-section::before,
    .about-section::after,
    .about-image::before,
    .about-image::after {
        display: none; /* Ocultar elementos decorativos que podem causar overflow */
    }
    
    .simulation-content h2 {
        font-size: 1.5rem;
    }

    .simulation-content p {
        font-size: 0.9rem;
    }

    .submit-button {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        padding: 15px;
    }
    
    .vantagem-card {
        margin: 0 auto 20px;
        max-width: 90%;
    }
    
    .vantagem-icon {
        height: 50px;
        width: 50px;
    }
    
    .vantagem-icon i {
        font-size: 1.5rem;
    }
    
    .vantagem-content h3 {
        font-size: 1rem;
    }
    
    .simulation-image {
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .image-caption {
        padding: 10px;
        font-size: 0.8rem;
    }
}

/* Correções específicas para telefones muito pequenos */
@media (max-width: 360px) {
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Ajustes na imagem de simulação */
    .simulation-image img {
        border-radius: 8px;
    }
    
    .simulation-form {
        padding: 15px 10px;
    }
}

/* Correções para elementos complexos como o menu mobile */
@media (max-width: 768px) {
    .menu-mobile-icon {
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
        z-index: 100;
    }
    
    .menu-mobile-icon span {
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--light-text);
        transition: all 0.3s ease;
        left: 0;
    }
    
    .menu-mobile-icon span:nth-child(1) {
        top: 0;
    }
    
    .menu-mobile-icon span:nth-child(2) {
        top: 10px;
    }
    
    .menu-mobile-icon span:nth-child(3) {
        top: 20px;
    }
}

/* Corrigir altura de seções em mobile para evitar espaços em branco */
@media (max-width: 576px) {
    section {
        min-height: auto;
    }
}

/* Media queries melhoradas para responsividade perfeita */
@media (max-width: 992px) {
    .hero-section {
        padding: 90px 0 100px;
        background-attachment: scroll; /* Melhor performance em tablets */
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
        max-width: 100%;
    }
    
    .hero-section p {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .cta-button {
        max-width: none;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 80px 0 90px;
    }
    
    .hero-section .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-section h1 {
        font-size: 2.4rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin: 0 auto;
        display: inline-block;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 70px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
        line-height: 1.4;
    }
    
    .hero-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Corrigir o botão CTA em dispositivos pequenos */
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: auto;
        max-width: none;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-section h1 span.employee-badges {
        font-size: 100%; /* Ajuste para evitar quebras de linha estranhas */
        padding: 0 2px;
    }
    
    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* Correções gerais para layout responsivo */
@media (max-width: 768px) {
    /* Melhorar o menu mobile */
    header {
        padding: 15px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .menu {
        background-color: var(--secondary-color); /* Voltar para a cor original */
        padding-top: 80px;
    }
    
    .menu a {
        color: var(--light-text);
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-item.active > a {
        color: var(--primary-color);
    }
    
    .submenu {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 0;
    }
    
    .submenu a {
        padding: 10px 20px 10px 35px;
        font-size: 0.95rem;
    }
    
    /* Ajuste para evitar vazamento de elementos */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        overflow-x: hidden;
    }
    
    /* Espaçamento consistente entre seções */
    section {
        padding: 60px 0;
    }
    
    /* Ajustes gerais de tipografia */
    h1, h2, h3, h4, h5, h6 {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Garantir que imagens não vazem */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Melhorar espaçamento e alinhamento de texto */
    p {
        max-width: 100%;
    }
}

/* Melhoria em elementos de formulário para móvel */
@media (max-width: 576px) {
    .form-group input,
    .form-group select,
    .submit-button {
        font-size: 16px; /* Evita zoom indesejado em iOS */
        padding: 12px 15px;
        height: auto;
    }
    
    /* Corrigir tamanho de tap target para acessibilidade */
    .cta-button, 
    .submit-button,
    .menu a,
    .social-icon {
        min-height: 44px; /* Tamanho mínimo recomendado para área de toque */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Corrigir altura de viewport em iOS */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 60vh; /* Usar vh com cuidado em iOS */
    }
    
    /* Safari iOS fix */
    @supports (-webkit-touch-callout: none) {
        .hero-section {
            min-height: 500px; /* Altura fixa mais segura para iOS */
        }
    }
}

/* Melhorias no layout de grade para dispositivos pequenos */
@media (max-width: 576px) {
    .vantagens-container,
    .benefits-grid,
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .vantagem-card,
    .benefit-card {
        margin-bottom: 20px;
        width: 100%;
    }
    
    /* Corrigir estatísticas em dispositivos pequenos */
    .stats-section .container {
        flex-direction: column;
    }
    
    .stat-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
}

/* Fix para background attachment em dispositivos móveis */
@media (max-width: 992px) {
    .hero-section,
    .about-section,
    .benefits-section,
    .simulation-section {
        background-attachment: scroll !important; /* Force scroll em vez de fixed para melhor performance */
    }
}

.hero-content {
    flex: 1;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

/* Melhorias específicas para elementos de formulário em dispositivos móveis */
@media (max-width: 768px) {
    .simulation-form {
        width: 100%;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select {
        appearance: none; /* Remover aparência padrão dos selects */
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 16px;
        padding-right: 35px;
    }
    
    /* Corrigir espaçamento para campos de formulário */
    .form-group label {
        margin-bottom: 8px;
        display: block;
        font-weight: 600;
    }
    
    /* Melhorar visualização do botão submit */
    .submit-button {
        height: auto;
        padding: 15px 20px;
        width: 100%;
    }
    
    /* Melhorar área de toque para links e botões */
    .cta-button {
        touch-action: manipulation;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
    }
}

/* Safari iOS Fix - Viewport Height */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        height: auto;
        min-height: 500px;
        background-attachment: scroll !important;
    }
    
    /* Fix para vh em iOS */
    :root {
        --vh: 1vh;
    }
    
    .hero-section {
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    /* Evitar comportamento estranho com position: fixed */
    .hero-section .container {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
}

/* Fix para background-attachment no Safari */
@supports (-webkit-touch-callout: none) {
    .hero-section,
    .about-section,
    .benefits-section,
    .simulation-section,
    .final-cta {
        background-attachment: scroll !important;
    }
}

/* Fix para flexbox no Safari iOS */
@supports (-webkit-touch-callout: none) {
    .hero-section .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    
    .menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }
    
    /* Ajustes para garantir que botões e elementos de formulário tenham tamanho adequado */
    .cta-button, 
    .submit-button,
    .form-group input,
    .form-group select {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
        font-size: 16px; /* Previne zoom indesejado em iOS */
    }
    
    /* Garantir que inputs e selects tenham o mesmo visual */
    .form-group input,
    .form-group select {
        line-height: normal;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

/* Correção para fontes no Safari */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    h1, h2, h3, h4, h5, h6 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .hero-section h1 {
        line-height: 1.4; /* Melhorar o espaçamento de linhas no Safari */
        text-rendering: optimizeLegibility;
    }
}

/* Fix para hero-section em telas pequenas no Safari */
@media screen and (max-width: 767px) {
    @supports (-webkit-touch-callout: none) {
        .hero-section {
            padding: 80px 0 90px;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 2.2rem !important;
            margin-bottom: 1.2rem;
        }
        
        .hero-section h1 span.employee-badges {
            font-size: 100%;
            display: inline;
        }
        
        .hero-section p {
            font-size: 1.05rem;
            margin: 0 auto 1.5rem;
        }
        
        .hero-cta {
            display: flex;
            justify-content: center;
        }
        
        .hero-content {
            width: 100%;
        }
        
        /* Garantir que não haja sobreposição */
        .hero-section .container {
            flex-direction: column;
            gap: 25px;
        }
    }
}

/* Ajustes adicionais específicos para iOS */
@supports (-webkit-touch-callout: none) {
    /* Corrigir problemas de posicionamento fixo */
    header {
        position: -webkit-sticky;
        position: sticky;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Corrigir renderização de fontes em textos grandes */
    .hero-section h1, 
    .final-cta h2 {
        letter-spacing: -0.02em; /* Ligeiramente mais apertado para fontes grandes no iOS */
    }
    
    /* Melhorar a aparência de botões */
    .cta-button, 
    .submit-button {
        -webkit-tap-highlight-color: rgba(0,0,0,0); /* Remover highlight de toque */
        -webkit-touch-callout: none; /* Desabilitar menu de contexto no toque */
        touch-action: manipulation; /* Otimizar para toque */
    }
    
    /* Ajustes específicos para campos de formulário */
    .form-group input, 
    .form-group select {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-appearance: none; /* Remover aparência nativa */
        appearance: none;
    }
    
    /* Resolver problema de overflow horizontal */
    body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Melhorar aparência de elementos com box-shadow */
    .vantagem-card,
    .benefit-card,
    .simulation-form,
    .faq-item,
    .cta-button {
        -webkit-transform: translateZ(0); /* Forçar aceleração de hardware */
        transform: translateZ(0);
        will-change: transform; /* Otimização para animações */
    }
    
    /* Correção para eventos de hover */
    .menu a:hover::after, 
    .vantagem-card:hover, 
    .benefit-card:hover {
        transition: all 0.3s ease; /* Garantir que as transições são suaves */
    }
    
    /* Resolver problema de fonte quebrada */
    @media (max-width: 320px) {
        .hero-section h1 {
            font-size: 1.7rem !important;
            letter-spacing: -0.01em;
            word-break: break-word;
        }
        
        .hero-section p {
            font-size: 0.9rem;
        }
    }
    
    /* Corrigir problema de inputs em formulários com teclado */
    .simulation-form .form-group input:focus,
    .simulation-form .form-group select:focus {
        position: relative;
        z-index: 1;
    }
    
    /* Evitar problemas com inputs "grudados" */
    .form-group input, .form-group select {
        margin: 0;
        padding: 12px 15px;
    }
    
    /* Garantir que botões de submissão tenham altura adequada */
    .submit-button {
        padding: 16px;
        line-height: 1.2;
    }
}

/* Correção para botões em telas muito pequenas (iPhone SE e similares) */
@media (max-width: 360px) {
    @supports (-webkit-touch-callout: none) {
        .cta-button {
            padding: 12px 18px;
            font-size: 0.95rem;
            width: auto;
            max-width: 100%;
            white-space: normal;
        }
        
        .hero-cta {
            text-align: center;
            display: flex;
            justify-content: center;
        }
    }
}

/* Estilos específicos para dispositivos iOS e Safari */
.ios-device header {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.ios-device .form-group input,
.ios-device .form-group select,
.ios-device .form-group textarea {
    font-size: 16px !important;
    transform: translateZ(0);
}

.ios-device .hero-section {
    background-attachment: scroll !important;
}

/* Estilos para quando um input está em foco - evita problemas com teclado virtual */
.input-focused .hero-section,
.input-focused .final-cta {
    position: relative;
}

/* Estilos para dispositivos touch */
.touch-device .menu-item > a {
    pointer-events: auto;
}

.touch-device .menu-item.active .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
}

/* Fallback para navegadores sem suporte a animações */
.no-animations * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Estilo melhorado para o estado ativo do menu mobile */
.menu-open {
    overflow: hidden;
}

.menu-open .menu-mobile-icon {
    position: fixed;
    right: 20px;
    z-index: 101;
}

/* Fix para problemas com flexbox em navegadores antigos */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .container,
    .hero-section .container,
    .about-section .container,
    .vantagens-container,
    .footer-content {
        display: block;
    }
    
    .hero-content,
    .about-content,
    .about-image,
    .vantagem-card,
    .footer-contact,
    .footer-info,
    .footer-social {
        display: inline-block;
        vertical-align: middle;
    }
    
    .hero-content,
    .about-content {
        width: 48%;
    }
    
    .vantagem-card {
        width: 30%;
        margin: 1.5%;
    }
}

/* Ajustes para impressão que não foram abordados anteriormente */
@media print {
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
}

/* Otimizações específicas para Android */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        -webkit-appearance: none;
        appearance: none;
        font-size: 16px;
    }
    
    .cta-button,
    .submit-button {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
}

/* Safari iOS Específico - ajustes para textos cortados */
@supports (-webkit-touch-callout: none) {
    /* Correção para o problema de texto cortado no hero */
    .hero-section {
        min-height: calc(var(--vh, 1vh) * 100);
        background-attachment: scroll !important;
        padding-bottom: 60px !important; /* Garantir espaço adequado no final da seção */
        padding-top: 60px !important; /* Garantir espaço adequado no início da seção */
        height: auto !important; /* Evitar altura fixa */
        overflow: visible !important; /* Evitar corte de texto */
    }
    
    /* Melhorar a renderização de texto para Safari */
    .hero-section h1 {
        font-size: calc(2.5rem + 0.5vw) !important; /* Tamanho responsivo com fallback seguro */
        line-height: 1.2 !important;
        letter-spacing: -0.02em;
        word-break: break-word;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        overflow-wrap: break-word;
        padding-bottom: 10px; /* Espaço adicional para evitar corte */
        max-width: 100%;
        margin-bottom: 20px !important;
        /* Evitar truncamento de texto */
        display: block !important;
        overflow: visible !important;
        /* Melhorar a renderização */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Corrigir o texto destacado */
    .hero-section h1 span.employee-badges {
        display: inline !important;
        font-size: inherit !important;
        line-height: inherit !important;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    /* Ajustar o parágrafo para evitar corte */
    .hero-section p {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        padding-bottom: 10px;
        margin-bottom: 20px !important;
        overflow: visible !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Melhorar o container para evitar cortes */
    .hero-section .container {
        padding: 0 15px !important;
        display: block !important; /* Forçar display block para melhor compatibilidade */
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: visible !important;
    }
    
    /* Melhorar hero content para evitar cortes */
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 20px 0 !important;
    }
    
    /* Ajustar o botão CTA */
    .hero-cta {
        padding-top: 10px !important;
        margin-bottom: 20px !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* Garantir que o botão seja totalmente visível */
    .hero-cta .cta-button {
        display: inline-block !important;
        padding: 15px 25px !important;
        font-size: 1rem !important;
        max-width: 90% !important;
        white-space: normal !important;
        text-align: center !important;
    }
    
    /* Aplicar regras a todo texto grande em outras seções */
    h1, h2, h3 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        -webkit-hyphens: auto !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    /* Garantir que o trabalho com flexbox seja compatível */
    .menu, 
    .footer-content, 
    .vantagens-container,
    .stats-section .container,
    .benefits-grid {
        flex-wrap: wrap !important;
        overflow: visible !important;
    }
    
    /* Adicionar espaço adicional entre as seções */
    section {
        margin-bottom: 10px !important;
        overflow: visible !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Correção para o texto na seção "TRABALHADOR CLT" que aparece na imagem */
    .hero-section h1,
    .hero-section span.employee-badges {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important; /* Sombra mais pronunciada para o problema de contraste */
    }
}

/* Melhorias específicas para iPhone pequenos (SE, 5, etc) */
@media screen and (max-width: 375px) and (-webkit-min-device-pixel-ratio: 2) {
    @supports (-webkit-touch-callout: none) {
        .hero-section h1 {
            font-size: 1.9rem !important;
            line-height: 1.3 !important;
        }
        
        .hero-section p {
            font-size: 1rem !important;
            line-height: 1.4 !important;
        }
        
        .hero-section {
            padding-top: 40px !important;
            padding-bottom: 40px !important;
        }
        
        .hero-cta .cta-button {
            padding: 12px 20px !important;
            font-size: 0.95rem !important;
            width: auto !important;
            max-width: 85% !important;
        }
    }
}

/* Otimizações para compatibilidade universal */
.mobile-device {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: manipulation;
}

.android-device .form-group input,
.android-device .form-group select,
.android-device .form-group textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
    font-size: 16px;
}

.android-device .cta-button,
.android-device .submit-button {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: none;
}

.android-device .menu-item.active .submenu {
    display: block;
    visibility: visible;
    opacity: 1;
    max-height: 500px;
}

/* Melhorias específicas para garantir Retina Display e telas de alta resolução */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section h1 {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .logo img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Aprimoramentos para estados de formulário */
.form-group.input-active label {
    color: var(--accent-color);
    font-weight: 600;
}

.form-group.input-active input,
.form-group.input-active select,
.form-group.input-active textarea {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(192, 255, 0, 0.1);
}

/* Otimizações para navegação e acessibilidade */
.visually-hidden:focus,
.visually-hidden:active {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Melhorias para impressão */
@media print {
    .printing * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    .printing .hero-section,
    .printing .about-section,
    .printing .vantagens-section {
        page-break-inside: avoid;
    }
}

/* Classes auxiliares para casos específicos */
.no-js img.lazyload {
    display: none;
}

.js .animate-on-visible {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.js .animate-on-visible.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Otimização final para hover em diferentes dispositivos */
@media (hover: hover) {
    .cta-button:hover,
    .outlined-button:hover,
    .vantagem-card:hover,
    .benefit-card:hover {
        transform: translateY(-5px);
    }
}

@media (hover: none) {
    .cta-button:active,
    .outlined-button:active,
    .vantagem-card:active,
    .benefit-card:active {
        transform: translateY(0);
        opacity: 0.9;
    }
}

/* Otimizações críticas para iOS Safari - Correção de quebra de texto inadequada */
.ios-device .hero-section h1 span.employee-badges,
.safari-browser .hero-section h1 span.employee-badges {
    display: inline-block;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
    width: 100%;
    text-align: left;
}

.ios-device .hero-section h1,
.safari-browser .hero-section h1 {
    display: block;
    max-width: 100%;
    margin-bottom: 20px;
    word-spacing: normal;
    word-break: normal;
    overflow-wrap: normal;
    line-height: 1.3;
}

/* Solução contra quebra de texto inadequada no Safari iOS */
@media not all and (min-resolution:.001dpcm) { 
    @media screen and (max-width: 767px) {
        .hero-section h1 span.employee-badges {
            display: inline-block;
            width: 100%;
            white-space: normal;
        }
    }
}

/* Correção específica para iOS para texto "TRABALHADORES CLT" */
@supports (-webkit-touch-callout: none) {
    .hero-section h1 {
        display: block;
        width: 100%;
        word-break: normal;
        line-height: 1.2;
    }

    .hero-section h1 span.employee-badges {
        word-break: normal;
        display: inline-block;
        width: 100%;
        font-size: 90%;
        letter-spacing: -0.5px;
    }
}

/* Fix para Safari desktop e iOS */
_::-webkit-full-page-media, _:future, :root .hero-section h1 span.employee-badges {
    display: inline-block;
    width: 100%;
    word-break: normal;
}

.no-break-text {
    display: inline-block;
    white-space: nowrap;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@media (max-width: 767px) {
    .no-break-text {
        white-space: normal;
        display: block;
        text-align: left;
        padding-top: 10px;
    }
}

/* Solução definitiva para quebra de texto no Safari */
@media screen and (max-width: 767px) {
    .safari-browser .hero-section h1 span.employee-badges,
    .ios-device .hero-section h1 span.employee-badges {
        white-space: normal;
        display: block;
        width: 100%;
        text-align: left;
        margin-top: 10px;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

/* Fix final para Safari */
.hero-section h1 span.no-break-text {
    display: inline-block;
    text-align: left;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .hero-section h1 span.no-break-text {
        display: block;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
    
    .safari-browser .hero-section h1,
    .ios-device .hero-section h1 {
        display: block;
        width: 100%;
        word-break: normal;
        overflow: visible;
    }
    
    .safari-browser .hero-section h1 span.employee-badges,
    .ios-device .hero-section h1 span.employee-badges {
        display: block;
        width: 100%;
        text-align: left;
        margin-top: 10px;
        white-space: normal;
    }
}

/* Safari iOS fix específico para palavras que não devem quebrar */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 767px) {
        .hero-section h1 {
            display: block;
            width: 100%;
        }
        
        .hero-section h1 span.employee-badges {
            display: block !important;
            width: 100% !important;
            text-align: left !important;
            margin-top: 10px !important;
            word-break: normal;
            white-space: normal;
        }
    }
}

/* Hack específico para Safari */
_::-webkit-full-page-media, _:future, :root .hero-section h1 span.employee-badges {
    display: inline-block;
    width: 100%;
    word-break: normal;
    white-space: normal;
}

/* Solução específica para Safari iOS - Evitar quebra de texto indesejada */
@supports (-webkit-touch-callout: none) {
    /* iOS device */
    .hero-section h1 span.employee-badges {
        white-space: nowrap !important;
        word-break: keep-all !important;
        -webkit-hyphens: none !important;
        hyphens: none !important;
        overflow: visible !important;
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
    }

    /* Ajustes para mobile */
    @media (max-width: 767px) {
        .hero-section h1 span.employee-badges {
            display: block !important;
            width: 100% !important;
            white-space: nowrap !important;
            text-align: left !important;
            margin-top: 10px !important;
        }
    }
}

/* Solução específica para o Safari */
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .hero-section h1 span.employee-badges {
            white-space: nowrap !important;
            word-break: keep-all !important;
            -webkit-hyphens: none !important;
            hyphens: none !important;
            display: inline-block !important;
            width: auto !important;
        }
        
        @media (max-width: 767px) {
            .hero-section h1 span.employee-badges {
                display: block !important;
                width: 100% !important;
                white-space: nowrap !important;
            }
        }
    }
}

/* Fix universal para texto que não deve quebrar */
.no-break-text {
    white-space: nowrap !important;
    word-break: keep-all !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    display: inline-block !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }
}

.floating-simulator {
    width: 100%;
    background: var(--primary-color);
    padding: 25px 0;
    z-index: 1000;
    margin: 0;
    position: relative;
}

.simulator-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.simulator-text {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 400px;
}

.simulator-form {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.input-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    width: 100%;
}

.simulator-input {
    flex: 1;
    height: 45px;
    padding: 0 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: #fff;
    color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 0;
}

.simulator-input:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.simulator-input::placeholder {
    color: rgba(20, 18, 15, 0.5);
}

.simulator-button {
    height: 45px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.simulator-button:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .simulator-content {
        gap: 20px;
    }

    .simulator-text {
        font-size: 1.1rem;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .floating-simulator {
        padding: 20px 0;
    }

    .simulator-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .simulator-text {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .simulator-form {
        width: 100%;
    }

    .input-group {
        flex-direction: column;
        max-width: 100%;
    }

    .simulator-input,
    .simulator-button {
        width: 100%;
        height: 45px;
    }
}