/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===== PALETA DE CORES MODERNA E CLARA ===== */
    --primary-color: #1976d2;        /* Azul Principal */
    --secondary-color: #43a047;      /* Verde Secundário */
    --accent-color: #1565c0;         /* Azul Hover/Destaque */
    --light-blue: #e3f2fd;          /* Azul Claro Suave */
    --light-green: #e8f5e9;         /* Verde Claro Suave */
    --neutral-gray: #f5f5f5;        /* Cinza Neutro */
    --text-primary: #212121;        /* Texto Primário */
    --text-secondary: #616161;      /* Texto Secundário */
    --white: #ffffff;
    --light-color: #f8f9fa;
    
    /* Cores de apoio */
    --success-color: #43a047;
    --info-color: #1976d2;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    
    /* Gradientes modernos */
    --gradient-primary: linear-gradient(135deg, #1976d2 0%, #43a047 100%);
    --gradient-light: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
    --gradient-hero: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #e8f5e9 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    
    /* Sistema de cores neutras */
    --dark-color: var(--text-primary);
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Sombras */
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-xl: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    
    /* Animações (importadas do animations.css) */
    --animation-duration-fast: 0.2s;
    --animation-duration-normal: 0.3s;
    --animation-duration-slow: 0.5s;
    --animation-easing-ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Importar fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    scroll-behavior: smooth;
    font-weight: 400;
}

/* Tipografia moderna */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.lead {
    font-weight: 400;
    color: var(--text-secondary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
#header {
    background: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(25, 118, 210, 0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
}

#header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(25, 118, 210, 0.15);
}

.navbar-brand img {
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.25rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:active,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background-color: var(--primary-color);
}

/* ===== SEÇÃO HERO ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Overlay escuro para melhor contraste com texto */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff !important;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* ===== BOTÕES MODERNOS ===== */
.btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.btn-primary::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 ease;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
    color: var(--white);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--secondary-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.btn-secondary:hover {
    background: #388e3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== SEÇÕES GERAIS ===== */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== SEÇÕES COM FUNDOS ALTERNADOS ===== */
.bg-light-blue {
    background: var(--light-blue) !important;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(25, 118, 210, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(25, 118, 210, 0.02) 0%, transparent 50%);
}

.bg-light-green {
    background: var(--light-green) !important;
    background-image: 
        radial-gradient(circle at 20% 10%, rgba(67, 160, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(67, 160, 71, 0.02) 0%, transparent 50%);
}

.bg-neutral {
    background: var(--neutral-gray) !important;
    background-image: 
        linear-gradient(135deg, rgba(245, 245, 245, 0.8) 0%, rgba(250, 250, 250, 0.9) 100%);
}

/* ===== SEÇÃO EMPRESA ===== */
#empresa {
    background: var(--white);
}

.feature-item {
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-card);
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.02) 0%, rgba(67, 160, 71, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.12);
    border-color: var(--primary-color);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

/* ===== SEÇÃO SERVIÇOS ===== */
#servicos {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Garantir visibilidade da seção de serviços */
#servicos .section-title,
#servicos .lead,
#servicos .service-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.04), transparent);
    transition: left 0.8s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(25, 118, 210, 0.15);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 3.5rem;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 1.25rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
}

.service-card:hover .service-icon i {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(25, 118, 210, 0.4);
}

.service-card h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== TABELA DE ROTAS MODERNA ===== */
.table-responsive {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.table-primary {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
}

.table-primary th {
    border: none;
    padding: 1.25rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 1rem;
    border-top: 1px solid rgba(25, 118, 210, 0.1);
    font-weight: 500;
    color: var(--text-secondary);
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: rgba(25, 118, 210, 0.02);
}

.table-hover tbody tr {
    transition: all 0.3s ease;
}

.table-hover tbody tr:hover {
    background-color: var(--light-blue);
    transform: scale(1.01);
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
#depoimentos {
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(67, 160, 71, 0.08);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(67, 160, 71, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px rgba(67, 160, 71, 0.15);
    transform: translateY(-12px) scale(1.02);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.95);
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.3);
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    transition: all var(--animation-duration-normal) var(--animation-easing-ease-out);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-content small {
    color: var(--gray-600);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1rem;
}

/* ===== SEÇÃO CONTATO ===== */
#contato {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(25, 118, 210, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form:hover {
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.12);
    transform: translateY(-5px);
}

