:root {
    --env-cyan: #00264e;
    --env-dark: #1a1e21;
    --env-bg-light: #f4f9fb;
}

.env-container {
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.env-content {
    padding: 80px 60px;
}

/* Badge Superior */
.env-badge {
    background-color: #e6f7f9;
    color: var(--env-cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Título */
.env-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--env-dark);
}

.text-cyan {
    color: var(--env-cyan);
}

.env-description {
    font-size: 1.1rem;
    color: #5f6368;
    line-height: 1.6;
    max-width: 500px;
}

/* Botones */
.env-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-env-cyan {
    background-color: var(--env-cyan);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
}

.btn-env-cyan:hover {
    background-color: #0e8ca5;
    transform: translateY(-2px);
}

.btn-env-outline {
    border: 1px solid #e0e0e0;
    color: var(--env-dark);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-env-outline:hover {
    background-color: #f8f9fa;
}

/* Contenedor de Imagen con el gradiente de fondo */
.env-image-wrapper {
    background: radial-gradient(circle, #2d5a4c 0%, #152c24 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 40px;*/
    height: 100%;
    /*min-height: 500px;*/
    border-radius: 20px;
}

.env-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .env-content {
        padding: 50px 30px;
        text-align: center;
    }
    .env-title { font-size: 2.5rem; }
    .env-description { margin: 20px auto; }
    .env-actions { justify-content: center; }
    .env-image-wrapper { min-height: 400px; }
}

@media (max-width: 576px) {
    .env-title { font-size: 2rem; }
    .env-actions .btn { width: 100%; text-align: center; }
}

:root {
    --raee-bg: #ffffff;
    --raee-card-bg: #f8f9fa;
    --raee-accent: #00264e; /* Color cian de la imagen */
    --raee-text-main: #1a1a1a;
    --raee-text-muted: #666666;
}

.raee-container {
    padding: 60px 20px;
    background-color: #f0f2f5; /* Color de fondo exterior */
    display: flex;
    justify-content: center;
}

.raee-content {
    background-color: var(--raee-bg);
    max-width: 1000px;
    width: 100%;
    padding: 50px;
    border-radius: 30px; /* Bordes muy redondeados como la imagen */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.raee-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--raee-text-main);
    margin-bottom: 20px;
}

.raee-description {
    font-size: 16px;
    color: var(--raee-text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 40px;
}

/* Grid de tarjetas */
.raee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.raee-card {
    background-color: var(--raee-card-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.raee-card:hover {
    transform: translateY(-5px);
}

.raee-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.raee-card h3 {
    font-size: 18px;
    color: var(--raee-text-main);
    margin-bottom: 12px;
}

.raee-card p {
    font-size: 14px;
    color: var(--raee-text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .raee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .raee-content {
        padding: 30px 20px;
    }
    
    .raee-grid {
        grid-template-columns: 1fr;
    }
    
    .raee-title {
        font-size: 24px;
    }
}

:root {
    --bg-blue-light: #eef6f7;
    --accent-teal: #00264e;
    --dark-text: #1a1a1a;
}

.alliance-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.alliance-container {
    background-color: var(--bg-blue-light);
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Texto */
.alliance-text { flex: 1; }

.alliance-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.alliance-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-cert {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #d8ebed;
    color: var(--accent-teal);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

/* Video Thumbnail */
.alliance-video { flex: 1; }

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    opacity: 0.9;
    transition: 0.3s;
}

.video-thumbnail:hover img { opacity: 0.7; }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon {
    width: 0; height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #333;
    margin-left: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: -30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .alliance-container {
        flex-direction: column;
        padding: 30px;
    }
}


:root {
    --green-accent: #28a745;
    --green-bg-light: #e8f5e9;
    --text-main: #111;
    --text-muted: #777;
}

.practices-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.practices-header {
    text-align: center;
    margin-bottom: 50px;
}

.practices-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.practices-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Grid System */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.practice-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    text-align: left;
    transition: all 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Iconos circulares con fondo verde claro */
.practice-icon {
    width: 50px;
    height: 50px;
    background-color: var(--green-bg-light);
    color: var(--green-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.practice-card h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.practice-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Media Queries para Responsividad */
@media (max-width: 1024px) {
    .practices-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
    }
}

@media (max-width: 600px) {
    .practices-grid {
        grid-template-columns: 1fr; /* 1 columna en móviles */
    }
    
    .practices-header h2 {
        font-size: 24px;
    }
}


.categories-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.main-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #111;
}

.category-item {
    position: relative;
    border-radius: 25px; /* Bordes muy redondeados como en la imagen */
    overflow: hidden;
    height: 400px; /* Altura fija para uniformidad */
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen sin deformarla */
    display: block;
}

/* Capa de degradado para que el texto se vea bien */
.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.category-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.category-info p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Ajustes Owl Carousel */
.owl-stage-padding {
    padding-bottom: 20px !important; /* Espacio para sombras si las añades */
}

.normative-section {
    padding: 40px 20px;
    background-color: #fff;
    border-top: 1px solid #eee; /* Línea divisoria sutil */
    font-family: 'Arial', sans-serif;
}

.normative-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Estilo de Etiquetas (MARCO NORMATIVO, Certificación, etc) */
.label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Columna Principal */
.normative-main {
    flex: 2;
}

.normative-main p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.normative-main strong {
    color: #333;
    font-weight: 600;
}

/* Columna de Datos (Derecha) */
.normative-data {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    text-align: left;
}

.value {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #444;
}

/* Responsividad */
@media (max-width: 992px) {
    .normative-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .normative-data {
        justify-content: flex-start;
        width: 100%;
        gap: 30px;
        border-top: 1px solid #f5f5f5;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .normative-data {
        flex-direction: column;
        gap: 20px;
    }
}