/* ===== VARIÁVEIS E ESTILOS GLOBAIS ===== */
:root {
    --primary: #0A1A33; /* Azul do header */
    --primary-dark: #0a0f1e; /* Azul escuro do footer */
    --primary-light: #2c5aa0;
    --secondary: #1a73e8;
    --secondary-light: #4d94ff;
    --accent: #f8b500;
    --accent-light: #ffd166;
    --light: #f5f7fa;
    --dark: #1f1f1f;
    --gray: #5f6368;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --success: #38a169;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 26, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 26, 51, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color:#ffffff;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary); /* azul da logo */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(96, 165, 250, 0.5) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled {
    background: var(--primary); /* mantém uniforme ao rolar */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(96, 165, 250, 0.2);
}

.header.scrolled::before {
    opacity: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0; /* Reduzido o padding vertical */
    transition: padding 0.3s ease;
}

.header.scrolled .header-content {
    padding: 10px 0; /* Reduzido quando scrolled */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.logo img {
    max-width: 115px; /* Reduzido de 180px para 160px */
    border-radius: 8px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 6px; /* Reduzido o gap entre os itens */
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 14px; /* Reduzido de 15px para 14px */
    padding: 8px 16px; /* Reduzido o padding */
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav a:hover::before {
    opacity: 1;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 6px; /* Ajustado para acompanhar o padding menor */
    left: 16px; /* Ajustado para acompanhar o padding menor */
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav a:hover {
    color: white;
}

.nav a:hover::after {
    width: calc(100% - 32px); /* Ajustado para o padding menor */
}

.nav a.active {
    color: white;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.nav a.active::after {
    width: calc(100% - 32px); /* Ajustado para o padding menor */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    padding: 8px 10px; /* Reduzido o padding */
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
}

/* Responsividade para telas menores */
@media (max-width: 1200px) {
    .nav ul {
        gap: 4px;
    }
    
    .nav a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .logo img {
        max-width: 120px;
    }
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-width: 120px;
    }
    
    .header-content {
        padding: 8px 0;
    }
    
    .mobile-menu-toggle {
        padding: 6px 8px;
        font-size: 18px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1f3a 0%, #1a3a5f 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/FachadaMurilo4.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 31, 58, 0.85) 0%,
        rgba(26, 58, 95, 0.8) 50%,
        rgba(66, 133, 244, 0.15) 100%);
}

.hero-graphic {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(66, 133, 244, 0.1) 0%,
        rgba(66, 133, 244, 0.05) 30%,
        transparent 70%);
    border-radius: 50%;
    z-index: 2;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(66, 133, 244, 0.15) 0%,
        rgba(66, 133, 244, 0.05) 40%,
        transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(66, 133, 244, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(66, 133, 244, 0.05) 0%, transparent 40%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(66, 133, 244, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 133, 244, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-badge span {
    color: #4285f4;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge span::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #4285f4;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content h1 {
    font-size:35px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.4s;
}

.hero-content h1 .highlight {
    color: #4285f4;
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(66, 133, 244, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
    justify-content: center;
}

.btn-hero-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-hero-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;
}

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

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #3367d6, #2b5cc1);
}

.btn-hero-secondary {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(66, 133, 244, 0.4);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.btn-hero-secondary:hover {
    background: rgba(66, 133, 244, 0.15);
    transform: translateY(-3px);
    border-color: rgba(66, 133, 244, 0.6);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
}

.hero-stats {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1s;
}

.stat {
    text-align: center;
    position: relative;
    min-width: 120px;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #4285f4;
    border-radius: 2px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #4285f4;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #4285f4;
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-graphic {
        width: 500px;
        height: 500px;
        right: -150px;
    }
    
    .hero-graphic::before {
        width: 300px;
        height: 300px;
    }
    
    /* Ajustes de fonte para 1200px */
    .hero-content h1 {
        font-size: 60px;
    }
    
    .hero-content > p {
        font-size: 19px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px; /* Reduzido de 52px */
    }
    
    .hero-content > p {
        font-size: 17px; /* Reduzido de 18px */
    }
    
    .hero-graphic {
        width: 400px;
        height: 400px;
        right: -200px;
    }
    
    .hero-graphic::before {
        width: 250px;
        height: 250px;
    }
    
    .hero-stats {
        gap: 50px; /* Reduzido de 60px */
    }
    
    .stat-number {
        font-size: 44px; /* Reduzido de 50px */
    }
    
    .stat-label {
        font-size: 13px; /* Reduzido de 14px */
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 60px; /* Reduzido padding */
    }
    
    .hero-content h1 {
        font-size: 36px; /* Reduzido de 40px */
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }
    
    .hero-content > p {
        font-size: 16px; /* Reduzido de 17px */
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .hero-graphic {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px; /* Reduzido de 15px */
        margin-bottom: 50px; /* Reduzido de 60px */
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px; /* Reduzido de 16px 32px */
        width: 100%;
        max-width: 280px; /* Reduzido de 300px */
        margin: 0 auto;
        font-size: 14px; /* Reduzido de 15px */
    }
    
    .hero-stats {
        gap: 35px; /* Reduzido de 40px */
        padding-top: 40px; /* Reduzido de 50px */
    }
    
    .stat {
        min-width: 90px; /* Reduzido de 100px */
    }
    
    .stat-number {
        font-size: 34px; /* Reduzido de 40px */
    }
    
    .stat-label {
        font-size: 12px; /* Reduzido de 13px */
    }
    
    .hero-scroll-indicator {
        bottom: 25px; /* Reduzido de 30px */
    }
    
    .hero-badge span {
        font-size: 12px; /* Reduzido de 13px */
    }
    
    .hero-badge {
        margin-bottom: 25px; /* Adicionado */
        padding: 6px 18px; /* Reduzido */
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0 50px; /* Reduzido de 90px 0 70px */
    }
    
    .hero-content {
        padding: 0 18px; /* Reduzido de 20px */
    }
    
    .hero-content h1 {
        font-size: 30px; /* Reduzido de 34px */
        margin-bottom: 16px;
    }
    
    .hero-content > p {
        font-size: 15px; /* Reduzido de 16px */
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .hero-badge {
        padding: 5px 16px; /* Reduzido de 8px 20px */
        margin-bottom: 18px;
    }
    
    .hero-badge span {
        font-size: 11px; /* Reduzido de 12px */
    }
    
    .hero-stats {
        gap: 25px; /* Reduzido de 30px */
        padding-top: 35px; /* Reduzido de 40px */
    }
    
    .stat {
        min-width: 80px; /* Reduzido de 90px */
    }
    
    .stat-number {
        font-size: 28px; /* Reduzido de 34px */
    }
    
    .stat-label {
        font-size: 11px; /* Reduzido de 12px */
        letter-spacing: 0.5px;
    }
    
    .hero-cta {
        margin-bottom: 40px; /* Reduzido de 50px */
        gap: 10px; /* Reduzido */
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 13px; /* Reduzido de 14px */
        padding: 12px 24px; /* Reduzido de 14px 28px */
        max-width: 250px; /* Reduzido de 280px */
    }
}

@media (max-width: 400px) {
    .hero {
        padding: 60px 0 40px; /* Reduzido */
    }
    
    .hero-content {
        padding: 0 15px; /* Reduzido */
    }
    
    .hero-content h1 {
        font-size: 26px; /* Reduzido de 30px */
        line-height: 1.1;
        margin-bottom: 14px;
    }
    
    .hero-content > p {
        font-size: 14px; /* Reduzido de 15px */
        margin-bottom: 22px;
        line-height: 1.3;
    }
    
    .hero-stats {
        gap: 15px; /* Reduzido de 20px */
        padding-top: 30px; /* Reduzido */
    }
    
    .stat {
        min-width: 70px; /* Reduzido de 80px */
    }
    
    .stat-number {
        font-size: 24px; /* Reduzido de 30px */
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 10px; /* Reduzido de 11px */
        letter-spacing: 0.3px;
    }
    
    .hero-badge {
        padding: 4px 14px; /* Reduzido */
        margin-bottom: 16px;
    }
    
    .hero-badge span {
        font-size: 10px; /* Reduzido de 11px */
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 12px; /* Reduzido de 13px */
        padding: 10px 20px; /* Reduzido de 12px 24px */
        max-width: 220px; /* Reduzido de 250px */
    }
}

/* Para telas muito pequenas (iPhone SE, etc.) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content > p {
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat {
        min-width: 65px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .hero-badge span {
        font-size: 9px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 11px;
        padding: 9px 18px;
    }
}
    
    .hero-stats {
        gap: 30px;
        padding-top: 40px;
    }
    
    .stat {
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .hero-cta {
        margin-bottom: 50px;
    }

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@keyframes scrollDown {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 16px);
        opacity: 0;
    }
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .section-label {
    color: #ffffff;
}

.services-section h2 {
    color: white;
}

.services-section > .container > p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.25s; }
.service-card:nth-child(5) { transition-delay: 0.3s; }
.service-card:nth-child(6) { transition-delay: 0.35s; }

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(96, 165, 250, 0.3);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 1.6rem;      /* menor */
    width: 65px;            /* antes 100px */
    height: 65px;           /* antes 100px */
    margin: 0 auto 22px;    /* espaçamento maior abaixo do ícone */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    color: white;
}

.service-icon i {
     font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.5), transparent);
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 
        0 16px 40px rgba(37, 99, 235, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-top: 12px;   /* mais espaço pra respirar */
    margin-bottom: 14px;
    color: white;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #60a5fa;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== ABOUT SECTION ===== */
/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    color: #60a5fa;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #fff;
    font-size: 42px;
    margin-top: 10px;
    font-weight: 800;
}

.section-header p {
    color: #ffffffb7;
    max-width: 650px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* GRID */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
}

/* CARD BASE */
.category-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    position: relative;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    border-color: rgba(96, 165, 250, 0.3);
}

/* IMAGEM */
.category-image {
    position: relative;
    height: 50vh; /* imagem ocupa 40% da altura da tela */
    min-height: 550px;
    max-height: 700px;
    overflow: hidden;
}

.featured .category-image {
    height: 50vh; /* destaque ainda maior */
    min-height: 420px;
    max-height: 850px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.07);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6));
}

/* CARD CONTENT */
.category-content {
    padding: 30px;
    text-align: left;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.category-card p {
    color: #ffffffb8;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ÍCONES */
.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.category-icon i {
    color: white;
    font-size: 32px;
}

/* BOTÃO */
.btn-category {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    text-decoration: none;
    gap: 10px;
    transition: all .3s ease;
}

.btn-category:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    transform: translateX(8px);
}

/* CARD DESTACADO */
.featured {
    grid-column: span 2;
    background: rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
    .featured {
        grid-column: span 1;
    }
}


/* ===== WHY CHOOSE US SECTION ===== */
/* ===== WHY-US SECTION (Tema Azul com textos brancos) ===== */
.why-us-section {
    padding: 120px 0;
    background: var(--primary); /* azul principal */
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.why-us-section .section-label {
    color: #ffffff;
}

.why-us-section h2 {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* CARD */
.feature {
    text-align: center;
    padding: 48px 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06); /* translúcido */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

/* ANIMAÇÃO */
.feature.animate {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

/* ICON */
.feature-icon {
    font-size: 3rem;
    color: #ffffff; /* ícone branco */
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.15);
    margin-left: auto;
    margin-right: auto;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2.6rem;
}

/* HOVER ICON */
.feature:hover .feature-icon {
    background: #ffffff;
    color: var(--primary); /* ícone azul no hover para contraste bonito */
    transform: rotate(-6deg) scale(1.12);
    box-shadow:
        0 12px 32px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(0, 0, 0, 0.15);
}

/* TEXTOS */
.feature h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.feature p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== TESTIMONIALS SECTION ===== */
/* ===== TESTIMONIALS SECTION — Tema Azul Premium ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--primary); /* Fundo azul */
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-section .section-label {
    color: #ffffff;
}

.testimonials-section h2 {
    color: #ffffff;
    font-weight: 800;
}

/* GRID */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* CARD */
.testimonial-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08); /* vidro fosco */
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    transition: all 0.45s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.20);
    opacity: 0;
    transform: translateY(30px);
}

/* ANIMAÇÃO AO APARECER */
.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER + GLOW */
.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.25),
        0 25px 70px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.14);
}

