/* Estilos Gerais */
:root {
    --primary-color: #ff6600; /* Laranja principal */
    --secondary-color: #ff8533; /* Laranja secundário (mais claro) */
    --accent-color: #ff9966; /* Laranja accent (ainda mais claro) */
    --light-orange: #ffb380; /* Laranja bem claro */
    --green-accent: #c2cb20; /* Nova cor verde para detalhes */
    --white-color: #f5f5f5; /* Cultured - branco principal */
    --cream-color: #f0e4d3; /* White Chocolate - cor creme para fundos */
    --dark-color: #333333; /* Cinza escuro */
    --light-color: #f8f9fa; /* Cinza claro */
    --gray-color: #6c757d; /* Cinza médio */
}

/* Reset CSS para garantir que não há margens estranhas */
html, body {
    margin: 0;
    padding: 0;
}

/* Acordo Online Widget Container e Fallback */
#acordo-online-widget-container {
    position: relative;
    min-height: 50px; /* Altura mínima para evitar layout shift */
}

.acordo-online-fallback {
    padding: 20px;
    margin: 15px 0;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    text-align: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.acordo-online-fallback-hidden {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.acordo-online-fallback-visible {
    display: block !important;
    visibility: visible;
    opacity: 1;
}

.acordo-online-fallback-content {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.acordo-online-fallback-icon {
    font-size: 2rem;
    color: #ffc107;
}

.acordo-online-fallback-icon i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.acordo-online-fallback-text {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.acordo-online-fallback-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: white;
    background-color: var(--primary-color, #ff6600);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.acordo-online-fallback-link:hover {
    background-color: var(--secondary-color, #ff8533);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.acordo-online-fallback-link:focus {
    outline: 3px solid var(--primary-color, #ff6600);
    outline-offset: 2px;
    color: white;
}

.acordo-online-fallback-link:hover {
    color: var(--secondary-color, #ff8533);
    text-decoration: none;
}

.acordo-online-fallback-link:focus {
    outline: 2px solid var(--primary-color, #ff6600);
    outline-offset: 2px;
}

/* Ocultar fallback quando widget carregar */
#acordo-online-widget-container:has(iframe),
#acordo-online-widget-container:has([class*="acordo"]),
#acordo-online-widget-container:has([id*="acordo"]),
#acordo-online-widget-container:has([class*="pocket"]),
#acordo-online-widget-container:has([id*="pocket"]) {
    /* Container com widget carregado */
}

.acordo-online-fallback[style*="display: none"] {
    display: none !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white-color);
    overflow-x: hidden; /* Prevenir scroll horizontal em dispositivos móveis */
}

/* Focus states removidos - Acessibilidade corrigida nas linhas 2250-2256 */

/* Imagens responsivas globalmente */
img {
    max-width: 100%;
    height: auto;
    background: transparent;
}

/* Banner clicável */
.banner-link {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;
    transition: all 0.3s ease;
}

.banner-link:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 102, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.banner-link:hover::before {
    opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--green-accent);
    border-color: var(--green-accent);
}

.btn-primary:hover {
    background-color: var(--green-accent);
    border-color: var(--green-accent);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #ffaa80; /* Cor de hover mais suave */
    border-color: #ffaa80;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.section-title {
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

/* Header - Barra superior */
header {
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    margin: 0;
}

.top-bar span {
    margin-right: 20px;
    font-size: 14px;
}

.top-bar span i {
    margin-right: 5px;
}

/* Menu principal */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    background-color: white !important;
    transition: all 0.3s ease;
    margin: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    max-height: 42px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link {
    color: var(--primary-color);
}

.navbar-light .navbar-nav > .nav-item > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav > .nav-item > .nav-link:hover::after,
.navbar-light .navbar-nav > .nav-item.active > .nav-link::after {
    width: 80%;
}

/* Dropdown styles removed - navigation now uses simple links */

/* Melhorias no toggler mobile */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 33, 33, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Banner Principal - Nova Implementação */
.main-banner {
    position: relative;
    width: 100%;
    /* Ajuste para usar a proporção 800x333 do novo banner */
    aspect-ratio: 800 / 333;
    height: auto;
    min-height: 0;
    max-height: none;
    background-color: #f5f5f5;
    background-image: url('../images/fotosite.png');
    background-repeat: no-repeat;
    background-position: center 5%;
    background-size: cover;
    background-attachment: scroll;
    overflow: hidden;
    display: block !important;
}

/* Alternativa com caminho absoluto caso o relativo falhe */
.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/fotosite.png');
    background-repeat: no-repeat;
    background-position: center 5%;
    background-size: cover;
    background-attachment: scroll;
    opacity: 1;
    z-index: 1;
}

/* Versão com efeito fixo para navegadores compatíveis */
@supports (background-attachment: fixed) {
    .main-banner {
        background-attachment: fixed;
    }
    .main-banner::before {
        background-attachment: fixed;
    }
}

.main-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    padding: 30px 0;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Page Banner (para páginas internas) */
.page-banner {
    background: linear-gradient(rgba(255, 102, 0, 0.75), rgba(255, 153, 102, 0.75));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 0;
    position: relative;
}

.page-banner h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item.active {
    color: white;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Soluções */
.solution-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin-bottom: 30px;
    height: 220px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--green-accent);
}

.icon-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.icon-container i {
    font-size: 3.5rem;
    color: var(--secondary-color);
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.5;
}

/* Clientes */
.clients-section {
    padding: 60px 0;
}

.clients-slider {
    margin: 30px auto;
    padding: 0 30px;
}

.client-item {
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
    outline: none;
    /* Container FIXO para padronização total */
    width: 170px !important;
    height: 150px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between; /* Distribui espaço entre imagem e texto */
    align-items: center;
    position: relative;
    box-sizing: border-box; /* Garante que padding seja incluído na altura */
    /* Centralização do container no carrossel */
    margin: 0 auto;
}

.client-item img {
    /* Tamanho FIXO padronizado para todos os logos */
    width: 140px !important;
    height: 70px !important;
    margin: 0 auto; /* Centralização horizontal */
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: grayscale(50%) drop-shadow(0px 1px 2px rgba(0,0,0,0.05));
    object-fit: contain !important; /* Mantém proporção sem distorcer */
    object-position: center !important; /* Centraliza a imagem no container */
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    flex-shrink: 0; /* Impede que a imagem encolha */
    /* Centralização perfeita */
    left: auto !important;
    right: auto !important;
    /* Container fixo para padronização total */
    background-color: transparent;
    border: none;
}

.client-name {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0; /* Remove margens automáticas */
    transition: all 0.3s ease;
    opacity: 0.8;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0; /* Impede que o texto encolha */
    padding-top: 10px; /* Adiciona espaçamento consistente */
}

.client-item:hover img {
    opacity: 1;
    filter: grayscale(0%) drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
    transform: scale(1.05);
}

.client-item:hover .client-name {
    color: var(--primary-color);
    opacity: 1;
}

/* Ajustes específicos para GRUPO PREMIUM no CARROSSEL DA HOME */
.clients-slider .client-item img[alt="C6 Bank"],
.clients-slider .client-item img[alt="Flua"],
.clients-slider .client-item img[alt="Mercado Pago"],
.clients-slider .client-item img[alt="Porto Seguro"],
.clients-slider .client-item img[alt="Santander"],
.clients-slider .client-item img[alt="Stellantis"],
.clients-slider .client-item img[alt="Unidas"],
.clients-slider .client-item img[alt="Bradesco"] {
    /* Tamanho PREMIUM específico para o carrossel da home */
    width: 180px !important;
    height: 90px !important;
    transform: scale(1.4) !important; /* 40% maior - DESTAQUE PREMIUM */
    filter: grayscale(20%) drop-shadow(0px 3px 6px rgba(0,0,0,0.15));
}

/* Ajuste BB Consórcios - ligeiramente maior que o padrão, mas menor que premium */
.clients-slider .client-item img[alt="BB Consórcios"] {
    width: 160px !important;
    height: 80px !important;
    transform: scale(1.1) !important;
    filter: grayscale(20%) drop-shadow(0px 3px 6px rgba(0,0,0,0.15));
}

/* Ajuste específico para Bradesco - reduzir fundo branco */
.clients-slider .client-item img[alt="Bradesco"],
.client-logo img[alt="Bradesco"] {
    /* Tenta minimizar o fundo branco usando mix-blend-mode */
    mix-blend-mode: multiply !important;
    background: transparent !important;
    border-radius: 8px !important;
    filter: contrast(1.1) brightness(1.05) !important;
}

/* Ajuste específico para Volkswagen - reduzir fundo branco */
.clients-slider .client-item img[alt="Volkswagen"],
.client-logo img[alt="Volkswagen"] {
    /* Tenta minimizar o fundo branco usando mix-blend-mode */
    mix-blend-mode: multiply !important;
    background: transparent !important;
    border-radius: 8px !important;
    filter: contrast(1.2) brightness(1.1) !important;
}

/* Parceiros */
.partners-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.partners-slider {
    margin: 30px auto;
    padding: 0 30px;
}

.partner-item {
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
    outline: none;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-item img {
    max-height: 70px;
    max-width: 90%;
    width: auto;
    height: auto;
    margin: 0 auto 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%) drop-shadow(0px 1px 2px rgba(0,0,0,0.05));
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.partner-item:hover img {
    opacity: 1;
    filter: grayscale(0%) drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
    transform: scale(1.05);
}

.partner-name {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-item:hover .partner-name {
    color: var(--primary-color);
    opacity: 1;
}

/* Personalização das setas do Slick */
.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slick-prev {
    left: -5px;
}

.slick-next {
    right: -5px;
}

.slick-prev:before, 
.slick-next:before {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 1;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--green-accent);
}

/* Garante alinhamento perfeito dos slides */
.clients-slider .slick-slide {
    height: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.clients-slider .slick-track {
    display: flex;
    align-items: center;
    margin: 0 auto; /* Centraliza o track */
}

.clients-slider .slick-list {
    overflow: hidden;
}

/* Correção específica para centralização do Slick */
.clients-slider .slick-slide > div {
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* Força centralização de todos os elementos */
.clients-slider .slick-slide .client-item {
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}



/* Trabalhe Conosco */
.career-section {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.career-section .section-title {
    color: white;
}

/* FAQ */
.faq-section .card {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section .card-header {
    background-color: white;
    border-bottom: none;
    padding: 0;
}

.faq-section .btn-link {
    color: var(--dark-color);
    font-weight: 700;
    text-decoration: none;
    padding: 20px;
    width: 100%;
    text-align: left;
    height: 80px;
    display: flex;
    align-items: center;
}

.faq-section .btn-link:hover, 
.faq-section .btn-link:focus {
    color: var(--green-accent);
    text-decoration: none;
}

.faq-section .btn-link:not(.collapsed) {
    color: var(--green-accent);
}

.faq-section .card-body {
    padding: 20px;
    background-color: var(--cream-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-media a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-media a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

footer address {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0;
}

footer .footer-logo {
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

footer .footer-logo:hover {
    filter: brightness(1.4);
    transform: scale(1.05);
}

/* Footer Certifications */
.footer-certifications {
    margin-bottom: 20px;
    background: transparent !important;
}

.footer-certifications img {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
}

.certification-logo {
    height: 60px;
    width: auto;
    margin: 0 10px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
}

.certification-logo:hover {
    transform: scale(1.1);
    filter: brightness(1);
    background: transparent !important;
}

/* Regra específica para PNGs de certificação */
img[src*="instituto-geoc.png"] {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 10px !important;
}

/* Garantir que o footer não aplique fundo às imagens */
footer img,
footer .certification-logo {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Garantir que a div pai da certificação também seja transparente */
.footer-certifications,
.footer-certifications a,
.footer-certifications div {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Alinhamento perfeito dos elementos de certificação */
.footer-certifications {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.footer-certifications > * {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Estilos para as certificações no rodapé */
.footer-certifications {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.footer-certifications img {
    vertical-align: middle !important;
    max-height: 60px !important;
    height: auto !important;
    transition: transform 0.3s ease !important;
}

.footer-certifications img:hover {
    transform: scale(1.05) !important;
}

/* Estilos para o Botão de Localização */
.location-button-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.location-button-section::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="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.location-button-section .container {
    position: relative;
    z-index: 2;
}

.location-button {
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    border: 2px solid transparent !important;
}

.location-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    border-color: var(--primary-color) !important;
    background-color: #f8f9fa !important;
    color: var(--primary-color) !important;
}

.location-address {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .location-button {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
    
    .location-button-section h2 {
        font-size: 1.5rem;
    }
    
    .location-address {
        padding: 15px;
    }
}

/* Regra final para garantir transparência total das logos de certificação */
.footer-certifications img[alt*="Instituto Geoc"],
img[alt*="Instituto Geoc"],
a[href*="institutogeoc"] img {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
}

/* Modal de Aviso Antifraude - Design Melhorado */
#avisoAntifraude .modal-dialog {
    max-width: 480px;
    margin: 1.75rem auto;
}

#avisoAntifraude .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

#avisoAntifraude .modal-header {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 50%, #ff8f00 100%);
    border: none;
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
}

#avisoAntifraude .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warning-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,16 2,16" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23warning-pattern)"/></svg>');
    opacity: 0.3;
}

#avisoAntifraude .modal-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

#avisoAntifraude .modal-title i {
    font-size: 1.4rem;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

#avisoAntifraude .close {
    color: #fff;
    opacity: 0.8;
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

#avisoAntifraude .close:hover {
    color: #fff;
    opacity: 1;
    transform: scale(1.1);
}

#avisoAntifraude .modal-body {
    padding: 1.75rem 1.5rem;
    background: #fff;
}

#avisoAntifraude .alert {
    border-radius: 10px;
    border: none;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#avisoAntifraude .alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

#avisoAntifraude .alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    color: #0d47a1;
    border-left: 5px solid #2196f3;
}

#avisoAntifraude .alert-info::before {
    background: linear-gradient(to bottom, #2196f3, #1976d2);
}

#avisoAntifraude .alert-info strong {
    color: #0d47a1;
    font-weight: 700;
}

#avisoAntifraude .alert-danger {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 50%, #ef9a9a 100%);
    color: #b71c1c;
    border-left: 5px solid #f44336;
}

#avisoAntifraude .alert-danger::before {
    background: linear-gradient(to bottom, #f44336, #d32f2f);
}

#avisoAntifraude .alert-danger strong {
    color: #b71c1c;
    font-weight: 700;
}

#avisoAntifraude .modal-footer {
    border: none;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

#avisoAntifraude .btn {
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    min-width: 120px;
}

#avisoAntifraude .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#avisoAntifraude .btn:hover::before {
    left: 100%;
}

#avisoAntifraude .btn-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ff9966 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

#avisoAntifraude .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #ff8533 0%, #ff9966 50%, #ffb380 100%);
}

#avisoAntifraude .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 50%, #adb5bd 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

#avisoAntifraude .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
    background: linear-gradient(135deg, #868e96 0%, #adb5bd 50%, #ced4da 100%);
}

/* Animações aprimoradas para o modal */
#avisoAntifraude.fade .modal-dialog {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(0, -80px) scale(0.9);
    opacity: 0;
}

#avisoAntifraude.show .modal-dialog {
    transform: translate(0, 0) scale(1);
    opacity: 1;
}

#avisoAntifraude .modal-backdrop {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(5px);
}

/* Animação de entrada para o conteúdo */
#avisoAntifraude.show .alert {
    animation: slideInUp 0.6s ease-out;
}

