/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Open Sans', sans-serif; 
    overflow-x: hidden; 
    text-align: justify;
}

h1, h2, h3, h4, .logo, .nav-links a, .btn-cta-banner {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --azul-marino: #0A2B4E;
    --naranja: #FF7F00;
    --blanco-transparente: rgba(255, 255, 255, 0.90);
    --blanco: #ffffff;
    --gris: #f4f6f8;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- BARRA SUPERIOR --- */
.top-bar {
    background-color: var(--azul-marino);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span { margin-right: 20px; }
.top-info i { margin-right: 8px; }
.top-social a { color: white; margin-left: 15px; transition: 0.3s; }
.top-social a:hover { color: var(--naranja); }

/* --- MAIN HERO WRAPPER (100% ANCHO SIN BORDES) --- */
.main-hero-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Aumenta la altura para que el video tenga más presencia */
    margin-top: 0; 
    overflow: hidden;
    background-color: #000; /* Fondo negro de seguridad mientras carga el video */
}
.main-img-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Aumenta la altura para que el video tenga más presencia */
    margin-top: 80px; 
    overflow: hidden;
    background-color: #000; /* Fondo negro de seguridad mientras carga el video */
}

/* --- VIDEO CONFIGURACIÓN --- */
.video-full-container {
    position: absolute;
    top: 0; /* Asegura que inicie en el borde superior del wrapper */
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* --- Esto aplica al contenedor de la API de YouTube --- */
#player-container,
#player-container iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;       /* ← Mantiene proporción nativa */
    display: block;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 43, 78, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* --- HEADER BLANCO TRANSPARENTE --- */
header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--blanco-transparente);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 15px 0px 60px 30px;
}

.header-container {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--azul-marino);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--azul-marino);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--naranja); }
.nav-links .active { color: var(--naranja); }