/* ===== SHINE EFFECT ===== */
.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: 0.7s ease;
    pointer-events: none;
}

.testimonial-card:hover::after {
    left: 150%;
}

/* TEXT SECTION */
.testimonial-text {
    padding: 40px 32px 24px;
    flex: 1;
    position: relative;
}

/* ASPAS FLUTUANTES */
.testimonial-text::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 18px;
    font-size: 70px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    animation: floatQuote 6s ease-in-out infinite;
}

@keyframes floatQuote {
    0%   { transform: translateY(0); opacity: 0.08; }
    50%  { transform: translateY(-6px); opacity: 0.14; }
    100% { transform: translateY(0); opacity: 0.08; }
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.90);
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* FOOTER */
.testimonial-footer {
    padding: 24px 32px 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* AUTHOR */
.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #ffffff;
}

.author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

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



/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(10, 26, 51, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .section-label {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.faq-section h2 {
    color: white;
}

.faq-section > .container > p {
    color: rgba(255, 255, 255, 0.7);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }

.faq-item:hover {
    transform: translateX(8px);
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(37, 99, 235, 0.3);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    background-color: transparent;
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 17px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    padding-left: 2.25rem;
    color: #60a5fa;
}

.faq-answer {
    background-color: transparent;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.faq-answer p {
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-toggle i {
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle.rotate i {
    transform: rotate(180deg);
}

.faq-item:hover .faq-toggle {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(10, 26, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 26, 51, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    text-align: center;
    margin-bottom: 48px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 51, 0.1) 0%, rgba(10, 26, 51, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-method.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-method:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-method:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-method:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-method:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-method:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(10, 26, 51, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(10, 26, 51, 0.3);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 
        0 12px 28px rgba(10, 26, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.method-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.5), transparent);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-method:hover .method-icon::before {
    opacity: 1;
}

.contact-method:hover .method-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 
        0 16px 40px rgba(10, 26, 51, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.method-icon i {
    font-size: 36px;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contact-method:hover .method-icon i {
    transform: scale(1.15);
}

.method-info {
    position: relative;
    z-index: 1;
}

.method-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.contact-method:hover .method-info h4 {
    color: #60a5fa;
}

.method-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #2563eb);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #60a5fa;
}

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

.map-container {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) brightness(0.9);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--primary) 0%, #050810 100%);
    padding: 80px 0 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(37, 99, 235, 0.5) 50%, 
        transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    position: relative;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}

.footer-logo {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-logo h1 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links h4 {
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, transparent 100%);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    transition: width 0.3s ease;
}

.footer-links li:hover {
    padding-left: 16px;
}

.footer-links li:hover::before {
    width: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.footer-links li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-badges span:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-2px);
}

.footer-badges i {
    color: #60a5fa;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

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

.pulse {
    animation: pulse 2s infinite;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content > p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content > p {
        font-size: 14px;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .about-content h2 {
        font-size: 26px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
    
    .method-icon {
        width: 64px;
        height: 64px;
    }
    
    .method-icon i {
        font-size: 28px;
    }
}