/* CSS extraído de app/Views/home/index.php */
:root {
    --primary-dark: #1a2c52;
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --success: #10b981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    /* Variáveis teal para seção Quem Somos */
    --teal-900: #0a2e2e;
    --teal-800: #0d4f4f;
    --teal-700: #0d7377;
    --teal-600: #0f9690;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --teal-300: #5eead4;
    --accent-gold: #d4a726;
}

body { overflow-x: hidden; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    color: #ffffff;
    padding: 170px 0 170px 0;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* O background será definido inline na view para manter o PHP */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    transform: translateY(120px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero .lead {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-primary-light {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-light:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: var(--primary);
}

.btn-outline-white {
    color: white;
    border: 2px solid white;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== QUEM SOMOS SECTION — PREMIUM ===== */
.qs {
    padding: 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* ...demais regras CSS extraídas do <style>... */
