/* Restablece el box-sizing para evitar desbordamiento horizontal */
* {
    box-sizing: border-box;
}

/* Variables de color para un código más limpio y fácil de mantener */
:root {
    --primary-color: #ed217c;
    --text-color: #333;
    --bg-color: #fff;
    --border-radius: 8px;
}
/* -------------------------------------- */
/* Estilos del Header */
/* -------------------------------------- */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.header .logo img {
    max-height: 60px;
    /* Asegura que la imagen sea clickeable sin bordes extra */
    display: block; 
}
/* Estilo para que el enlace del logo se comporte como un contenedor */
.header .logo a {
    display: block;
    cursor: pointer;
}


/* === NAV === */
.header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header nav ul li {
    position: relative;
}

.header nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.2s; /* Transición suave para el hover */
}

/* Hover en enlaces principales (opcional, pero mejora la UX) */
.header nav ul li a:not(.btn-contacto):hover {
    color: #e91e63;
}

/* === BOTÓN CONTACTO === */
.header .btn-contacto {
    background-color: #e91e63;
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: bold;
}

/* === SUBMENÚS ESCRITORIO === */
.header nav ul li ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    min-width: 250px; /* Incrementado para mejor lectura */
    padding: 10px 0;
    z-index: 1000;
}

.header nav ul li ul li {
    padding: 0;
}

.header nav ul li ul li a {
    padding: 8px 15px; /* Ajustado el padding */
    white-space: nowrap;
}

/* CAMBIO 2: Efecto hover en los enlaces de submenú */
.header nav ul li ul li a:hover {
    background-color: #fce4ec; /* Fondo muy claro para el hover */
    color: #e91e63; /* Texto rosa */
}

/* Segundo nivel de submenú (Integrantes) */
.header nav ul ul ul {
    position: absolute;
    top: 0;
    right: 100%;
    left: auto;
    min-width: 180px;
}

/* === BOTÓN HAMBURGUESA (OCULTO EN ESCRITORIO) === */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #000; /* Color del icono */
    cursor: pointer;
}

/* -------------------------------------- */
/* Estilos del Banner */
/* -------------------------------------- */
.banner { 
    width: 100%;
    height: 657px; /* Altura fija para escritorio */
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 100px; /* Padding a los lados para que el texto no toque los bordes */
    background-color: var(--bg-color);
    font-family: Century Gothic, sans-serif;

    /* 🔹 Suaviza el cambio visual al redimensionar */
    transition: all 0.3s ease;
}

.banner-content {
    margin-bottom: 50px;
}

.banner-content h2 {
    font-size: 45px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;

    /* 🔹 Ajuste suave al reducir ventana */
    transition: font-size 0.3s ease;
}

.banner-content p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Contenedor para las formas en escritorio */
.banner-shapes {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas para las 5 formas */
    gap: 20px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 10px;

    /* 🔹 Hace que el grid se reorganice suavemente */
    transition: all 0.3s ease;
}

/* Estilos de las formas individuales */
.shape {
    width: 160px;
    height: 160px;
    background-color: #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Colores y formas específicas */
.shape-1 { background-color: #21a9a8; }
.shape-2 { 
    background-color: #21a9a8; 
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
}
.shape-3 {
    background-color: #f7b733;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.shape-4 {
    background-color: #f7b733;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
}
.shape-5 {
    background-color: #ed217c;
    border-radius: 50%;
}

/* 🔹 NUEVO BLOQUE: Ajuste fluido entre escritorio y tablet (sin tocar móvil) */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .banner {
        height: auto;
        padding: 60px 40px;
    }

    .banner-content h2 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 15px;
        max-width: 600px;
    }

    .banner-shapes {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 25px;
        max-width: 800px;
    }

    .shape {
        width: 140px;
        height: 140px;
    }
}

