/* ===== CSS VARIABLES ===== */
:root {
    /* Cores da paleta UCS Engenharia */
    --primary-color: #172D44;      /* Azul escuro */
    --secondary-color: #489FB5;    /* Azul claro */
    --light-color: #F8F9FA;        /* Cinza claro */
    --white-color: #FFFFFF;        /* Branco */
    --dark-color: #212529;         /* Preto suave */
    --gray-color: #6C757D;         /* Cinza médio */
    --text-color: #495057;         /* Texto padrão */
    --text-light: #6C757D;         /* Texto claro */
    --border-color: #E0E4E8;       /* Cor de borda */
    --accent-light: #E8F4F8;       /* Cor de destaque leve */
    
    /* Gradientes */
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    
    /* Tipografia profissional */
    --font-primary: 'Inter', 'Montserrat', sans-serif;
    --font-secondary: 'Inter', 'Roboto', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.25;
    --line-height-relaxed: 1.625;
    
    /* Tamanhos e formas */
    --border-radius: .5rem;
    --border-radius-lg: .8rem;
    --border-radius-full: 50%;
    
    /* Sombras */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    /* Sistema de espaçamentos consistente */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ===== TIPOGRAFIA MODERNA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-4);
    color: var(--dark-color);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: var(--font-size-5xl); 
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    letter-spacing: -0.05em;
}
h2 { 
    font-size: var(--font-size-4xl); 
    font-weight: var(--font-weight-bold);
}
h3 { 
    font-size: var(--font-size-3xl); 
    font-weight: var(--font-weight-semibold);
}
h4 { 
    font-size: var(--font-size-2xl); 
    font-weight: var(--font-weight-semibold);
}
h5 { 
    font-size: var(--font-size-xl); 
    font-weight: var(--font-weight-medium);
}
h6 { 
    font-size: var(--font-size-lg); 
    font-weight: var(--font-weight-medium);
}

p {
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-color);
}

.lead {
    font-size: var(--font-size-xl);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: var(--space-6);
}


/* ===== CLASSES UTILITÁRIAS DE LAYOUT ===== */
.bg-light {
    background-color: var(--light-color);
}

.bg-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.bg-white {
    background-color: var(--white-color);
}

.text-center { text-align: center; }

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    font-size: var(--font-size-base);
    line-height: 1.5;
}

.btn:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn-cta {
    background: var(--secondary-color);
    color: var(--white-color);
    font-weight: 700;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ===== NAVEGAÇÃO MODERNA ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: var(--space-4) 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    transition: var(--transition);
}

.navbar-brand:hover img {
    filter: brightness(0.8);
}

.navbar-brand img {
    transition: var(--transition);
    height: 45px;
    filter: brightness(0.9);
}

.nav-btn {
    color: var(--dark-color) !important;
    font-weight: var(--font-weight-medium);
    margin: 0 var(--space-2);
    padding: var(--space-2) var(--space-4) !important;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    font-size: var(--font-size-sm);
    letter-spacing: 0.025em;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    background: var(--accent-light);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.nav-btn:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn.active {
    color: var(--primary-color) !important;
    font-weight: var(--font-weight-semibold);
}

.nav-btn.active::before {
    opacity: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== SEÇÃO HERO ===== */
.hero-section {
    position: relative;
    min-height: 80vh;
    padding: 6rem 1rem;
    background: url('../img/bg-ucs-engenharia-intro-2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white-color);
    padding: 6rem 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: var(--white-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-12);
    font-weight: 400;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    padding: 2rem 0;
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.025em;
}

.hero-btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white-color);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: var(--white-color);
    border: none;
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.025em;
}

.hero-btn-secondary:hover {
    background: var(--accent-light);
    color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ===== COMPONENTES DE CONTEÚDO ===== */
.service-card {
    background: var(--white-color);
    padding: var(--space-8);
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: var(--transition-slow);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(72, 159, 181, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.service-icon i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white-color);
}

.service-card h4 {
    font-size: var(--font-size-xl);
    color: var(--dark-color);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
}

/* ===== SEÇÕES MODERNAS ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section.bg-light {
    background: var(--light-color);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: bold;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.025em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ===== COMPONENTES DE ESTATÍSTICA MODERNOS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    margin: var(--space-12) 0;
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.stat-item:hover {
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--space-2);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ===== COMPONENTES DE OBJETIVO ===== */
.objective-card {
    display: flex;
    align-items: flex-start;
    padding: var(--space-6);
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xs);
    margin-bottom: var(--space-6);
    transition: var(--transition);
}

.objective-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.objective-icon {
    width: 3.3rem;
    height: 3.3rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-6);
    flex-shrink: 0;
}

.objective-icon i {
    color: var(--white-color);
    font-size: 1.5rem;
}

.objective-content h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
}

.objective-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* ===== POR QUE CONTRATAR CARDS ===== */
.why-card {
    background: var(--white-color);
    padding: var(--space-8);
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: var(--transition-slow);
    border: 2px solid rgba(72, 159, 181, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.why-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.why-icon i {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--white-color);
}

.why-card h4 {
    font-size: var(--font-size-xl);
    color: var(--dark-color);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-semibold);
}

.why-card p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: var(--line-height-relaxed);
}

/* ===== COMPONENTES DE CONTATO ===== */
.contact-form-wrapper {
    background: var(--white-color);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: var(--white-color);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--light-color);
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-4);
    flex-shrink: 0;
}

