/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --primary-dark: #0d1b2a;
    --primary-medium: #1b263b;
    --primary-light: #415a77;
    --accent-gold: #d4af37;
    --accent-gold-light: #f5d061;
    --accent-gold-glow: rgba(212, 175, 55, 0.2);
    
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #09111e;
    --bg-card-dark: #121f33;
    
    --text-dark: #0d1b2a;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;
    --text-gray: #a0aec0;
    
    --border-light: #e9ecef;
    --border-dark: rgba(255, 255, 255, 0.08);
    
    /* Fonts */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(13, 27, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(13, 27, 42, 0.12);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border: 2px solid var(--primary-dark);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

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

.text-white {
    color: var(--bg-white) !important;
}

.text-gray {
    color: var(--text-gray) !important;
}

.mt-4 {
    margin-top: 40px;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(13, 27, 42, 0.05);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold-light);
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Grid Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-normal);
    padding: 24px 0;
}

.header.scrolled {
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--bg-white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Nav Menu */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta-mobile {
    display: none;
}

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

.btn-nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bg-white);
    position: relative;
    transition: var(--transition-normal);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--bg-white);
    transition: var(--transition-normal);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Menu open animation */
.menu-toggle.open .hamburger {
    background-color: transparent;
}

.menu-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #172a45 100%);
    color: var(--text-light);
    padding: 180px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Hero Visual Graphic */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    width: 100%;
    max-width: 440px;
    position: relative;
}

.illustration-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 15px 30px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--bg-light);
    clip-path: ellipse(60% 80% at 50% 100%);
    z-index: 3;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   ABOUT SECTION (QUEM SOMOS)
   ========================================================================== */
.sobre-section {
    background-color: var(--bg-light);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-content .section-title {
    margin-bottom: 24px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.sobre-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.highlight-box {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-gold);
}

.highlight-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Sobre Cards (Right side pillars) */
.sobre-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-pilar {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
}

.card-pilar:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.pilar-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(13, 27, 42, 0.03);
    color: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: var(--transition-fast);
}

.card-pilar:hover .pilar-icon {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

.pilar-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.pilar-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    grid-column: 2;
}

/* ==========================================================================
   SERVICES SECTION (SERVICOS)
   ========================================================================== */
.servicos-section {
    position: relative;
    z-index: 1;
}

.servicos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(27, 38, 59, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--bg-card-dark);
    padding: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--accent-gold-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 28px;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-icon {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.service-text {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.service-bullets li {
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.service-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.beneficios-visual {
    display: flex;
    justify-content: center;
}

.benefits-svg {
    width: 100%;
    max-width: 400px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-icon-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.benefit-text-wrapper {
    display: flex;
    flex-direction: column;
}

.benefit-item-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.benefit-item-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   HOW IT WORKS (COMO FUNCIONA)
   ========================================================================== */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: 1;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: var(--bg-card-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.workflow-step:hover .step-number {
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contato-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sede-container {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    line-height: 0;
}

.sede-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-slow);
}

.sede-container:hover .sede-img {
    transform: scale(1.03);
}

.contato-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.contato-card {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-normal);
}

.contato-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.25);
}

.contato-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: rgba(13, 27, 42, 0.03);
    color: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: var(--transition-fast);
}

.contato-card:hover .contato-icon-wrapper {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

.contato-svg {
    width: 100%;
    height: auto;
}

.contato-text {
    display: flex;
    flex-direction: column;
}

.contato-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contato-val {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Contact Form */
.contato-form-container {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-gold);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-input {
    resize: vertical;
}

/* Form Feedback States */
.form-feedback {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 8px;
    border-radius: var(--radius-sm);
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.form-feedback.error {
    display: block;
    background-color: #fed7d7;
    color: #742a2a;
    border: 1px solid #feb2b2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo {
    align-self: flex-start;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--accent-gold-light);
    transform: translateX(4px);
}

.footer-legal-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-company-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.footer-company-list li {
    color: var(--text-gray);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.4;
}

.footer-company-list strong {
    color: var(--bg-white);
    font-weight: 500;
}

.footer-company-list a {
    color: var(--text-gray);
}

.footer-company-list a:hover {
    color: var(--accent-gold-light);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin-top: 18px;
}

.footer-legal-links a {
    color: var(--accent-gold-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-legal-links a:hover {
    color: var(--bg-white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background-color: #050a12;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold-light);
}

.footer-sep {
    color: var(--text-gray);
    opacity: 0.5;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.footer-socials a:hover .social-icon {
    color: var(--accent-gold-light);
    transform: scale(1.1);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Large screens and Desktops */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablets and small desktops */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        order: -1; /* visual visual first on mobile/tablet */
    }
    
    .sobre-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .card-pilar {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .pilar-icon {
        margin-bottom: 8px;
    }
    
    .pilar-text {
        grid-column: 1;
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .workflow-steps::before {
        display: none; /* remove line on wrap */
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .footer-legal,
    .footer-company {
        grid-column: span 2;
    }
}

/* Navigation Drawer style for Mobile menu */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-nav-cta {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background-color: var(--primary-dark);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        z-index: 1005;
        display: flex;
        flex-direction: column;
        padding: 100px 40px 40px 40px;
        transition: var(--transition-normal);
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
    }
    
    .nav-cta-mobile {
        display: block;
        margin-top: 40px;
    }
    
    .nav-cta-mobile .btn {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .sobre-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 32px;
    }
    
    .contato-methods {
        grid-template-columns: 1fr;
    }
    
    .contato-form-container {
        padding: 32px 24px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .sobre-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-legal {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