#avisoAntifraude.show .alert:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    #avisoAntifraude .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    #avisoAntifraude .modal-body {
        padding: 1.25rem;
    }
    
    #avisoAntifraude .modal-footer {
        padding: 1rem 1.25rem;
        flex-direction: column;
    }
    
    #avisoAntifraude .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    #avisoAntifraude .btn:last-child {
        margin-bottom: 0;
    }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.cookie-notice p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-notice .btn {
    white-space: nowrap;
    margin: 5px;
}

.cookie-notice .btn-light {
    background-color: white;
    color: var(--dark-color);
}

.cookie-notice .btn-outline-light {
    border-color: white;
    color: white;
}

.cookie-notice .btn-outline-light:hover {
    background-color: white;
    color: var(--dark-color);
}

@media (max-width: 767px) {
    .cookie-notice .col-md-10,
    .cookie-notice .col-md-2 {
        text-align: center !important;
    }
    
    .cookie-notice .col-md-2 {
        margin-top: 10px;
    }
    
    .cookie-notice .btn {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Sobre Nós - Título Principal */
.about-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.about-section .lead {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

/* Sobre Nós - Layout com Imagem e Texto */
.about-section img {
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    display: block;
}

.about-section img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-section .row {
    margin-bottom: 2rem;
}

.about-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

/* Remover bordas brancas - Reset completo para imagens */
.about-section .row.align-items-center .col-md-6:last-child {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden;
    background: transparent !important;
}

.about-section .row.align-items-center .col-md-6:last-child img {
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 0 !important;
    border: none !important;
    outline: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
    max-width: none !important;
    width: 100% !important;
}

/* Reset para Bootstrap img-fluid */
.about-section .img-fluid {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Layout específico para DNR Teleserviços com imagem */
.about-section .row.align-items-center {
    align-items: stretch;
}

.about-section .row.align-items-center .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.about-section .row.align-items-center .col-md-6:first-child {
    padding-right: 2rem;
}

/* Responsividade para layout imagem e texto */
@media (max-width: 768px) {
    .about-section .section-title {
        font-size: 2rem;
    }
    
    .about-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .about-section h3 {
        font-size: 1.5rem;
    }
    
    .about-section .row.align-items-center {
        flex-direction: column-reverse;
    }
    
    .about-section .row.align-items-center .col-md-6:first-child {
        padding-right: 0;
        padding-top: 2rem;
    }
    
    .about-section .row.align-items-center .col-md-6:last-child {
        margin-bottom: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow: hidden;
        background: transparent !important;
    }
    
    .about-section .row.align-items-center .col-md-6:last-child img {
        min-height: 250px;
        width: 100% !important;
        border: none !important;
        outline: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        max-width: none !important;
    }
}

.mission-vision-values .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-vision-values .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--green-accent);
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background-color: var(--light-orange);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-content {
    position: relative;
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content .date {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.timeline-content .date.timeline-date-highlight {
    color: var(--green-accent); /* #c2cb20 */
}

.timeline-content h3 {
    margin-bottom: 15px;
}

.timeline-content:after {
    content: '';
    position: absolute;
    top: 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--green-accent);
    box-shadow: 0 0 0 5px rgba(194, 203, 32, 0.2);
    z-index: 1;
}

.timeline-content.right:after {
    right: -12.5px;
}

.timeline-content.left:after {
    left: -12.5px;
}

.number-item {
    margin-bottom: 20px;
}

.number-item .number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.number-item .label {
    font-size: 1.1rem;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-member .position {
    color: var(--green-accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .bio {
    margin-bottom: 15px;
}

.social-links {
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--cream-color);
    border-radius: 50%;
    line-height: 36px;
    margin: 0 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--green-accent);
    color: white;
}

/* Página de Contato */
.contact-info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    border-top: 3px solid var(--light-orange);
}

.contact-form-section {
    background-color: var(--cream-color);
}

.contact-form-section .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-faq .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-faq .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--green-accent);
}

.quick-faq .card-title {
    color: var(--green-accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Menu Navbar Scrolled */
.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

/* Media Queries */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .timeline:before {
        left: 50px;
    }
    
    .timeline-content.right:after,
    .timeline-content.left:after {
        display: none;
    }
    
    .timeline-content.right,
    .timeline-content.left {
        margin-left: 90px;
        width: calc(100% - 90px);
    }
    
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Dropdown mobile styles removed - navigation now uses simple links */
}

@media (max-width: 768px) {
    .main-banner,
    .page-banner {
        padding: 60px 0;
        text-align: center;
    }
    
    .banner-content {
        padding: 15px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-content.right,
    .timeline-content.left {
        margin-left: 60px;
        width: calc(100% - 60px);
    }
    
    .partner-item {
        height: 150px;
    }
    
    .partner-item img {
        max-height: 60px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
    
    .mvv-card {
        margin-bottom: 30px;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .top-bar span {
        display: block;
        margin-bottom: 5px;
        font-size: 12px;
    }
    
    .top-bar .text-right {
        text-align: left !important;
        margin-top: 10px;
    }
    
    .solution-card {
        margin-bottom: 20px;
    }
    
    .timeline:before {
        display: none;
    }
    
    .timeline-content.right,
    .timeline-content.left {
        margin-left: 0;
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .banner-content .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .client-item, .partner-item {
        height: auto;
        padding: 10px;
    }
    
    .client-item img, .partner-item img {
        max-height: 50px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .social-media a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 375px) {
    .banner-content h1 {
        font-size: 1.5rem;
    }
    
    .top-bar .btn-sm {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin-right: 5px;
    }
    
    .navbar-brand img {
        height: 32px;
    }
    
    .client-item, .partner-item {
        padding: 5px;
    }
    
    .client-item img, .partner-item img {
        max-height: 40px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .navbar-collapse {
        max-height: 200px;
        overflow-y: auto;
    }
    
    .main-banner {
        padding: 30px 0;
    }
    
    .banner-content {
        padding: 10px 0;
    }
}

/* Seção Introdutória */
.intro-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.intro-title {
    font-weight: bold;
    color: #333;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
    text-align: left;
}

/* DNR Digital em Números */
.dnr-numbers-section {
    padding: 60px 0;
    background-color: var(--white-color);
}

.dnr-numbers-section .section-title {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
}

.circle-stat {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    border: 5px solid #ff8533;
}

.circle-content {
    text-align: center;
}

.stat-number {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 15px;
    line-height: 1.3;
}

/* Missão, Visão e Valores */
.mvv-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin-bottom: 30px;
    height: 320px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvv-card p {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Seções - Padronização de espaçamentos */
.intro-section,
.solutions-section,
.mvv-section,
.clients-section,
.faq-section {
    padding: 60px 0;
}

/* Seção de Depoimentos */
.testimonials-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Form label spacer - usado em vez de style="height: 38px;" */
.form-label-spacer {
    height: 38px;
}

/* Acordo Online fallback hidden state */
.acordo-online-fallback-hidden {
    display: none !important;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-avatar i {
    color: white;
    font-size: 1.5rem;
}

.testimonial-author h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.testimonial-author small {
    color: var(--gray-color);
    font-size: 0.85rem;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Responsividade para depoimentos */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card .card-body {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .author-avatar i {
        font-size: 1.2rem;
    }
}

/* Logo no footer - mesma do topo */
.footer-logo {
    height: 36px !important;
    width: auto;
}

/* Melhorias gerais de UX */
.btn {
    font-weight: 600;
    border-radius: 25px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CSS para cards das localizações */
.location-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px !important;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    flex-shrink: 0;
}

.location-address {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Padronização dos botões das localizações */
.location-button {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    padding: 18px 25px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    background-color: white !important;
    color: #333 !important;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    letter-spacing: 0.5px !important;
}

.location-button:hover {
    background-color: #f8f9fa !important;
    color: #0056b3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
}

/* Responsividade para cards */
@media (max-width: 768px) {
    .location-card {
        margin-bottom: 20px;
        min-height: 280px;
    }
    
    .location-button {
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 576px) {
    .location-card {
        min-height: 260px;
    }
    
    .location-button {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Cards com hover effect */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Sections padding */
.py-5 {
    padding: 60px 0;
}

/* Animações suaves para elementos */
.solution-card,
.client-item,
.partner-item,
.mvv-card {
    transition: all 0.3s ease;
}

/* Melhorias na tipografia */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Melhorias no banner principal */
.main-banner {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* manter o preenchimento total sem distorção */
    position: relative;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias na acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states melhorados */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Preloader (opcional) */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

/* Validador de Números Oficiais */
.number-validator-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.number-validator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="validator-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,102,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23validator-pattern)"/></svg>');
    opacity: 0.5;
}

.validator-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.validator-card .fa-shield-alt {
    color: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(255, 102, 0, 0.3));
}

.validator-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.validator-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.validator-form .btn {
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.validator-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.validation-result {
    animation: slideInUp 0.5s ease-out;
}

.validation-result .alert {
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.validation-result .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 5px solid #28a745;
}

.validation-result .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.validation-result .alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-left: 5px solid #ffc107;
}

.official-numbers {
    background: linear-gradient(135deg, #f1f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.official-numbers h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 2rem;
}

.numbers-list h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.numbers-list ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 0.5rem;
}

.numbers-list ul li:hover {
    background-color: rgba(255, 102, 0, 0.05);
    transform: translateX(5px);
}

.numbers-list ul li i {
    width: 20px;
    text-align: center;
}

.official-numbers .alert-warning {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 1px solid #ffb300;
    border-radius: 12px;
    color: #e65100;
}

/* Estilos específicos para o Modal do Validador */
#validadorNumeros .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Posicionamento: subir um pouco o modal do validador */
#validadorNumeros .modal-dialog.modal-dialog-centered {
    align-items: flex-start;
}

#validadorNumeros .modal-dialog {
    margin: 1.25rem auto;
    max-width: 760px;
    width: 92%;
}

#validadorNumeros .modal-body {
    overflow-y: auto;
}

@media (max-width: 576px) {
    #validadorNumeros .modal-dialog {
        width: 95%;
        margin: 1rem auto;
        max-width: none;
    }
    #validadorNumeros .modal-content {
        max-height: 90vh;
    }
}

#validadorNumeros .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

#validadorNumeros .modal-title {
    font-weight: 700;
}

#validadorNumeros .close {
    color: white;
    opacity: 0.8;
    text-shadow: none;
}

#validadorNumeros .close:hover {
    color: white;
    opacity: 1;
}

#validadorNumeros .official-numbers {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
}

#validadorNumeros .small-numbers li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

#validadorNumeros .small-numbers li:hover {
    background-color: rgba(255, 102, 0, 0.05);
    transform: translateX(3px);
}

/* Responsividade do Modal Validador */
@media (max-width: 768px) {
    #validadorNumeros .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    #validadorNumeros .validator-form .row {
        margin: 0;
    }
    
    #validadorNumeros .validator-form .col-md-8,
    #validadorNumeros .validator-form .col-md-4 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    #validadorNumeros .official-numbers {
        padding: 1rem;
        max-height: 250px;
    }
    
    #validadorNumeros .official-numbers .row {
        margin: 0;
    }
    
    #validadorNumeros .official-numbers .col-md-6 {
        padding: 0;
        margin-bottom: 1rem;
    }
}

/* Responsividade do Validador */
@media (max-width: 768px) {
    .validator-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .validator-form .row {
        margin: 0;
    }
    
    .validator-form .col-md-8,
    .validator-form .col-md-4 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .validator-form .btn-block {
        width: 100%;
    }
    
    .official-numbers {
        padding: 1.5rem;
    }
    
    .official-numbers .row {
        margin: 0;
    }
    
    .official-numbers .col-md-6 {
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .numbers-list ul li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
}

/* Estilo para a lista da seção Sobre Nós */
.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.about-list li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* Cores específicas para ícones das redes sociais */
.social-media .fab.fa-facebook-f {
    color: #1877F2 !important; /* Azul oficial do Facebook */
}

.social-media .fab.fa-instagram {
    color: #E4405F !important; /* Rosa oficial do Instagram */
}

.social-media .fab.fa-linkedin-in {
    color: #0A66C2 !important; /* Azul oficial do LinkedIn */
}

/* Efeito hover para as redes sociais */
.social-media a:hover .fab.fa-facebook-f {
    color: #166FE5 !important; /* Tom mais escuro no hover */
}

.social-media a:hover .fab.fa-instagram {
    color: #C13584 !important; /* Tom mais escuro no hover */
}

.social-media a:hover .fab.fa-linkedin-in {
    color: #004182 !important; /* Tom mais escuro no hover */
}



/* Seção de Responsabilidade Social e Ambiental */
.social-responsibility-section {
    background-color: #f8f9fa;
}

.responsibility-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.responsibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.responsibility-card h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.responsibility-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.responsibility-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.responsibility-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Estilos utilitários para remover estilos inline */
.icon-primary-color {
    color: #ff6600 !important;
}

.text-primary-color {
    color: #ff6600 !important;
}

.icon-large {
    font-size: 3rem !important;
}

.icon-xlarge {
    font-size: 4rem !important;
}

.mvv-title-color {
    color: #ff6600 !important;
}

.validation-result-hidden {
    display: none !important;
}

.validation-result-visible {
    display: block !important;
}

.success-message-hidden {
    display: none !important;
}

.success-message-visible {
    display: block !important;
}

.client-row-negative-margin {
    margin-left: -25px;
    margin-right: -25px;
}

/* Responsividade para cards de responsabilidade */
@media (max-width: 768px) {
    .responsibility-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .responsibility-list li {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }
}


