:root {
    --primary-color: #0BB9D9;
    --primary-dark: #0a9cba;
    --light-color: #dee1e4;
    --white: #ffffff;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #666;
    --accent: #2980b9;
    --box-shadow: 0 10px 30px rgba(11, 185, 217, 0.15);
    --shadow-sm: 0 2px 8px rgba(11, 185, 217, 0.1);
    --shadow-md: 0 4px 12px rgba(11, 185, 217, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Mejorado */
.about-header {
    background: linear-gradient(135deg, var(--primary-color), #0a9cba);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Sección Quiénes Somos */
.content-section {
    padding: 4rem 0;
    background: var(--light-color);
    gap: 3rem;
}

.content-container {
    max-width: 1200px;
}

.images-column img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 400px;
    object-fit: cover;
}

.images-column img:hover {
    transform: scale(1.02);
}

.text-column h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.text-column h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 15px;
    border-radius: 2px;
}

.text-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.text-column strong {
    color: var(--primary-color);
}

/* Tarjetas de Características */
.about-grid {
    padding: 2rem 0;
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(11, 185, 217, 0.1);
    height: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.about-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: justify;
}

/* Sección de Valores */
.about-values {
    background: linear-gradient(135deg, #f8fdff, #e8f7fa);
    padding: 2rem 0;
}

.values-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 700;
    position: relative;
}

.values-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(11, 185, 217, 0.1);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Sección Visión y Misión */
.vm-container {
    padding: 2rem 0;
    background: var(--light-color);
}

.vm-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.vm-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.vm-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(11, 185, 217, 0.1);
    position: relative;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card-content {
    padding: 3rem 2.5rem;
}

.vm-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.vm-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* Animaciones */
.animate-fade {
    animation: fadeIn 1s ease forwards;
}

.animate-slide {
    animation: slideInLeft 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-header {
        padding: 4rem 0;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-header p {
        font-size: 1.1rem;
    }

    .content-section, .about-grid, .about-values, .vm-container {
        padding: 3rem 0;
    }

    .text-column h2 {
        font-size: 2rem;
    }

    .values-title {
        font-size: 2.2rem;
    }

    .vm-header h1 {
        font-size: 2.2rem;
    }
}