/* ========================================
   BURWILD - Corporate B2B Landing
   Paleta: Naranja corporativo + Grises cálidos
======================================== */

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

:root {
    --naranja: #F28322;
    --naranja-hover: #E07010;
    --naranja-dark: #C65D00;
    --naranja-light: #FFF4E8;
    --naranja-100: #FFEBD4;
    --naranja-glow: rgba(242, 131, 34, 0.4);
    --azul: #1E3A5F;
    --azul-light: #2D5A8C;
    --azul-dark: #0F2940;
    --azul-100: #E8F0F8;
    --gray-900: #1F2937;
    --gray-800: #2D3748;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--naranja) 0%, var(--naranja-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul) 100%);
    --gradient-hero: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul) 50%, var(--azul-light) 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 8px 30px rgba(242, 131, 34, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-600);
    line-height: 1.7;
    background: var(--white);
    font-size: 15px;
}

h1, h2, h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-900);
    font-weight: 700;
}

h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

/* ========================================
   Top Bar
======================================== */
.top-bar {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.8rem;
    padding: 0.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid var(--gray-200);
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    color: var(--naranja);
}

.top-bar-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-item a:hover {
    color: var(--naranja);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-text {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.top-bar-social {
    display: flex;
    gap: 0.75rem;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    border-radius: 4px;
    color: var(--gray-500);
    transition: all 0.2s;
}

.top-bar-social a:hover {
    background: var(--naranja);
    color: var(--white);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   Header
======================================== */
header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-header {
    background: var(--naranja);
    color: var(--white) !important;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--naranja);
}

/* ========================================
   Buttons
======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--naranja);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--naranja);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid var(--naranja);
}

.btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
}

.btn-tel svg {
    width: 20px;
    height: 20px;
    color: var(--naranja);
}

/* ========================================
   Hero
======================================== */
.hero {
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(242, 131, 34, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    text-align: center;
}

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


.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--white);
    font-weight: 800;
}

.text-gradient {
    color: var(--naranja);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero .btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.hero .btn-primary:hover svg {
    transform: translateX(4px);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Floating Cards */
.hero-cards {
    position: relative;
    height: 400px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

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

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--naranja);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.hero-card-info {
    display: flex;
    flex-direction: column;
}

.hero-card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.hero-card-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ========================================
   Statistics Section
======================================== */
.stats-section {
    background: var(--azul-dark);
    padding: 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--naranja);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Clients Section
======================================== */
.clients-section {
    background: var(--white);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.clients-label {
    display: inline-block;
    color: var(--naranja);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.clients-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.clients-header p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.client-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.client-card:hover {
    background: var(--white);
    border-color: var(--naranja);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(242, 131, 34, 0.15);
}

.client-card:hover .client-icon {
    background: var(--naranja);
}

.client-card:hover .client-icon svg {
    color: var(--white);
}

.client-icon {
    width: 48px;
    height: 48px;
    background: var(--naranja-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
}

.client-icon svg {
    width: 24px;
    height: 24px;
    color: var(--naranja);
    transition: color 0.3s ease;
}

.client-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-900);
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-card {
        padding: 1.25rem 0.75rem;
    }

    .client-icon {
        width: 40px;
        height: 40px;
    }

    .client-icon svg {
        width: 20px;
        height: 20px;
    }

    .client-name {
        font-size: 0.8rem;
    }
}

/* ========================================
   Sections Common
======================================== */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    max-width: 640px;
    margin-bottom: 4rem;
}

.section-intro.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--naranja);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-intro p {
    font-size: 1.05rem;
    color: var(--gray-600);
}

/* ========================================
   Misión, Visión y Valores
======================================== */
.mision-vision {
    background: var(--naranja);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.mision-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mision-vision::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   Tabs Section
======================================== */
.tabs-section {
    background: var(--white);
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.tabs-content-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--naranja-100);
    background: var(--white);
}

.tab-btn.active {
    background: var(--white);
    border-color: var(--naranja);
    box-shadow: 0 4px 15px rgba(242, 131, 34, 0.15);
}

.tab-icon {
    width: 44px;
    height: 44px;
    background: var(--naranja-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tab-btn.active .tab-icon {
    background: var(--naranja);
}

.tab-icon svg {
    width: 22px;
    height: 22px;
    color: var(--naranja);
    transition: color 0.3s ease;
}

.tab-btn.active .tab-icon svg {
    color: var(--white);
}

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

.tab-text strong {
    font-size: 0.95rem;
    color: var(--gray-900);
    font-weight: 600;
}

.tab-text small {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

.tabs-panel-side {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2.5rem;
    min-height: 380px;
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel-content h3 {
    font-size: 1.35rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.tab-panel-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tab-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tab-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.tab-features svg {
    width: 20px;
    height: 20px;
    color: var(--naranja);
    flex-shrink: 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.mv-icon {
    width: 48px;
    height: 48px;
    background: var(--naranja-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.mv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--naranja);
}

.mv-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.valores-list {
    list-style: none;
    text-align: left;
}

.valores-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.valores-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--naranja);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   Líneas de Negocio
======================================== */
.lineas {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.lineas::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--naranja-light) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    transform: translateY(-50%);
}

.lineas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.linea-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.linea-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--naranja);
}

.linea-card:hover .linea-img img {
    transform: scale(1.08);
}

.linea-img {
    height: 200px;
    overflow: hidden;
}

.linea-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.linea-content {
    padding: 2rem;
}

.linea-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.linea-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--naranja);
}

.linea-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.linea-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   Product Gallery
======================================== */
.product-gallery {
    padding: 5rem 2rem;
    background: var(--gray-50);
}

.product-gallery .section-intro.centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--naranja);
    color: var(--naranja);
}

