/* 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;
}

/* === 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;
}

/* === 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; /* Corrección: el primer submenú se alinea a la derecha */
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    min-width: 180px;
    padding: 10px 0;
    z-index: 1000;
}

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

.header nav ul li ul li a {
    padding: 5px 15px;
    white-space: nowrap;
}

/* Segundo nivel de submenú (Integrantes) */
.header nav ul ul ul {
    position: absolute;
    top: 0;
    right: 100%; /* CORRECCIÓN CLAVE: el submenú se despliega hacia la izquierda */
    left: auto;
}

/* === BOTÓN HAMBURGUESA (OCULTO EN ESCRITORIO) === */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    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;
}

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

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

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

/* 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;
}

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

/* 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%;
}

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

/* Lado izquierdo: Contenedor de la imagen y la forma */
.quienes-somos-image-wrapper {
    position: relative;
    width: 600px; /* Tamaño del contenedor */
    height: 600px;
    display: flex; /* Usamos flexbox para centrar la imagen */
    align-items: center;
    justify-content: center;
}

.quienes-somos-image-shape {
    /* Este div lo usamos como contenedor para la imagen y el badge */
    position: relative;
    width: 100%;
    height: 100%;
}

.quienes-somos-image {
    width: 100%; /* Ocupa todo el contenedor para mantener la proporción de la imagen */
    height: 100%;
    object-fit: contain; /* Ajusta la imagen dentro del contenedor sin distorsionarla */
    z-index: 1; /* Asegura que la imagen esté detrás del badge */
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: -20px; /* Posiciona el badge a la derecha para que se superponga */
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    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: 40px;
    font-weight: bold;
    margin: 0;
}

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

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

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

.quienes-somos-content h2 {
    font-size: 42px;
    font-weight: bold;
    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;
}

/* Estilos para el botón de llamada a la acción */
.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%;
    height: 1105px; /* Altura fija como solicitaste */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
}

.historia-mision-vision-container {
    width: 100%;
    max-width: 1200px;
    height: 80%; /* Ajustamos la altura para que las tarjetas ocupen el espacio deseado */
    display: flex;
    gap: 40px;
    align-items: stretch; /* Esto hace que los items se estiren para llenar el contenedor */
}

/* Columna de la izquierda */
.historia-column {
    flex: 1;
    height: 100%; /* El 100% de la altura del contenedor padre */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye Misión y Visión con espacio entre ellos */
}

.historia-card {
    width: 100%;
    height: calc(50% - 20px); /* Dividimos la altura disponible y restamos la mitad del gap */
    background-color: #f39200;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

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

/* Columna de la derecha */
.mision-vision-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye Misión y Visión con espacio entre ellos */
    height: 100%; /* Ocupa el 100% de la altura del contenedor padre */
}

.vision-card {
    width: 100%;
    height: calc(50% - 20px); /* Dividimos la altura disponible y restamos la mitad del gap */
    background-color: #218380;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.mision-card {
    width: 100%;
    height: calc(50% - 20px); /* Dividimos la altura disponible y restamos la mitad del gap */
    background-color: #3cb09c;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

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

/* -------------------------------------- */
/* Estilos generales de  "Nuestros Valores" */
/* -------------------------------------- */
:root {
    --color-pink-primary: #f06292; /* Rosado oscuro para el card activo */
    --color-pink-line: #ed217c; /* Rosado más vibrante para la línea/fondo */
    --color-gray-bg: #f5f5f5; /* Gris claro para el fondo de los cards inactivos */
    --color-text-dark: #333333;
    --color-text-light: #555555;
    /* Puedes añadir más colores aquí si los necesitas en el futuro */
}

/* -------------------------------------- */
/* Estilos generales de "Nuestros Valores" (ESCRITORIO) */
/* -------------------------------------- */
.nuestros-valores {
    width: 80%;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 50px;
    font-family: 'Century Gothic', sans-serif; /* Título */
    text-align: center;
}

.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; /* Párrafo */
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contenedor de la cuadrícula de tarjetas */
.valores-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Estilos de las tarjetas individuales (Estado por defecto/Gris) */
.valor-card {
    flex: 1; 
    max-width: 250px;
    min-height: 380px;
    padding: 30px 15px;
    border-radius: 12px;
    text-align: center;
    
    /* Estado inicial: Gris para todas las tarjetas */
    background-color: var(--color-gray-bg); 
    color: var(--color-text-dark);
    
    /* Transición suave para el hover y el JS */
    transition: background-color 0.4s ease, color 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

/* 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; /* Círculo interior transparente*/
}

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

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

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

/* Texto de descripción corta */
.valor-card p {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Comfortaa', cursive;
    padding: 0 5px;
}

/* -------------------------------------- */
/* Efecto HOVER (ESCRITORIO) */
/* -------------------------------------- */

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

.valor-card:hover .valor-line {
    background-color: #fff; /* Cambia a blanco en estado hover */
}


/* -------------------------------------- */
/* 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;
}

/* -------------------------------------- */
/* 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*/
/* -------------------------------------- */
.team-form-container {
    width: 100%;
    max-width: 1200px;
    height: 940px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

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

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

.team-form-image-box {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.team-form-image-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

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

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

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

.team-form input[type="text"],
.team-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;
}

.team-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;
}

.team-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;
}

.team-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;
}

/* 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;
}

.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%);
}