/* ============================================
   ARCHIVO: style.css
   Estilos Generales - RESPONSIVE Y FULL WIDTH
============================================ */

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #73a6f3 0%, #c392f3 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

main {
    margin-top: 80px;
    width: 100%;
}






/* ============================================
   SECTIONS - Full Width Responsive
============================================ */

.section {
    padding: 4rem 3%;
    width: 100%;
}

.section-white {
    background: white;
    margin: 2rem 2%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 96%;
}

.section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* ============================================
   ABOUT SECTION - Responsive
============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #555;
}

.about-image {
    background: linear-gradient(45deg, #667eea, #764ba2);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* ============================================
   VALUES GRID - Responsive
============================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   RESPONSIVE GENERAL
============================================ */

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