.contact-item .icon i {
    color: var(--white-color);
    font-size: var(--font-size-xl);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-lg);
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

#contact-map iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 450px;
}

.heading-primary {
    color: var(--primary-color);
    font-size: var(--font-size-3xl);
    line-height: 1.2;
    margin-bottom: var(--space-8);
}

/* ===== SEÇÃO SOBRE ===== */
.about-content {
    padding: var(--space-8);
}

.about-text {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    color: var(--text-color);
}

.objectives-section {
    padding: var(--space-8) 0;
}

.objectives-title {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--space-8);
    font-weight: 700;
    position: relative;
    padding-bottom: var(--space-4);
}

.objectives-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 4rem 0 var(--space-8);
    margin-top: auto;
    border-top: 4px solid var(--secondary-color);
}

footer .navbar-brand img {
    filter: brightness(1.2);
    height: 50px;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
}

.footer-logo {
    transition: var(--transition);
}

footer .navbar-brand:hover .footer-logo {
    filter: brightness(1.4);
}

.footer-title {
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: var(--space-6);
    font-size: var(--font-size-lg);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: var(--space-3);
}

footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

footer ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: var(--space-4);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: var(--border-radius-full);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-size-lg);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    margin-top: var(--space-8);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.icon-spacing {
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== CLASSES UTILITÁRIAS ADICIONAIS ===== */
.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.gap-4 {
    gap: var(--space-4) !important;
}

.gap-5 {
    gap: var(--space-5) !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.flex-direction-column {
    flex-direction: column !important;
}

.text-align-center {
    text-align: center !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.h5 {
    font-size: var(--font-size-xl) !important;
    font-weight: 600 !important;
}

.list-unstyled {
    list-style: none;
    padding-left: 0;
}

/* ===== MELHORIAS DE ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== LOADING E ESTADOS ===== */

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg);     }
}

/* ===== FAQ MODERNO ===== */
.accordion {
    --bs-accordion-border-radius: var(--border-radius);
    --bs-accordion-border-color: var(--border-color);
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: var(--space-4);
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background: var(--white-color);
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(72, 159, 181, 0.1);
    transform: translateY(-2px);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: var(--white-color);
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
    padding: var(--space-6) var(--space-8);
    border: none;
    box-shadow: none !important;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.accordion-button:hover:not(.collapsed) {
    background: var(--secondary-color);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white-color);
}

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    filter: brightness(0) saturate(100%) invert(21%) sepia(18%) saturate(1467%) hue-rotate(183deg) brightness(95%) contrast(89%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: var(--space-8);
    background: var(--light-color);
    color: var(--text-color);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    border-top: 1px solid var(--border-color);
}

/* ===== SEÇÃO DE DESTAQUE (HIGHLIGHT) ===== */
.highlight-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.highlight-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    z-index: 0;
}

.highlight-section .container {
    position: relative;
    z-index: 1;
}

.highlight-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: var(--space-6);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.highlight-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
}

.btn-highlight-primary {
    background: var(--white-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 2px solid var(--white-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.025em;
}

.btn-highlight-primary:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.additional-services {
    background: var(--white-color);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(72, 159, 181, 0.2);
    margin-top: var(--space-8);
}

.additional-services h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.additional-service-item {
    display: flex;
    align-items: center;
    padding: var(--space-4);
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.additional-service-item:hover {
    background: var(--white-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.additional-service-item i {
    color: var(--secondary-color);
    font-size: var(--font-size-lg);
    min-width: 24px;
}

.additional-service-item span {
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.5;
}

/* ===== WHATSAPP BUTTON MODERNO ===== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    z-index: 1030;
    animation: fadeInUp 0.8s ease-out 2s both;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white-color);
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: var(--border-radius-full);
    opacity: 0;
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.whatsapp-float a:hover::before {
    opacity: 1;
}

.whatsapp-float a i {
    animation: pulse 3s infinite;
    z-index: 1;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVIDADE MODERNA ===== */

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .highlight-title {
        font-size: var(--font-size-4xl);
    }
    
    .highlight-subtitle {
        font-size: var(--font-size-xl);
    }
    
    .highlight-cta {
        flex-direction: column;
    }
    
    .btn-highlight-primary,
    .btn-highlight-secondary {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: var(--space-3) 0;
    }
    
    .hero-section {
        padding-top: 70px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: var(--space-4);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-6);
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-base);
        justify-content: center;
    }
    
    #contact-map iframe {
        height: 300px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item .icon {
        margin-right: 0;
        margin-bottom: var(--space-3);
    }
    
    .highlight-title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-4);
    }
    
    .highlight-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-4);
    }
    
    .highlight-section {
        padding: 5rem 0;
    }
    
    .highlight-cta {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .btn-highlight-primary,
    .btn-highlight-secondary {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: var(--space-6);
    }
    
    .whatsapp-float {
        bottom: var(--space-5);
        right: var(--space-5);
    }
    
    .whatsapp-float a {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .btn-cta {
        padding: var(--space-2) var(--space-4);
        font-size: var(--font-size-sm);
        margin-left: var(--space-2);
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .navbar-brand img {
        height: 35px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .service-card {
        padding: var(--space-5);
    }
    
    .accordion-button {
        padding: var(--space-4) var(--space-5);
        font-size: var(--font-size-base);
    }
    
    .accordion-body {
        padding: var(--space-5);
    }
}