/* -------------------------------------- */
/* Estilos generales de ¿Quiénes somos? */
/* -------------------------------------- */
.quienes-somos {
    width: 100%;
    max-width: 1200px;
    min-height: 700px;
    margin: -20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

/* Lado izquierdo: Contenedor de la imagen */
.quienes-somos-image-wrapper {
    position: relative;
    flex: 1 1 50%;
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quienes-somos-image-shape {
    position: relative;
    width: 100%;
    height: auto;
}

.quienes-somos-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background-color: #ed217c;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.experience-badge p:first-child {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.experience-badge p:last-child {
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
}

/* Lado derecho: Contenedor del texto */
.quienes-somos-content {
    flex: 1 1 50%;
    max-width: 600px;
}

.quienes-somos-content h4 {
    font-size: 24px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.quienes-somos-content h2 {
    font-size: 40px;
    color: #222;
    margin: 10px 0 20px;
    line-height: 1.2;
    font-weight: normal;
}

.quienes-somos-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Botón CTA */
.link-cta {
    display: inline-block;
    margin-top: 20px;
    background-color: #218380;
    color: #fff;
    border: 2px solid #218380;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-cta:hover {
    background-color: #085454;
    color: #fff;
}


/* -------------------------------------- */
/* Estilos generales de "Historia + Misión + Visión" */
/* -------------------------------------- */
.historia-mision-vision {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.historia-mision-vision-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
    align-items: stretch;
    transition: all 0.3s ease;
}

/* Columna de la izquierda */
.historia-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.historia-card {
    flex: 1;
    background-color: #f39200;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.historia-card h3 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.historia-card p {
    font-size: 20px;
    line-height: 1.6;
    margin: 50px auto 0;
}

/* Figura */
.figura-card {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.figura-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Columna de la derecha */
.mision-vision-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.vision-card,
.mision-card {
    flex: 1;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vision-card {
    background-color: #218380;
}
.mision-card {
    background-color: #3cb09c;
}

.vision-card h3,
.mision-card h3 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.vision-card p,
.mision-card p {
    font-size: 20px;
    line-height: 1.6;
    margin: 50px auto 0;
}
/* 🔹 NUEVO BLOQUE: Ajuste fluido entre escritorio y tablet (sin tocar móvil) */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .historia-mision-vision {
        padding: 60px 40px;
        height: auto;
    }

    .historia-mision-vision-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 900px;
    }

    .historia-column,
    .mision-vision-column {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }

    .historia-card,
    .vision-card,
    .mision-card {
        width: 100%;
        max-width: 700px;
        padding: 35px;
        height: auto;
    }

    .historia-card h3,
    .vision-card h3,
    .mision-card h3 {
        font-size: 36px;
    }

    .historia-card p,
    .vision-card p,
    .mision-card p {
        font-size: 18px;
    }

    .figura-card {
        order: 2;
        margin-top: 20px;
    }

    .figura-card img {
        max-width: 400px;
    }
}

/* -------------------------------------- */
/* Estilos generales de  "Nuestros Valores" */
/* -------------------------------------- */
/* -------------------------------------- */
/* Estilos generales de  "Nuestros Valores" (ESCRITORIO MEJORADO) */
/* -------------------------------------- */
:root {
    --color-pink-primary: #f06292;
    --color-pink-line: #ed217c;
    --color-gray-bg: #f5f5f5;
    --color-text-dark: #333333;
    --color-text-light: #555555;
}

.nuestros-valores {
    width: 90%;
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
    font-family: 'Century Gothic', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
}

.valores-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.valores-header h2 {
    font-size: 55px;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.valores-header p {
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contenedor de tarjetas */
.valores-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    transition: all 0.3s ease;
}

/* Tarjetas individuales */
.valor-card {
    flex: 1 1 250px;
    max-width: 260px;
    min-height: 380px;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    background-color: var(--color-gray-bg);
    color: var(--color-text-dark);
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.valor-card:hover {
    background-color: var(--color-pink-primary);
    color: #fff;
    transform: translateY(-5px);
}

/* Icono dentro del círculo */
.valor-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: transparent;
}

.valor-icon-wrapper img {
    width: 55px;
    height: 55px;
}

.valor-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Línea decorativa */
.valor-line {
    width: 60px;
    height: 4px;
    background-color: var(--color-pink-line);
    margin: 0 auto 20px;
    border-radius: 2px;
    transition: background-color 0.4s ease;
}

.valor-card p {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Comfortaa', cursive;
    padding: 0 5px;
}

/* Hover línea blanca */
.valor-card:hover .valor-line {
    background-color: #fff;
}
/* 🔹 Ajuste fluido entre 1024px y 769px */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .nuestros-valores {
        width: 90%;
        padding: 0 30px;
    }

    .valores-header h2 {
        font-size: 48px;
    }

    .valores-header p {
        font-size: 17px;
    }

    .valores-grid {
        justify-content: center;
        gap: 20px;
    }

    .valor-card {
        flex: 1 1 45%;
        max-width: 340px;
        min-height: 350px;
        padding: 25px 20px;
    }

    .valor-card h3 {
        font-size: 22px;
    }

    .valor-card p {
        font-size: 15px;
    }

    .valor-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .valor-icon-wrapper img {
        width: 50px;
        height: 50px;
    }
}


/* -------------------------------------- */
/* Estilos generales de Equipo */
/* -------------------------------------- */
.equipo {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
}

.equipo h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.equipo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    justify-items: center;
}

/* El enlace que envuelve la tarjeta */
.equipo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.equipo-item {
    width: 400px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animación cuando se pasa el mouse */
.equipo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fondo1 { background-image: url("../imagenes/equipo/Fondo\ 1.png"); }
.fondo2 { background-image: url("../imagenes/equipo/Fondo\ 2.png"); }
.fondo3 { background-image: url("../imagenes/equipo/Fondo\ 3.png"); }
.fondo4 { background-image: url("../imagenes/equipo/Fondo\ 4.png"); }

.equipo-foto {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 80%;
    z-index: 1;
}

.equipo-info {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    padding: 12px 0;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.equipo-info h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

.equipo-info p {
    font-size: 0.9rem;
    color: gray;
    margin: 0;
}

.equipo-info-e {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    padding: 12px 0;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.equipo-info-e h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

.equipo-info-e p {
    font-size: 0.9rem;
    color: gray;
    margin: 0;
}

/* -------------------------------------- */
/* Estilos generales de Testimonio del Equipo */
/* -------------------------------------- */
.testimonios-section {
    width: 100%;
    height: auto; /* Altura automática para que se ajuste al contenido */
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px; /* Reducción de padding */
    box-sizing: border-box;
}

.testimonios-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.testimonios-container h2 {
    font-size: 48px; /* Tamaño de fuente reducido */
    font-weight: bold;
    color: #333;
    margin-bottom: 30px; /* Espacio debajo del título reducido */
}

.video-container {
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
    position: relative;
    padding-top: 56.25%; /* Mantiene el aspect ratio 16:9 */
    background-color: #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Pseudo-elemento para el botón de reproducción (opcional) */
.video-container::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; /* Tamaño del botón reducido */
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

/* -------------------------------------- */
/* Estilos del Formulario Contacto*/
/* -------------------------------------- */
.contact-form-container {
    width: 100%;
    max-width: 1200px;
    height: 940px;
    margin: 50px auto;
    /* Color de fondo eliminado para que se vea el fondo de la página */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.contact-form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.contact-form-content {
    width: 50%;
    padding: 0 50px 0 20px;
}

.contact-form-image-box {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end; /* Alinea la imagen a la derecha */
    align-items: center;
    overflow: hidden; /* Oculta cualquier parte de la imagen que sobresalga */
}

.contact-form-image-box img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Asegura que la imagen se muestre completa dentro del contenedor */
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 500;
    color: #333333;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 20px;
}

.contact-form-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 50px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    box-sizing: border-box;
    background-color: #f7f3ed;
    transition: border-color 0.3s;
}

.contact-form input::placeholder {
    color: #8c8c8c;
    font-style: italic;
}

.form-divider {
    height: 1px;
    background-color: #d3d3d3;
    margin: 40px 0;
}

.form-checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #333333;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #333333;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f7f3ed;
}

.contact-form-button {
    display: inline-block;
    background-color: #33614a;
    border: 2px solid #33614a;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.contact-form-button:hover {
    background-color: #2a523e;
    border-color: #2a523e;
}

/* -------------------------------------- */
/* Estilos del footer completo */
/* -------------------------------------- */
.main-footer {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.footer-top-bg {
    background-color: #fff; /* El color de fondo de la parte superior */
    padding: 20px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 263px;
    box-sizing: border-box;
}

/* Contenedor principal del contenido izquierdo */
.footer-content-wrapper {
    display: flex;
    flex: 1; /* Ocupa el espacio disponible */
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    box-sizing: border-box;
    margin: 50px auto 0;
}

/* Contenedor del logo y los íconos de redes sociales */
.footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 50px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    margin: -50px auto 0;
}
.social-icons {
    margin: -50px auto 0;
    display: flex;
}

.social-icons a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    margin-left: 15px;
}

/* Contenedor de las columnas de enlaces */
.footer-links-container {
    display: flex;
    gap: 80px;
}

.footer-trans {
    color: #c2c1c1;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #666;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ed217c;
}

/* Contenedor de la información de contacto */
.footer-contact-info {
    width: 40%;
    background-color: #ed217c;
    color: #fff;
    padding: 20px 40px 20px 20px;
    border-radius: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.footer-contact-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

/* Sección inferior del footer */
.footer-bottom-bg {
    width: 100%;
    background-color: #d1d1d1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    box-sizing: border-box;
    font-size: 14px;
    color: #555;
}

/* -------------------------------------- */
/* 1. Estilos Base del Modal (#success-modal) */
/* -------------------------------------- */

#success-modal {
    /* Posicionamiento y Capa de Fondo */
    position: fixed; /* Fijo en la pantalla */
    z-index: 1000; /* Asegura que esté por encima de todos los demás elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semi-transparente */
    
    /* Centrado del Contenido */
    display: flex; /* Se usa flexbox para centrar el 'modal-content-custom' */
    justify-content: center;
    align-items: center;
}

.modal-content-custom {
    /* Contenedor del Mensaje */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    width: 90%; /* Ancho base para móviles */
    max-width: 550px; /* Ancho máximo para escritorio */
    text-align: center;
}

/* -------------------------------------- */
/* 2. Estilos de Diseño y Tipografía */
/* -------------------------------------- */

.close-button-custom {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-button-custom:hover {
    color: #333;
}

.modal-title-custom {
    /* Estilo inclinado y grande */
    font-family: 'Times New Roman', serif; /* Ajusta si usas otra fuente elegante */
    font-style: italic; 
    font-size: 55px; 
    color: #333;
    line-height: 1.1;
    margin-bottom: 5px;
    transform: skewX(-5deg); /* La inclinación */
    display: block; 
    padding-top: 10px;
}

/* Estilo para el Check Mark (simulación con color temático) */
.modal-check-mark {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    background-color: #F06292; /* Color de tu marca (rosa/fucsia) */
    border-radius: 50%;
    position: relative;
}

/* Si quieres agregar el símbolo de check (opcional) */
.modal-check-mark::after {
    content: '✓';
    font-size: 70px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}