.btn-contact {
    background: var(--naranja);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.hamburger { display: none; font-size: 1.5rem; color: var(--azul-marino); cursor: pointer; }

/* --- TEXTO + CTA (30%) --- */
.banner-content-container {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-text-wrapper {
    width: 30%;
    max-width: 400px;
    color: white;
    text-align: left;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.banner-title .highlight { color: var(--naranja); }

.btn-cta-banner {
    display: inline-block;
    background: var(--naranja);
    color: white;
    padding: 9px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-cta-banner:hover {
    background: #e67200;
    transform: scale(1.05);
}

/* --- CONTENIDO DE ABAJO --- */
.section-padding { padding: 60px 0; }
.bg-light { background-color: var(--gris); }

.section-header { text-align: center; margin-bottom: 30px; }
.section-header h2 { font-size: 2rem; color: var(--azul-marino); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.icon-service { font-size: 2rem; color: var(--naranja); margin-bottom: 10px; }
.card h3 { color: var(--azul-marino); margin-bottom: 8px; }

/* --- FOOTER --- */
footer {
    background: var(--azul-marino);
    color: white;
    padding-top: 30px;
}

.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 20px; }
.footer-logo { color: white; font-size: 1.2rem; margin-bottom: 10px; }
.footer-col h4 { margin-bottom: 10px; }
.footer-col p { color: #ccc; font-size: 0.85rem; }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; background: rgba(255,255,255,0.95); position: absolute; top: 60px; left: 0; width: 100%; padding: 20px; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    
    .banner-text-wrapper { width: 80%; text-align: center; margin: 0 auto; }
    .banner-title { font-size: 1.8rem; }
}

/* --- CATEGORÍAS DE PRODUCTOS --- */
.categoria-productos-section {
    padding: 0px;
    background-color: #f0fbff;
}

/* Barra superior de color */
.categoria-top-bar {
    height: 6px;
    width: 100%;
    background-color: #e2dcd6;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

/* Grid de categorías */
.categoria-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Cada categoría */
.categoria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    text-align: center;
}

/* Icono SVG */
.categoria-icono {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.categoria-icono img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Nombre de la categoría */
.categoria-nombre {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

/* Estado activo (hover) */
.categoria-item.active {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Estado seleccionado (click) */
.categoria-item.selected {
    border: 1px solid #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .categoria-item {
        width: 80px;
        height: 80px;
    }
    .categoria-icono {
        width: 30px;
        height: 30px;
    }
    .categoria-nombre {
        font-size: 0.6rem;
    }
}

/* --- CATEGORÍAS DE PRODUCTOS --- */
.categoria-productos-section {
    padding: 0px 0px 30px 0px;
    background-color: #ffffff;
}

/* Barra superior de color */
.categoria-top-bar {
    height: 6px;
    width: 100%;
    background-color: #FF7F00;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

/* Grid de categorías */
.categoria-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Cada categoría */
.categoria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    text-align: center;
}

/* Icono SVG */
.categoria-icono {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.categoria-icono img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.5);
}

/* Nombre de la categoría */
.categoria-nombre {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

/* Estado activo (hover) */
.categoria-item.active {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Estado seleccionado (click) */
.categoria-item.selected {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .categoria-item {
        width: 80px;
        height: 80px;
    }
    .categoria-icono {
        width: 30px;
        height: 30px;
    }
    .categoria-nombre {
        font-size: 0.6rem;
    }
}

/* --- MARCAS SECTION --- */
.marcas-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.marcas-header {
    text-align: center;
    margin-bottom: 30px;
}

.marcas-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--azul-marino, #0A2B4E);
}

.marcas-header .highlight {
    color: var(--naranja, #FF7F00);
}

/* --- CARRUSEL WRAPPER --- */
.marcas-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- TRACK CONTAINER --- */
.marcas-carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    padding: 10px 0;
}

.marcas-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* --- CADA ITEM DE MARCA --- */
.marca-item {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca-item img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.marca-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --- BOTONES DE NAVEGACIÓN --- */
.marcas-nav-btn {
    background-color: var(--azul-marino, #0A2B4E);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marcas-nav-btn:hover:not(:disabled) {
    background-color: var(--naranja, #FF7F00);
    transform: scale(1.1);
}

.marcas-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.marcas-nav-btn i {
    font-size: 1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .marcas-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .marcas-nav-btn i {
        font-size: 0.8rem;
    }
    
    .marca-item img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .marcas-nav-btn {
        width: 28px;
        height: 28px;
    }
    
    .marca-item img {
        max-height: 30px;
    }
}

/* --- FOOTER --- */
footer {
    background-color: var(--azul-marino, #0A2B4E);
    color: white;
    padding-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1.5fr 1.5fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--naranja, #FF7F00);
}

.footer-col h4.footer-subtitle {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Logo column */
.footer-col-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    margin-top: 5px;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--naranja, #FF7F00);
    transform: translateY(-3px);
}

/* Links del footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--naranja, #FF7F00);
    padding-left: 5px;
}

/* Contacto en footer */
.footer-contact p {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--naranja, #FF7F00);
    width: 16px;
    text-align: center;
}

/* Footer bottom */
.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    }
    .footer-col-logo {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links a:hover {
        padding-left: 0;
    }
}

/* --- SECCIÓN QUIÉNES SOMOS --- */
.quienes-somos-section {
    padding: 20px 0;
    background-color: #ffffff;
}

/* Encabezado */
.quienes-somos-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--azul-marino, #0A2B4E);
    margin-bottom: 8px;
}

.quienes-somos-section .section-header .highlight {
    color: var(--naranja, #FF7F00);
}

.quienes-somos-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contenido principal (texto + imagen) */
.quienes-somos-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.quienes-somos-texto {
    flex: 1.5;
}

.quienes-somos-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azul-marino, #0A2B4E);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quienes-somos-texto p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.quienes-somos-destacado {
    background: linear-gradient(135deg, rgba(10, 43, 78, 0.05), rgba(255, 127, 0, 0.05));
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--naranja, #FF7F00);
    margin-top: 20px;
}

.quienes-somos-destacado p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--azul-marino, #0A2B4E);
    margin-bottom: 0;
}

/* Imagen lateral */
.quienes-somos-imagen {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.quienes-somos-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.quienes-somos-imagen-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(10, 43, 78, 0.85);
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(4px);
}

.quienes-somos-imagen-overlay span {
    font-family: 'Montserrat', sans-serif;
}

.quienes-somos-imagen-overlay span:first-child {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--naranja, #FF7F00);
}

.quienes-somos-imagen-overlay span:last-child {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Separador decorativo */
.quienes-somos-separador {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.quienes-somos-separador span {
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--naranja, #FF7F00), transparent);
}

.quienes-somos-separador i {
    color: var(--naranja, #FF7F00);
    font-size: 1.5rem;
}

/* Oficinas */
.quienes-somos-oficinas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.oficina-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.oficina-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.oficina-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.oficina-header i {
    font-size: 2rem;
    color: var(--naranja, #FF7F00);
}

.oficina-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--azul-marino, #0A2B4E);
    margin: 0;
}

.oficina-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.oficina-direcciones {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.oficina-direcciones strong {
    display: block;
    color: var(--azul-marino, #0A2B4E);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.oficina-direcciones ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oficina-direcciones ul li {
    font-size: 0.9rem;
    color: #555;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oficina-direcciones ul li i {
    color: var(--naranja, #FF7F00);
    font-size: 0.8rem;
    width: 16px;
}

.oficina-horario-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.oficina-horario-item i {
    font-size: 1.2rem;
    color: var(--naranja, #FF7F00);
    margin-top: 2px;
}

.oficina-horario-item div {
    display: flex;
    flex-direction: column;
}

.oficina-horario-item strong {
    color: var(--azul-marino, #0A2B4E);
    font-size: 0.9rem;
}

.oficina-horario-item span {
    font-size: 0.85rem;
    color: #666;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .quienes-somos-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .quienes-somos-imagen {
        width: 100%;
        max-height: 350px;
    }
    
    .quienes-somos-imagen img {
        min-height: 250px;
    }
    
    .quienes-somos-oficinas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quienes-somos-section {
        padding: 50px 0;
    }
    
    .quienes-somos-section .section-header h2 {
        font-size: 2rem;
    }
    
    .quienes-somos-intro {
        font-size: 1.1rem;
    }
    
    .oficina-card {
        padding: 25px;
    }
    
    .quienes-somos-imagen-overlay {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .quienes-somos-imagen-overlay span:first-child {
        font-size: 1.8rem;
    }
    
    .quienes-somos-separador span {
        width: 40px;
    }
}

.imagen-350px {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   SECCIÓN: SECTORES / SOLUCIONES CORPORATIVAS
   ===================================================== */

.sectores-section {
    padding: 0px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sectores-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sectores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Columna Izquierda: Encabezado --- */
.sectores-header {
    position: relative;
    z-index: 1;
}

.sectores-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0066cc; /* Azul corporativo - ajusta a tu marca */
    margin-bottom: 16px;
}

.sectores-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.sectores-header h2 .highlight {
    color: #0066cc; /* Azul corporativo */
}

.sectores-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.sectores-tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: #777;
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid #0066cc;
}

/* --- Columna Derecha: Cards --- */
.sectores-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.sector-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
    transition: all 0.3s ease;
}

.sector-card:hover {
    transform: translateX(8px);
}

.sector-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.sector-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.sector-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* --- Separadores entre cards --- */
.sector-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
    margin: 0 0 0 80px; /* Alineado con el texto, no con el icono */
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .sectores-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sectores-header h2 {
        font-size: 2.2rem;
    }
    
    .sector-divider {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .sectores-section {
        padding: 60px 0;
    }
    
    .sectores-header h2 {
        font-size: 1.8rem;
    }
    
    .sector-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }
    
    .sector-icon {
        width: 48px;
        height: 48px;
    }
}
