/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: medium;
    color: #1A365D;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
}

/* Tipografia Padronizada e Hierárquica */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: #1a365d;
    font-family: 'Playfair Display', serif;
}

/* Títulos Principais - Seções */
h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    padding-top: 80px;
    margin-bottom: 1.5rem;
}

/* Títulos de Seção */
h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Subtítulos */
h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Títulos de Cartões e Componentes */
h4 {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-family: 'Inter', sans-serif;
}

/* Títulos Menores */
h5 {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

h6 {
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

/* Texto Padrão */
p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #718096;
    font-size: medium;
    font-family: 'Inter', sans-serif;
}

/* Texto de Destaque */
.lead {
    font-size: small;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Texto Pequeno */
small {
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    color: #718096;
    font-family: 'Inter', sans-serif;
}

/* Links */
a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

a:hover {
    color: #2c5282;
    text-decoration: underline;
    text-align: center;
}

/* Labels de Formulário */
label {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
}

/* Botões */
.btn {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Tags e Badges */
.feature-tag, .tag {
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.section-title {
    text-align: center;
    color: #1a365d;
    margin-bottom: 0.4rem; /* Reduzido */
    position: relative;
    font-family: 'Playfair Display', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px; /* Reduzido o tamanho da linha */
    height: 3px; /* Reduzido a espessura da linha */
    background: linear-gradient(90deg, #2b6cb0, #3182ce);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 0.85rem; /* Ajustado para ser ligeiramente menor */
    margin-top: 2.5rem; /* Adicionado espaçamento superior */
    margin-bottom: 1.8rem; /* Reduzido o espaçamento */
    max-width: 650px; /* Reduzido a largura máxima */
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Botões Institucionais */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
}

.btn::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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    color: white;
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c5282, #2a4365);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

.btn-secondary:hover {
    background: #2b6cb0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Header Institucional */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
    padding: 0.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.nav-logo {
    flex-shrink: 0;
}

.logo {
    height: 45.6px;
    width: auto;
    transition: transform 0.3s ease;
    max-width: 336px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-contact-info {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.2rem; /* Reduzido ainda mais */
    font-size: 0.6rem; /* Reduzido ainda mais */
    color: #4a5568;
    white-space: nowrap;
    padding: 0.2rem 0.4rem; /* Reduzido ainda mais */
    border-radius: 5px;
    background: rgba(43, 108, 176, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.contact-item:hover {
    background: rgba(43, 108, 176, 0.1);
    color: #2b6cb0;
    border-color: rgba(43, 108, 176, 0.2);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    font-size: x-small;
}

.contact-icon {
    font-size: 0.6rem; /* Reduzido ainda mais */
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2b6cb0, #3182ce);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: #2b6cb0;
    background: rgba(43, 108, 176, 0.08);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-item-highlight .nav-link-cta {
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    color: white;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
}

.nav-item-highlight .nav-link-cta:hover {
    background: linear-gradient(135deg, #2c5282, #2a4365);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    background: none;
    border: none;
}

.nav-toggle:hover {
    background: rgba(43, 108, 176, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #2b6cb0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsividade melhorada para mobile e tablet */
@media (max-width: 1024px) {
    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 15px;
        gap: 0.5rem;
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-logo {
        flex: 0 0 auto;
        max-width: 180px;
    }
    
    .nav-logo img {
        max-width: 100%;
        height: auto;
        max-height: 40px;
    }
    
    .nav-contact-info {
        display: none; /* Oculta informações de contato em telas menores */
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #2b6cb0;
        box-shadow: 0 2px 8px rgba(43, 108, 176, 0.2);
        z-index: 10000;
        position: relative;
        border-radius: 6px;
        padding: 8px;
    }
    
    .nav-toggle:hover {
        background: rgba(43, 108, 176, 0.1);
        border-color: #2c5282;
    }
    
    .bar {
        background: #2b6cb0;
        width: 22px;
        height: 3px;
        margin: 2px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Menu overlay mobile */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        list-style: none;
        margin: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-overlay.active .mobile-nav-menu {
        transform: translateY(0);
    }
    
    .mobile-nav-menu li {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .mobile-nav-menu a {
        display: block;
        padding: 1rem;
        color: #2d3748;
        text-decoration: none;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .mobile-nav-menu a:hover {
        background: #2b6cb0;
        color: white;
        transform: translateY(-2px);
    }
    
    .mobile-nav-menu .btn-primary {
        background: linear-gradient(135deg, #2b6cb0, #2c5282);
        color: white;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo {
        max-width: 150px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        max-width: 120px;
    }
    
    .nav-toggle {
        padding: 0.3rem;
    }
    
    .bar {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .hero {
        padding: 90px 0 30px;
    }
}

/* Hero Section Institucional */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
    padding: 120px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="%23cbd5e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    color: #1a365d;
    line-height: 1.1;
    font-size: x-large;
    text-align: center;
    margin-top: 5px;
}

.hero-intro {
    margin-bottom: 2rem;
}

.problem-section {
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.2rem;
    border-left: 4px solid #e53e3e;
    border: 1px solid rgba(229, 62, 62, 0.1);
    text-align: center;
}

.problem-title {
    color: #2f855a;
    font-size: 1rem; /* Reduzido */
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
}

.problem-intro {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem; /* Reduzido */
    padding: 0.7rem; /* Reduzido */
    background: #fafafa;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.problem-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.problem-content h3 {
    font-size: 0.85rem; /* Reduzido */
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #2d3748;
}

.problem-content p {
    font-size: 0.8rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.key-question {
    background-color: #2F855A;
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 5px solid #e53e3e;
    border: 1px solid #2f855a;
}

.key-question p {
    margin: 0;
    color: #2f855a;
    font-weight: 500;
}

.solution-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    border-left: 4px solid #38a169;
    border: 1px solid rgba(56, 161, 105, 0.1);
}

.solution-title {
    color: #2f855a;
    font-size: 1.1rem; /* Reduzido */
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.solution-description {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-icon {
    font-size: 1.125rem;
}

.hero-stats {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.stats-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: #F4F7FB;
    margin-bottom: 0.2rem; /* Reduzido em 60% de 0.5rem */
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: justify;
    margin-top: 0.2rem; /* Adicionado para ajustar o espaçamento */
}

/* Sobre Nós Section */
.sobre-nos {
    padding: 60px 0;
    background: #ffffff;
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-intro {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.missao-visao-valores {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mvv-item {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2b6cb0;
}

.mvv-item h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mvv-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 576px) {
    .valores-grid {
        grid-template-columns: 1fr;
    }
}

.valor-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.valor-item h4 {
    color: #2b6cb0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.valor-item p {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
}

.experience-badge {
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.3);
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: #FDF9F9;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: white;
}

.badge-text p {
    color: white;
}

.badge-text strong {
    color: white;
}

.certificacoes {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.certificacoes h4 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.cert-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.cert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cert-content strong {
    color: #2b6cb0;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.cert-content p {
    font-size: 0.875rem;
    color: #598FC5;
    margin: 0;
}

/* Serviços Section */
.servicos {
    padding: 60px 0;
    background: #f7fafc;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajustado para permitir cards menores */
    gap: 1.5rem; /* Reduzido o espaçamento */
}

.servico-card h3 {
    font-size: 1.05rem; /* Ajuste fino para o título do serviço */
}

.servico-card p {
    font-size: 0.85rem; /* Ajuste fino para o texto do serviço */
    color: #598FC5;
}

.feature-tag {
    font-size: 0.7rem; /* Ajuste fino para as tags de funcionalidade */
}

.servico-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.servico-icon {
    margin-bottom: 1.5rem;
}

.servico-icon img {
    width: 60px; /* Reduzido */
    height: 60px; /* Reduzido */
    object-fit: contain;
}

.servicos-grid h3 {
    color: #2B6CB0;
    margin-bottom: 0.6rem;
    font-size: 1rem; /* Ajuste fino */
}servico-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.servico-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(43, 108, 176, 0.1);
    color: #2b6cb0;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(43, 108, 176, 0.2);
}

/* Como Funciona Section */
.como-funciona {
    padding: 60px 0;
    background: #ffffff;
}

.processo-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    list-style: none;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #2b6cb0, #3182ce);
    z-index: 1;
    border-radius: 2px;
}

.processo-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.processo-step:nth-child(1) { animation-delay: 0.1s; }
.processo-step:nth-child(2) { animation-delay: 0.2s; }
.processo-step:nth-child(3) { animation-delay: 0.3s; }
.processo-step:nth-child(4) { animation-delay: 0.4s; }
.processo-step:nth-child(5) { animation-delay: 0.5s; }

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.3);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.05);
}

.step-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.step-title {
    color: #1a365d;
    font-size: 1rem; /* Ajuste fino */
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.step-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

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

.detalhe-card {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2b6cb0;
    border: 1px solid #e2e8f0;
}

.detalhe-card h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1rem; /* Reduzido */
}

.detalhe-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Vantagens Section */
.vantagens {
    padding: 60px 0;
    background: #f7fafc;
}

.tab-system {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2b6cb0;
    color: white;
    border-color: #2b6cb0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem; /* Ajustado para ser menor */
}

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

.vantagem-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.vantagem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.vantagem-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.vantagem-card h4 {
    color: #1a365d;
    margin-bottom: 0.8rem;
    font-size: 0.9rem; /* Reduzido */
}

.vantagem-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding-top: 20px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
    background: #ffffff;
}

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

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7fafc;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #edf2f7;
}

.faq-question h3 {
    color: #1a365d;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.1rem;
    color: #2b6cb0;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Garantias Section */
.garantias {
    padding: 100px 0;
    background: #f7fafc;
}

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

.garantia-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.garantia-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.garantia-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.garantia-item h3 {
    color: #1a365d;
    margin-bottom: 0.8rem;
    font-size: 1rem; /* Ajuste fino para o título de garantia */
}

.garantia-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Área do Cliente Section */
.area-cliente {
    padding: 100px 0;
    background: #ffffff;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.login-info h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Reduzido */
}

.login-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.feature-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.login-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.login-form h4 {
    color: #1a365d;
    margin-bottom: 2rem;
    font-size: 1.1rem; /* Reduzido */
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.login-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.login-links a {
    color: #2b6cb0;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.separator {
    color: #a0aec0;
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background: #f7fafc;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info h3 {
    color: #1a365d;
    margin-bottom: 1.2rem;
    font-size: 1rem; /* Ajuste fino */
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contato-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contato-details strong {
    color: #1a365d;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.contato-details p {
    margin: 0 0 0.25rem 0;
}

.contato-details a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 500;
}

.contato-details a:hover {
    text-decoration: underline;
}

.contato-details small {
    color: #718096;
    font-size: 0.8rem;
}

.social-section h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1rem; /* Reduzido */
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #1a365d;
}

.social-icon {
    font-size: 1.25rem;
}

.social-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.contato-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contato-form h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.05rem; /* Ajuste fino */
}

.form-subtitle {
    color: #2b6cb0;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #2b6cb0;
    padding-bottom: 0.75rem;
}

.field-error {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.form-message.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #feb2b2;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding-top: 30px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-social a {
    display: inline-block;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: white;
    font-size: medium;
    text-align: right;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    font-size: 0.75rem; /* Reduzido para manter hierarquia */
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact p {
    color: #cbd5e0;
    text-align: right;
    font-size: x-small;
}

.footer-contact a {
    color: #90cdf4;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: #a0aec0;
    font-size: 0.675rem;
    text-align: center;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: x-small;
    font-weight: bold;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.45rem;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
    position: fixed;
    left: -100%;
    top: 100%;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-contact-info {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .processo-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .processo-timeline::before {
        display: none;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .garantias-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        padding-top: 100px;
    }
    
    .problem-section,
    .solution-section {
        padding: 2rem;
    }
    
    .servico-card,
    .vantagem-card,
    .garantia-item {
        padding: 2rem 1.5rem;
    }
    
    .login-form-container,
    .contato-form {
        padding: 2rem 1.5rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== SEÇÃO LGPD ===== */
.lgpd {
    padding-right: 0;
    padding-left: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.lgpd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lgpd-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23cbd5e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23lgpd-grid)"/></svg>');
    opacity: 0.3;
}

.lgpd-content {
    position: relative;
    z-index: 1;
}

.lgpd-intro {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border-left: 5px solid #2b6cb0;
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.lgpd-intro h3 {
    color: #2b6cb0;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.2rem;
    font-size: 1.1rem; /* Ajustado para ser ligeiramente menor */
}

.lgpd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .lgpd-grid {
        grid-template-columns: 1fr;
    }
}

.lgpd-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.lgpd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #3182ce);
}

.lgpd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.lgpd-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.lgpd-card h4 {
    color: #1a365d;
    margin-bottom: 0.4rem;
    font-size: 0.8rem; /* Ajuste fino para o título do card LGPD */
}

.lgpd-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.lgpd-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.75rem; /* Reduzido para manter hierarquia */
}

.lgpd-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.lgpd-features li:last-child {
    border-bottom: none;
}

.dpo-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border-left: 5px solid #38a169;
    border: 1px solid rgba(56, 161, 105, 0.1);
}

.dpo-section h3 {
    color: #2f855a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.dpo-details h4 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dpo-title {
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.dpo-contact {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.dpo-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dpo-contact .contact-icon {
    font-size: 1rem;
}

.contact-note {
    font-size: 0.8rem;
    color: #4a5568;
    font-style: italic;
    margin: 0;
}

.lgpd-compliance {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.lgpd-compliance h3 {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-align: center;
}

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

.compliance-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    background: #edf2f7;
    transform: translateY(-2px);
}

.compliance-item h4 {
    color: #2b6cb0;
    margin-bottom: 0.7rem;
    font-size: 0.9rem; /* Ajuste fino para o título de conformidade LGPD */
}

.compliance-item .btn {
    margin-top: 1rem;
}

.lgpd-footer {
    background: #1a365d;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.lgpd-footer a {
    color: #90cdf4;
    text-decoration: none;
}

.lgpd-footer a:hover {
    color: #63b3ed;
    text-decoration: underline;
}

/* ===== BANNER DE COOKIES LGPD - OBRIGATÓRIO ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.98);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #e53e3e;
    display: none; /* Estado inicial: oculto */
}

.cookie-banner.show {
    display: block; /* Mantido para compatibilidade, mas o JS usará style.display */
}

.cookie-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

.cookie-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: #fed7d7;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cookie-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.cookie-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.cookie-details p {
    margin-bottom: 0.5rem;
}

.cookie-link {
    color: #90cdf4;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #63b3ed;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-actions .btn {
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a365d;
}

/* ===== MODAL DE CONFIGURAÇÕES DE COOKIES ===== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-modal-header h3 {
    color: #1a365d;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #4a5568;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #f7fafc;
    color: #1a365d;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category h4 {
    color: #1a365d;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.4s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #2b6cb0;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #a0aec0;
    cursor: not-allowed;
}

.lgpd-notice {
    background: linear-gradient(135deg, #fed7d7, #feb2b2);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #e53e3e;
    margin-top: 2rem;
}

.lgpd-notice h4 {
    color: #742a2a;
    margin-bottom: 1rem;
}

.lgpd-notice ul {
    color: #742a2a;
    margin-bottom: 1rem;
}

.lgpd-notice li {
    margin-bottom: 0.5rem;
    font-size: 0.75rem; /* Reduzido para manter hierarquia */
}

.lgpd-notice a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

.lgpd-notice a:hover {
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ===== RESPONSIVIDADE LGPD ===== */
@media (max-width: 768px) {
    .lgpd {
        padding: 60px 0;
    }
    
    .lgpd-intro,
    .lgpd-card,
    .dpo-section,
    .lgpd-compliance {
        padding: 2rem;
    }
    
    .lgpd-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-banner {
        padding: 3rem 1rem 1rem 1rem;
    }
    
    .cookie-close-btn {
        top: 8px;
        right: 8px;
        font-size: 1.8rem;
        width: 32px;
        height: 32px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cookie-text {
        min-width: auto;
        width: 100%;
        text-align: center;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 3rem 0.75rem 0.75rem 0.75rem;
    }
    
    .cookie-close-btn {
        top: 5px;
        right: 5px;
        font-size: 1.6rem;
        width: 30px;
        height: 30px;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-details {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-actions .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Clientes Section */
.clientes {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.clientes-content {
    margin-top: 3rem;
}

.clientes-tipos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .clientes-tipos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .clientes-tipos {
        grid-template-columns: 1fr;
    }
}

.cliente-tipo {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cliente-tipo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cliente-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.cliente-tipo h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 0.8rem; /* Ajuste fino para o título do tipo de cliente */
}

.cliente-tipo p {
    color: #4a5568;
    line-height: 1.6;
}

.depoimentos-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.depoimentos-preview h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.depoimento-placeholder {
    color: #718096;
    font-style: italic;
}

/* Nossas Divulgações Section */
.divulgacoes {
    padding: 80px 0;
    background: white;
}

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

.divulgacao-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.divulgacao-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.divulgacao-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.divulgacao-item h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1rem; /* Reduzido */
}

.divulgacao-item p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #F3EBEB;
}

.link-destaque {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
}

.link-destaque:hover {
    color: #ffed4e;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .clientes-tipos,
    .divulgacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}


/* ===== RESPONSIVIDADE COMPLETA ===== */

/* Tablets e dispositivos médios */
@media (max-width: 1024px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-contact-info {
        display: none; /* Esconder informações de contato em tablets */
    }
    
    .logo {
        height: 80px;
        max-width: 220px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Smartphones e dispositivos pequenos */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .nav-logo {
        order: 1;
        flex: 1;
    }
    
    .logo {
        height: 60px;
        max-width: 180px;
    }
    
    .nav-contact-info {
        display: none;
    }
    
    /* Esconder completamente o menu principal em dispositivos móveis */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 0 2rem 0;
        gap: 0;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        left: 0;
    }
    
    /* Área do Cliente sempre visível fora do menu hambúrguer */
    .nav-item-highlight {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
        display: flex !important;
    }
    
    .nav-item-highlight .nav-link-cta {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    /* Esconder "Área do Cliente" do menu hambúrguer */
    .nav-menu .nav-item-highlight {
        display: none !important;
    }
    
    /* Botão hambúrguer */
    .nav-toggle {
        display: flex;
        order: 3;
        z-index: 1001;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 500;
        color: #2d3748;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(43, 108, 176, 0.1);
        color: #2b6cb0;
        padding-left: 2.5rem;
    }
    
    /* Overlay quando menu está aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Animação do botão hambúrguer */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Ajustes do hero para mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        padding-top: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Ajustes gerais para mobile */
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .problems-grid,
    .services-grid,
    .advantages-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-section,
    .solution-section {
        padding: 1.5rem;
        margin: 0 15px 1.5rem 15px;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        height: 50px;
        max-width: 150px;
    }
    
    .nav-item-highlight .nav-link-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .nav-menu {
        width: 100%;
        left: -100%;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .problem-section,
    .solution-section {
        padding: 1rem;
        margin: 0 10px 1rem 10px;
    }
    
    .problem-item {
        padding: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Estilos para ícones de redes sociais */
.social-icon-img {
    width: 32px; /* Reduzido */
    height: 32px; /* Reduzido */
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-icon {
    width: 28px; /* Reduzido */
    height: 28px; /* Reduzido */
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ===== ESTILOS DO MODAL DA CALCULADORA ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 18px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background-color: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

/* ===== ESTILOS DA CALCULADORA ===== */
.calc-container {
    max-width: 100%;
    margin: 0;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.calc-header { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 20px;
}

.calc-icon { 
    width: 60px; 
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(43, 108, 176, 0.2));
}

.calc-container h2 { 
    color: #1a365d; 
    font-size: 1.8em; 
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.calc-container > p { 
    color: #4a5568; 
    margin-top: 10px; 
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.5;
}

.calc-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.calc-box label { 
    display: block; 
    text-align: left; 
    margin-top: 20px; 
    margin-bottom: 8px;
    font-weight: 600; 
    color: #2d3748; 
    font-size: 15px;
}

.calc-box label:first-child {
    margin-top: 0;
}

.calc-box input { 
    width: 100%; 
    padding: 14px 16px;
    border-radius: 10px; 
    border: 2px solid #e2e8f0; 
    font-size: 16px; 
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #fafafa;
}

.calc-box input:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.1);
    background: white;
}

.calc-box input:hover {
    border-color: #cbd5e0;
}

.calc-box .btn {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.calc-box .btn-primary {
    background: linear-gradient(135deg, #2b6cb0 0%, #3182ce 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.calc-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4);
}

.calc-box .btn-secondary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.calc-box .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.resultado {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    border: 2px solid #81e6d9;
    border-radius: 15px;
    color: #00695c;
    font-weight: bold;
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.valor { 
    font-size: 18px; 
    margin: 15px 0; 
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid #38a169;
}

#graficoPizza {
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsividade do Modal */
@media (max-width: 768px) { 
    .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .calc-container { 
        padding: 25px; 
    } 
    
    .calc-container h2 { 
        font-size: 1.5em; 
    }
    
    .calc-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .calc-icon {
        width: 50px;
        height: 50px;
    }
    
    .calc-box .btn {
        width: 100%;
        margin: 5px 0;
        justify-content: center;
    }
    
    #graficoPizza {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .calc-box {
        padding: 20px;
    }
    
    .calc-container > p {
        font-size: 1em;
    }
    
    .valor {
        font-size: 16px;
    }
}

/* Seção Responsável Técnico Destacada */
.responsavel-tecnico-destaque {
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(43, 108, 176, 0.3);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.responsavel-tecnico-destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="medical-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23medical-grid)"/></svg>');
    opacity: 0.3;
}

.responsavel-content {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: x-small;
}

.responsavel-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.responsavel-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.responsavel-content p:last-child {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #fed7d7;
    font-weight: 600;
}

/* Seção de Informação sobre Validação */
.validation-info-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.validation-info-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.validation-info-card .card-icon {
    font-size: 1.5rem;
    color: #0ea5e9;
}

.validation-info-card h3 {
    color: #0c4a6e;
    font-size: 1.2rem;
    margin: 0;
}

.validation-info-card .card-content p {
    color: #0f172a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.validation-info-card .security-notice {
    background: rgba(14, 165, 233, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
    margin-top: 1rem;
}

.validation-info-card .security-notice p {
    margin: 0;
    color: #0c4a6e;
    font-size: 0.9rem;
}


.dpo-section h3 {
    color: #1a365d;
    margin-bottom: 0.8rem;
    font-size: 0.8rem; /* Ajuste fino para o título do DPO */
}



.contato-info h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #1a365d;
}



.contato-form h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #1a365d;
}


/* ===== MOBILE MENU STYLES ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    padding: 2rem;
    min-width: 280px;
    max-width: 90vw;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    list-style: none;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu li:last-child {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.mobile-nav-menu .btn-full {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.mobile-nav-menu .btn-full:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ===== RESPONSIVE NAVIGATION ===== */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #2b6cb0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }
    
    .nav-toggle:hover {
        background: rgba(43, 108, 176, 0.1);
        border-color: #2c5282;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
        position: relative;
    }
    
    .nav-logo img {
        max-width: 200px;
        height: auto;
    }
    
    .nav-contact-info {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .nav-contact-info .contact-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-logo img {
        max-width: 150px;
    }
    
    .nav-contact-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-contact-info .contact-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo img {
        max-width: 120px;
    }
    
    .mobile-nav-menu {
        padding: 1.5rem;
        min-width: 250px;
    }
}

/* ===== COOKIE BANNER STYLES - NOVA IMPLEMENTAÇÃO ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    animation: slideUpFade 0.5s ease-out;
}

@keyframes slideUpFade {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text {
    color: #2d3748;
}

.cookie-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
}

.cookie-text strong {
    color: #1a365d;
    font-weight: 600;
}

.cookie-link {
    color: #2b6cb0;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: #2c5282;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-cookie-accept {
    background: #2b6cb0;
    color: white;
}

.btn-cookie-accept:hover {
    background: #2c5282;
    transform: translateY(-1px);
}

.btn-cookie-reject {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-cookie-reject:hover {
    background: #cbd5e0;
    color: #2d3748;
}

.btn-cookie-close {
    background: #fed7d7;
    color: #c53030;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    padding: 0;
}

.btn-cookie-close:hover {
    background: #feb2b2;
    color: #9b2c2c;
}

/* ===== RESPONSIVE COOKIE BANNER ===== */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-cookie {
        flex: 1;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 5px;
        left: 5px;
        right: 5px;
        padding: 12px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .btn-cookie {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Estilos para Calculadora de Tempo */
.modal-calculadora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: white;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
    background: none;
    border: none;
}

.close-modal:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

.calculadora-intro {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

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

.calculadora-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2d3748;
}

.calculadora-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: clamp(0.9rem, 1vw, 1rem);
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.calculadora-form input:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.calculadora-form small {
    display: block;
    margin-top: 5px;
    color: #718096;
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
}

.resultado-calculadora {
    margin-top: 30px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.resultado-calculadora h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #2b6cb0;
}

.resultado-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.resultado-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.resultado-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.resultado-valor {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
}

.grafico-container {
    text-align: center;
    margin: 20px 0;
}

.resultado-acoes {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Responsividade para Calculadora */
@media (max-width: 768px) {
    .modal-calculadora {
        padding: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .resultado-acoes {
        flex-direction: column;
    }
    
    .resultado-cards {
        grid-template-columns: 1fr;
    }
}

/* Comentário de Desenvolvimento */
.dev-info {
    position: fixed;
    bottom: 5px;
    right: 5px;
    font-size: 0.6rem;
    color: #a0aec0;
    opacity: 0.3;
    font-family: 'Inter', sans-serif;
    z-index: 1;
}

/* Estilos para Serviços Adicionais */
.servicos-adicionais {
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.servicos-subtitle {
    text-align: center;
    color: #2b6cb0;
    margin-bottom: 2rem;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.especialidade-grupo {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.especialidade-titulo {
    color: #2b6cb0;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.servicos-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.servico-mini-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.servico-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #2b6cb0;
}

.servico-mini-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.servico-mini-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.servico-mini-card h5 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    line-height: 1.2;
}

.servico-mini-card p {
    color: #718096;
    font-size: clamp(0.7rem, 0.85vw, 0.8rem);
    line-height: 1.3;
    margin: 0;
}

/* Responsividade para Serviços Adicionais */
@media (max-width: 768px) {
    .especialidades-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servicos-mini-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .servico-mini-card {
        padding: 0.8rem;
    }
    
    .servico-mini-icon {
        width: 35px;
        height: 35px;
    }
    
    .servico-mini-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .servicos-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Informação de Desenvolvimento */
.dev-credit {
    position: fixed;
    bottom: 3px;
    right: 3px;
    font-size: 0.5rem;
    color: #cbd5e0;
    opacity: 0.4;
    font-family: 'Inter', sans-serif;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 4px;
    border-radius: 2px;
}

.dev-credit:hover {
    opacity: 0.8;
    color: #570A0C;
}

/* Estilos para Categorias de Clientes */
.clientes-categorias {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.categoria-clientes {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.categoria-titulo {
    color: #2b6cb0;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.clientes-tipos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.cliente-tipo h4 {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    margin-bottom: 0.5rem;
    color: #2d3748;
}

/* Responsividade Melhorada para Menu Mobile - Ponto 12 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        color: #2d3748;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .nav-menu a:hover {
        background: #2b6cb0;
        color: white;
        transform: translateY(-2px);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #2d3748;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Prevenir scroll quando menu está aberto */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Ajustes para tablets */
    @media (min-width: 769px) and (max-width: 1024px) {
        .nav-menu a {
            font-size: 0.9rem;
            padding: 0.7rem 1rem;
        }
    }
}

/* Melhorias para dispositivos muito pequenos */
@media (max-width: 992px) {
    .clientes-tipos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clientes-tipos {
        grid-template-columns: 1fr;
    }
    
    .categoria-clientes {
        padding: 1rem;
    }
    
    .nav-menu {
        padding: 1rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* Estilos para elementos de contato adicionais */
.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.contato-icon {
    font-size: 1.5rem;
    color: #2b6cb0;
    flex-shrink: 0;
}

.contato-details strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.3rem;
}

.contato-details p {
    margin: 0;
    color: #4a5568;
}

.contato-details small {
    color: #718096;
    font-style: italic;
}

/* Ajustes para impressão */
@media print {
    .dev-credit {
        display: none;
    }
    
    .whatsapp-float {
        display: none;
    }
    
    .back-to-top {
        display: none;
    }
}

/* Tópico 10: Ícones de WhatsApp no cabeçalho e seção de contato */
.whatsapp-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.whatsapp-icon-small {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.whatsapp-contact-item .whatsapp-icon-contact {
    width: 32px;
    height: 32px;
}

.whatsapp-contact-item:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-item a {
    color: #25d366;
    font-weight: 600;
}

.whatsapp-contact-item a:hover {
    color: #128c7e;
}

/* Tópico 9: Ajuste de Visibilidade do Texto LGPD */
.lgpd-footer {
    background-color: #1a365d;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lgpd-footer p {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.lgpd-footer a {
    color: #90cdf4;
    font-weight: 600;
    text-decoration: underline;
}

.lgpd-footer a:hover {
    color: #ffffff;
}

/* Tópico 11: Botão Flutuante para Formulário de Contato */
.form-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #38a169;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-float:hover {
    background-color: #2f855a;
    transform: scale(1.05);
}

.form-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-float {
    bottom: 20px;
}

@media (max-width: 768px) {
    .form-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
    }
    .form-float svg {
        width: 25px;
        height: 25px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
}
.strong {
}
#abrir-calculadora-tempo {
}

/* ===== PADRONIZAÇÃO DE BOTÕES COMPLIANCE ===== */
.compliance-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #2b6cb0;
    border-radius: 8px;
    background: transparent;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(43, 108, 176, 0.15);
}

.compliance-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(43, 108, 176, 0.1), transparent);
    transition: left 0.5s;
}

.compliance-btn:hover::before {
    left: 100%;
}

.compliance-btn:hover {
    background: #2b6cb0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.3);
    text-decoration: none;
}

.compliance-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.2);
}

/* ===== ALINHAMENTO DOS BOTÕES DA SEÇÃO CONFORMIDADE ===== */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.compliance-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    align-items: center;
}

.compliance-item:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.compliance-item h4 {
    color: #2b6cb0;
    font-size: 1.1rem;
    font-weight: 600;
}

.compliance-item p {
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

.compliance-item .compliance-btn {
    margin-top: auto;
    align-self: center;
    width: auto;
    flex-shrink: 0;
}

/* ===== ÁREA DO CLIENTE - BOTÃO PADRONIZADO ===== */
.area-cliente .login-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.area-cliente .card-header {
    margin-bottom: 1.5rem;
}

.area-cliente .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.area-cliente .compliance-btn {
    margin-top: 1.5rem;
    width: auto;
    min-width: 200px;
}

/* ===== RESPONSIVIDADE PARA BOTÕES COMPLIANCE ===== */
@media (max-width: 768px) {
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-item {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .compliance-btn {
        width: 100%;
        min-width: auto;
    }
    
    .area-cliente .compliance-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .compliance-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ===== MARCA ADOBE DREAMWEAVER ===== */
.adobe-credit {
    position: fixed;
    bottom: 3px;
    right: 3px;
    font-size: 0.5rem;
    color: #cbd5e0;
    opacity: 0.4;
    font-family: 'Inter', sans-serif;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 4px;
    border-radius: 2px;
}

.adobe-credit:hover {
    opacity: 0.8;
    color: #2b6cb0;
}

/* ===== BOTÕES DA SEÇÃO HERO-STATS - PADRONIZAÇÃO COM COMPLIANCE ===== */
.hero-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.15);
    border-color: #2b6cb0;
}

.hero-stats .stat-number h3 {
    color: #1a365d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-stats .stat-label {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    justify-content: space-between;
}

.hero-stats .stat-label p {
    color: #4a5568;
    line-height: 1;
    flex-grow: 1;
    font-size: 3px;
}

.hero-stats .compliance-btn {
    margin-top: auto;
    align-self: center;
    width: auto;
    flex-shrink: 0;
    min-width: 180px;
}

.hero-stats .btn-icon {
    margin-right: 0.5rem;
}

/* Responsividade para a seção hero-stats */
@media (max-width: 768px) {
    .hero-stats .stat-item {
        min-height: auto;
        padding: 1.2rem;
    }
    
    .hero-stats .compliance-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-stats .stat-number h3 {
        font-size: 1.1rem;
    }
    
    .hero-stats .stat-label p {
        font-size: 0.85rem;
    }
}


/* ===== PADRONIZAÇÃO GLOBAL DOS BOTÕES COMPLIANCE ===== */
/* Garantir que todos os botões compliance-btn tenham o mesmo estilo */
button.compliance-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #2b6cb0;
    border-radius: 8px;
    background: #ffffff;
    color: #2b6cb0 !important;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(43, 108, 176, 0.15);
    font-family: 'Inter', sans-serif;
}

button.compliance-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(43, 108, 176, 0.1), transparent);
    transition: left 0.5s;
}

button.compliance-btn:hover::before {
    left: 100%;
}

button.compliance-btn:hover {
    background: #2b6cb0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.3);
    text-decoration: none;
}

button.compliance-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.2);
}

/* Botões compliance com largura total */
.compliance-btn.btn-full {
    width: 100%;
    min-width: auto;
}

/* Estilos específicos para o hero-cta */
.hero-cta .compliance-btn {
    padding: 16px 32px;
    font-size: 1rem;
    min-width: 250px;
}

/* Estilos para menu mobile */
.mobile-nav-menu .compliance-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 12px 20px;
}

/* Estilos para formulários */
form .compliance-btn {
    margin-top: 1rem;
}

/* Estilos para calculadora */
.calculadora-tempo .compliance-btn {
    margin-top: 1rem;
}

.resultado-acoes .compliance-btn {
    margin: 0.5rem;
    min-width: 150px;
}

/* Responsividade para todos os botões compliance */
@media (max-width: 768px) {
    .compliance-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }
    
    .hero-cta .compliance-btn {
        width: 100%;
        min-width: auto;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .resultado-acoes .compliance-btn {
        width: 100%;
        margin: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .compliance-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-cta .compliance-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Garantir que ícones dos botões tenham espaçamento correto */
.compliance-btn .btn-icon {
    margin-right: 0.5rem;
    display: inline-block;
}

/* Remover estilos antigos de botões para evitar conflitos */
.btn.btn-primary, .btn.btn-secondary {
    /* Manter apenas para elementos que não usam compliance-btn */
}

/* Sobrescrever estilos específicos para garantir consistência */
a.compliance-btn, button.compliance-btn {
    text-decoration: none !important;
}

a.compliance-btn:hover, button.compliance-btn:hover {
    text-decoration: none !important;
}


/* ===== BOTÕES FLUTUANTES ===== */
.floating-buttons {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    pointer-events: auto !important;
}

.floating-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    pointer-events: auto !important;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.floating-btn:active {
    transform: translateY(-1px);
}

/* Botão WhatsApp */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

/* Botão Formulário */
.form-btn {
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: white;
}

.form-btn:hover {
    background: linear-gradient(135deg, #3182ce, #2b6cb0);
}

/* Animação de pulso */
.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ===== MODAL DO FORMULÁRIO ===== */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    border-radius: 15px;
    width: 85%;
    max-width: 450px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-modal-header {
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.contact-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-close:hover {
    color: #f1f5f9;
}

.contact-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 120px);
}

.contact-modal-body p {
    margin: 0 0 20px 0;
    color: #64748b;
    text-align: center;
    font-size: 1rem;
}

/* Estilos do Formulário */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsividade dos Botões Flutuantes */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .contact-modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
        max-height: 85vh;
    }
    
    .contact-modal-header {
        padding: 12px 15px;
    }
    
    .contact-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .contact-modal-body {
        padding: 15px;
        max-height: calc(85vh - 100px);
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 70px;
    }
    
    .submit-btn {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-modal-content {
        margin: 2% auto;
        width: 98%;
        max-width: 350px;
        max-height: 90vh;
    }
    
    .contact-modal-header {
        padding: 10px 12px;
    }
    
    .contact-modal-header h3 {
        font-size: 1rem;
    }
    
    .contact-modal-body {
        padding: 12px;
        max-height: calc(90vh - 80px);
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    
    .form-group textarea {
        min-height: 60px;
    }
    
    .submit-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}



/* Estilos para o Modal de Contato Flutuante */
.contact-modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.contact-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    max-height: 90vh; /* Altura máxima de 90% da altura da tela */
    display: flex;
    flex-direction: column;
}

.contact-modal-header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.contact-modal-header h3 {
    margin: 0;
}

.contact-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.contact-close:hover,
.contact-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.contact-modal-body {
    padding: 15px;
    overflow-y: auto; /* Adiciona barra de rolagem vertical quando necessário */
}

/* Responsividade para o modal */
@media (max-width: 600px) {
    .contact-modal-content {
        width: 95%;
        padding: 15px;
    }
    .contact-modal-header h3 {
        font-size: 1.2rem;
    }
}



/* Estilos para os Botões Flutuantes */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    color: white;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.form-btn {
    background: #2b6cb0;
}

.form-btn:hover {
    background: #2c5282;
    transform: scale(1.1);
}

/* Responsividade para botões flutuantes */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

/* Estilos para o botão de envio do formulário modal */
.submit-btn {
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2c5282, #2a4365);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}


.hero-stats .stat-label .compliance-btn {
    width: 100%;
    display: block;
    text-align: center;
}