.filter-btn.active {
    background: var(--naranja);
    border-color: var(--naranja);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-category {
    display: inline-block;
    background: var(--naranja);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.gallery-cta p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ========================================
   CTA Banner
======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul) 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--naranja));
    opacity: 0.1;
    pointer-events: none;
}

.cta-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cta-banner-icon {
    width: 50px;
    height: 50px;
    background: var(--naranja);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-banner-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.cta-banner-text span {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.cta-banner-text p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

.btn-cta-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--naranja);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-cta-banner:hover {
    background: var(--naranja-hover);
    transform: translateX(4px);
}

.btn-cta-banner svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Sectores
======================================== */
.sectores {
    background: var(--naranja);
    position: relative;
    overflow: hidden;
}

.sectores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.sectores::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.sectores .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.sectores .section-intro h2 {
    color: var(--white);
}

.sectores .section-intro p {
    color: rgba(255, 255, 255, 0.85);
}

.sectores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sector-card {
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--naranja);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.sector-card:hover .sector-icon {
    background: var(--naranja);
}

.sector-card:hover .sector-icon svg {
    color: var(--white);
}

.sector-icon {
    width: 48px;
    height: 48px;
    background: var(--naranja-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sector-icon svg {
    width: 22px;
    height: 22px;
    color: var(--naranja);
    transition: color 0.3s ease;
}

.sector-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.sector-perfil {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.sector-servicios {
    list-style: none;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.sector-servicios li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sector-servicios li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--naranja);
    border-radius: 50%;
}

/* ========================================
   Empresa
======================================== */
.empresa {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.empresa::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--naranja-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.empresa-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.empresa-text {
    max-width: 720px;
}

.empresa-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.empresa-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.propuesta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.propuesta-card {
    padding: 1.75rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.propuesta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--naranja), var(--naranja-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.propuesta-card:hover {
    background: var(--white);
    border-color: var(--naranja-100);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

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

.propuesta-icon {
    width: 44px;
    height: 44px;
    background: var(--naranja-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.propuesta-icon svg {
    width: 22px;
    height: 22px;
    color: var(--naranja);
}

.propuesta-card h4 {
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.propuesta-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   CTA
======================================== */
.cta {
    background: var(--gray-900);
    padding: 5rem 2rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn-tel {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-600);
}

.cta .btn-tel svg {
    color: var(--white);
}

/* ========================================
   Testimonials
======================================== */
.testimonials {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--naranja-100) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-card.featured {
    background: var(--gray-900);
    border-color: var(--gray-800);
}

.testimonial-card.featured .testimonial-quote svg {
    color: var(--naranja);
}

.testimonial-card.featured .testimonial-text {
    color: var(--gray-300);
}

.testimonial-card.featured .author-name {
    color: var(--white);
}

.testimonial-card.featured .author-role {
    color: var(--gray-500);
}

.testimonial-quote {
    margin-bottom: 1.25rem;
}

.testimonial-quote svg {
    width: 32px;
    height: 32px;
    color: var(--naranja-100);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #F59E0B;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.testimonial-card.featured .testimonial-author {
    border-top-color: var(--gray-800);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--naranja);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========================================
   Newsletter Section
======================================== */
.newsletter-section {
    background: var(--naranja);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.newsletter-text h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.newsletter-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--white);
    width: 280px;
    outline: none;
    transition: all 0.2s;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    border-color: var(--white);
    background: rgba(255,255,255,0.15);
}

.newsletter-form .btn-primary {
    background: var(--white);
    color: var(--naranja);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    background: var(--gray-100);
}

.newsletter-form .btn-primary svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Contacto
======================================== */
.contacto {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.contacto::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, var(--naranja-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.contacto-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-header {
    margin-bottom: 3rem;
}

.contacto-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.contacto-header p {
    font-size: 1rem;
    color: var(--gray-600);
}

.contacto-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contacto-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contacto-icon {
    width: 40px;
    height: 40px;
    background: var(--naranja-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.contacto-icon svg {
    width: 20px;
    height: 20px;
    color: var(--naranja);
}

.contacto-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contacto-value {
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

a.contacto-value {
    color: var(--naranja);
}

/* ========================================
   Footer
======================================== */
footer {
    background: var(--azul-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--gray-400);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--naranja);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--naranja);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a,
.footer-contact span {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-contact a:hover {
    color: var(--naranja);
}

/* Footer Badges */
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.8rem;
}

.footer-badge svg {
    width: 20px;
    height: 20px;
    color: var(--naranja);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.85rem;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .mv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .lineas-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .propuesta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .cta-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-content {
        flex-direction: column;
    }

    .footer-badges {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    header {
        top: 0;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 0.75rem 0;
    }

    .btn-header {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 9rem 1.5rem 4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }


    .contacto-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-intro h2,
    .empresa-text h2,
    .contacto-info h2 {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .clients-section {
        padding: 2rem 0;
    }

    .clients-header h3 {
        font-size: 1rem;
    }

    .sectores-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .propuesta-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta .btn-primary,
    .cta .btn-tel {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .footer-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .footer-badge {
        justify-content: center;
    }
}

/* ========================================
   Animations
======================================== */
.mv-card,
.linea-card,
.sector-card,
.propuesta-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mv-card.visible,
.linea-card.visible,
.sector-card.visible,
.propuesta-card.visible {
    opacity: 1;
    transform: translateY(0);
}
