* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
}

.sect1 {
    width: 100%;
    height: 70vh;
    background: url("imagenes/imagen-1.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /*padding-top: calc(50vh - 50px);*/
    display: flex; /* ← Agregar */
    align-items: center; /* ← Agregar */
    justify-content: center; /* ← Agregar */
}

.sect3 {
    width: 100%;
    height: 70vh;
    background: url("imagenes/imagen-2.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /*padding-top: calc(50vh - 50px);*/
    display: flex; /* ← Agregar */
    align-items: center; /* ← Agregar */
    justify-content: center; /* ← Agregar */
}

.sect4 {
    width: 100%;
    height: 70vh;
    background: url("imagenes/imagen-3.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /*padding-top: calc(50vh - 50px);*/
    display: flex; /* ← Agregar */
    align-items: center; /* ← Agregar */
    justify-content: center; /* ← Agregar */
}

.sect1h2 {
    background: black;
    color: #ffffff;
    width: 300px;
    height: 100px;
    margin: auto;
    text-align: center;
    line-height: 100px;
}

.sect2h2 {
    background: black;
    color: #ffffff;
    width: 300px;
    height: 100px;
    margin: auto;
    text-align: center;
    line-height: 100px;
}

.sect3h2 {
    background: black;
    color: #ffffff;
    width: 300px;
    height: 100px;
    margin: auto;
    text-align: center;
    line-height: 100px;
}


/*.sect2 {
    width: 100%;
    height: 500px;
    text-align: center;
    padding: 60px 40px;
    background-color: #1a1a1a;  ← Agregar un fondo 
}*/

.sect2 {
    width: 100%;
    min-height: 500px;
    background: 
        linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%),
        url('https://www.transparenttextures.com/patterns/brushed-alum-dark.png');
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 40px;
}

/* Container de dos columnas */
.sect2-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

/* Columna izquierda - Contenido */
.sect2-content {
    flex: 1;
    text-align: left;
}

/* Título con fondo cobre */
.sect2h2 {
    background: linear-gradient(135deg, #B87333 0%, #CD7F32 100%);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);  /* ← Sombra para legibilidad */
    width: fit-content;
    padding: 20px 40px;
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 24px;
    display: flex;              /* ← Agregar */
    align-items: center;        /* ← Agregar */
    justify-content: center;    /* ← Agregar */
    min-height: 70px;          /* ← Agregar (opcional, para altura consistente) */
}

.texto2 {
    color: #E8E8E8;  /* ← Gris muy claro */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);  /* ← Sombra fuerte */
    font-weight: 500;  /* ← Texto más grueso */
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
    max-width: 600px;           /* ← Agregar: limita el ancho para forzar 3 líneas */
    text-align: center;         /* ← Cambiar de left a center */
    margin-left: 0;             /* ← Elimina margen automático */
}

/* Lista de sectores en columnas horizontales */
.sectores-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-left: 0;             /* ← Sin margen izquierdo */
}

.sectores-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.sectores-column ul li {
    color: #B8C5D0;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
    padding-left: 15px;
}

.sectores-column ul li::before {
    content: '- ';
    position: absolute;
    left: 0;
    color: #FF8C00;  /* ← Naranja más brillante para contrastar */
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.6);  /* ← Brillo naranja */
    font-weight: bold;
}

/* Columna derecha - Imagen */
.sect2-image {
    flex: 0 0 450px;
    max-width: 450px;
}

.sect2-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.sect2-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sect2-centered .sect2h2,
.sect2-centered .texto2 {
    margin-left: auto;
    margin-right: auto;
}

/* Contenedor de círculos */
.circulos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.circulo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Círculo con borde cobre */
.circulo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #B87333;  /* Borde cobre */
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(184, 115, 51, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.circulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Efecto hover */
.circulo:hover {
    border-color: #FF8C00;  /* Naranja al hover */
    box-shadow: 
        0 0 30px rgba(255, 140, 0, 0.6),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.circulo:hover img {
    transform: scale(1.1);
}

/* Título debajo del círculo */
.circulo-titulo {
    color: #F0F0F0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Responsive: Vertical en móvil */
@media (max-width: 768px) {
    .circulos-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .circulo {
        width: 180px;
        height: 180px;
    }
}

/* Tablet: 2 columnas */
@media (min-width: 769px) and (max-width: 1024px) {
    .circulos-container {
        gap: 30px;
    }
    
    .circulo {
        width: 170px;
        height: 170px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .sect2-container {
        flex-direction: column;
    }
    
    .sect2-content {
        text-align: center;
    }
    
    .sect2h2 {
        margin: 0 auto 30px;
        margin-left: auto;      /* ← Asegurar centrado */
        margin-right: auto;
    }
    
    .sectores-list {
        justify-content: center;
    }
    
    .sect2-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;            /* ← Agregar: ocupa todo el ancho */
        /*display: block;*/         /* ← Agregar: asegura que se muestre */
        margin-top: 30px;       /* ← Agregar: espacio superior */
    }

    .sect2-image img {
        max-width: 90%;         /* ← Agregar: controla el ancho en móvil */
        margin: 0 auto;         /* ← Agregar: centra la imagen */
        display: block;         /* ← Agregar */
    }

}

@media (max-width: 768px) {
    .sect2-image {
        padding: 0 20px;        /* ← Agregar: padding lateral */
    }
    
    .sect2-image img {
        max-width: 100%;        /* ← En móviles pequeños, ancho completo */
    }
    
    /* ... resto del código de sectores-list ... */
}

@media (max-width: 768px) {
    .sectores-list {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    
    .sectores-column ul li {
        text-align: center;
        padding-left: 0;
    }
    
    .sectores-column ul li::before {
        position: static;
        margin-right: 5px;
    }
}

.texto2 {
    padding: 40px 0;
    color: #ffffff;
}

/* Lista de sectores en columnas */
.sectores-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.sectores-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.sectores-column ul li {
    color: #B8C5D0; /* Gris metálico claro */
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

/* Viñeta personalizada (guión) */
.sectores-column ul li::before {
    content: '- ';
    position: absolute;
    left: 0;
    color: #B87333; /* Cobre para acento */
    font-weight: bold;
}

/* Responsive: En móvil, lista vertical centrada */
@media (max-width: 768px) {
    .sectores-list {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    
    .sectores-column ul {
        text-align: center;
    }
    
    .sectores-column ul li {
        padding-left: 0;
    }
    
    .sectores-column ul li::before {
        position: static;
        margin-right: 5px;
    }
}