.form-control,
.form-select {
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: all var(--animation-duration-normal) var(--animation-easing-ease-out);
    position: relative;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 155, 118, 0.25);
    transform: translateY(-1px);
}

/* Estados de validação aprimorados */
.form-control.is-valid {
    border-color: var(--secondary-color);
    background-color: rgba(74, 124, 89, 0.05);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

/* Animação de shake para campos inválidos */
@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

.form-control.shake {
    animation: fieldShake 0.3s ease-in-out;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all var(--animation-duration-fast) var(--animation-easing-ease-out);
    position: relative;
}

/* Estados do label baseado na validação */
.mb-3:has(.form-control.is-valid) .form-label {
    color: var(--secondary-color);
}

.mb-3:has(.form-control.is-invalid) .form-label {
    color: #dc3545;
}

/* Indicador visual no label */
.form-label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--animation-duration-normal) var(--animation-easing-ease-out);
}

.mb-3:has(.form-control:focus) .form-label::after {
    width: 100%;
}

.contact-info {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info:hover {
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.12);
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 118, 210, 0.05);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.contact-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.map-container {
    margin-top: 2rem;
}

.map-container img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
}

.map-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
}

/* ===== RODAPÉ MODERNO CLARO ===== */
.footer {
    background: var(--neutral-gray) !important;
    background-image: 
        linear-gradient(135deg, rgba(245, 245, 245, 0.9) 0%, rgba(250, 250, 250, 0.95) 100%);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    border-top: 1px solid rgba(25, 118, 210, 0.1);
}

.footer-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-slogan {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-divider {
    border-color: rgba(25, 118, 210, 0.2);
    margin: 2.5rem 0 1.5rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-policy-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-policy-link:hover {
    color: var(--primary-color);
}

/* Garantir visibilidade do footer mesmo com animações */
.footer * {
    opacity: 1 !important;
}

.footer .animate-fade-in-up:not(.in-view) {
    opacity: 1 !important;
    transform: none !important;
}

/* Fallback para elementos do footer que podem estar ocultos por animações */
.footer .col-lg-4,
.footer .footer-title,
.footer .footer-slogan,
.footer .footer-links,
.footer .footer-contact,
.footer .footer-copyright,
.footer .footer-policy-link {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== RESPONSIVIDADE APRIMORADA ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-icon i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        padding: 1rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* ===== ANIMAÇÕES SUAVES E MODERNAS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== EFEITOS HOVER MODERNOS ===== */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-bounce {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hover-bounce:hover {
    transform: scale(1.1) translateY(-3px);
}

/* ===== GARANTIR VISIBILIDADE DAS SEÇÕES ===== */
/* Fallback para garantir que o conteúdo seja sempre visível */
section {
    opacity: 1 !important;
    visibility: visible !important;
}

section .section-title,
section .lead,
section .container > .row,
section .service-card,
section .testimonial-card,
section .feature-item {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Permitir animações apenas quando explicitamente ativadas */
.animate-fade-in-up:not(.in-view),
.animate-fade-in-down:not(.in-view),
.animate-slide-in-left:not(.in-view),
.animate-slide-in-right:not(.in-view),
.animate-scale-in:not(.in-view),
.animate-fade-in:not(.in-view) {
    opacity: 0.1 !important;
    transition: opacity 0.3s ease;
}

.animate-fade-in-up.in-view,
.animate-fade-in-down.in-view,
.animate-slide-in-left.in-view,
.animate-slide-in-right.in-view,
.animate-scale-in.in-view,
.animate-fade-in.in-view {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== UTILITÁRIOS MODERNOS ===== */
.bg-light {
    background-color: var(--light-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--secondary-color) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* ===== SELEÇÃO DE TEXTO ===== */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

.orcamento-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

    .orcamento-modal .modal-content {
        background: white;
        padding: 25px;
        border-radius: 8px;
        width: 90%;
        max-width: 500px;
        position: relative;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .orcamento-modal .modal-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

        .orcamento-modal .modal-buttons button {
            width: 100%;
            padding: 10px;
            font-size: 16px;
        }

    .orcamento-modal .btn-close {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
    }