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

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

/* -------------------------------------- */
/* Estilos del Banner */
/* -------------------------------------- */
.main-banner {
    width: 85%;
    max-width: 1400px;
    height: 750px; 
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #fff;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.banner-text {
    width: 50%;
    padding-right: 40px;
    box-sizing: border-box;
}

.banner-pre-title {
    color: #218380;
    font-size: 16px;
    margin-bottom: 10px;
}

.banner-title {
    font-family: 'Century Gothic', sans-serif;
    font-size: 56px;
    font-weight: normal;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.1;
}

.banner-title .highlight {
    color: #218380;
}

.banner-subtitle {
    color: #444;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.banner-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.banner-features li {
    color: #444;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.banner-features li::before {
    content: '•';
    color: #EC8A10;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}

.cta-banner {
    display: inline-block;
    background-color: #EC8A10;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.cta-banner:hover {
    background-color: #d1780d;
}

.banner-image {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
}

/* -------------------------------------- */
/* Estilos de ¿Quiénes somos? */
/* -------------------------------------- */
.about-us-section {
    width: 85%;
    max-width: 1400px;
    height: 593px;
    margin: -100px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
}

.about-us-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about-us-image {
    width: 50%;
    position: relative;
    padding-right: 50px;
    box-sizing: border-box;
}

.about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    animation: glowing-border 3s ease-in-out infinite;
}

@keyframes glowing-border {
    0% {
        filter: drop-shadow(0 0 10px #f59b4c);
    }
    25% {
        filter: drop-shadow(0 0 10px #c64cf5);
    }
    50% {
        filter: drop-shadow(0 0 10px #4c9bf5);
    }
    75% {
        filter: drop-shadow(0 0 10px #218380);
    }
    100% {
        filter: drop-shadow(0 0 10px #f59b4c);
    }
}

.about-us-content {
    width: 50%;
    padding-left: 50px;
    box-sizing: border-box;
}

.about-us-title {
    font-family: 'Century Gothic', sans-serif;
    font-size: 48px;
    font-weight: normal;
    color: #222;
    margin-bottom: 20px;
}

.about-us-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-us-button {
    display: inline-block;
    background-color: #218380;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.about-us-button:hover {
    background-color: #2f9479;
}


/* -------------------------------------- */
/* Estilos de Empresas Aliadas */
/* -------------------------------------- */
.partners-section {
    width: 100%;
    height: 250px;
    background-image: url('../imagenes/inicio/Fondo Empresas.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
}

.partners-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 60px;
}

.logo-carousel {
    width: 100%;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}

.logos-slide {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: slide 30s linear infinite;
}

.logos-slide img {
    height: 80px;
    margin: 0 40px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Animación del Carrusel */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* -------------------------------------- */
/* Estilos de Beneficios */
/* -------------------------------------- */
.benefits-section {
    width: 85%;
    max-width: 1400px; /* Ancho máximo para el contenedor */
    height: 1034px;
    margin: -100px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: transparent;
    position: relative;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.benefits-image-container {
    width: 50%;
    position: relative;
    padding-right: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-image-container img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.benefits-link {
    color: #ed217c;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.benefits-link:hover {
    color: #d11e6e;
}

.benefits-content {
    width: 50%;
    padding-left: 50px;
    box-sizing: border-box;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 37px;
    font-weight: normal;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.1;
}

.benefits-title .highlight-text {
    color: #ed217c;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.icon-circle.icon-pink { background-color: #ed217c; }
.icon-circle.icon-green { background-color: #38b492; }
.icon-circle.icon-yellow { background-color: #fcc228; }

.benefit-item p {
    color: #555;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.benefits-button {
    display: inline-block;
    background-color: #ed217c;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.benefits-button:hover {
    background-color: #d11e6e;
}

/* -------------------------------------- */
/* Estilos de Nuestros Servicios */
/* -------------------------------------- */
.services-section {
    width: 100%;
    max-width: 1200px;
    height: auto; /* Cambiado a auto para que se adapte al contenido */
    margin: -80px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    box-sizing: border-box;
    background-color: transparent;
    position: relative;
}

.services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: normal;
    color: #222;
    margin-bottom: 60px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-top {
    height: 250px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 20px 20px 0 0;
}

.card-bottom {
    height: 250px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
}

/* Colores de fondo para las tarjetas */
/* Esta sección la vamos a mantener porque sí está bien */
.service-card.service-1 .card-top { background-color: #e5f1f0; }
.service-card.service-2 .card-top { background-color: #f9e2f9; }
.service-card.service-3 .card-top { background-color: #f7eedb; }
.service-card.service-4 .card-top { background-color: #e3f2fd; }
.service-card.service-5 .card-top { background-color: #f9e2f9; }
.service-card.service-6 .card-top { background-color: #f7eedb; }

/* Círculos de los íconos con sus propios colores de fondo */
.card-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 40px;
    left: 40px;
}

/* Colores y la imagen como fondo para cada círculo */
.service-card.service-1 .card-icon-circle { background-color: #ed217c; }
.service-card.service-2 .card-icon-circle { background-color: #f28cf0; }
.service-card.service-3 .card-icon-circle { background-color: #fcae12; }
.service-card.service-4 .card-icon-circle { background-color: #57d2d3; }
.service-card.service-5 .card-icon-circle { background-color: #ed217c; } /* Corregí el color aquí para que coincida con la imagen de referencia */
.service-card.service-6 .card-icon-circle { background-color: #fcae12; } /* Corregí el color aquí para que coincida con la imagen de referencia */

/* Estilo para las imágenes dentro del círculo */
.card-icon-circle img {
    max-width: 40px; 
    max-height: 40px;
    /* La imagen ya es blanca, por lo que no necesita un color adicional */
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 24px;
    font-weight: normal;
    color: #333;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 10px;
}

.card-number {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: 40px;
    top: 40px;
}

/* Colores de los números */
.service-card.service-1 .card-number { color: #ed217c; }
.service-card.service-2 .card-number { color: #f28cf0; }
.service-card.service-3 .card-number { color: #fcae12; }
.service-card.service-4 .card-number { color: #57d2d3; }
.service-card.service-5 .card-number { color: #ed217c; } /* Corregí el color aquí para que coincida con la imagen de referencia */
.service-card.service-6 .card-number { color: #fcae12; } /* Corregí el color aquí para que coincida con la imagen de referencia */

.card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

/* Colores de los enlaces */
.service-card.service-1 .read-more { color: #ed217c; }
.service-card.service-2 .read-more { color: #f28cf0; }
.service-card.service-3 .read-more { color: #fcae12; }
.service-card.service-4 .read-more { color: #57d2d3; }
.service-card.service-5 .read-more { color: #ed217c; } /* Corregí el color aquí para que coincida con la imagen de referencia */
.service-card.service-6 .read-more { color: #fcae12; } /* Corregí el color aquí para que coincida con la imagen de referencia */

.read-more:hover {
    color: #d11e6e;
}

.cta-services {
    display: inline-block;
    background-color: #EC8A10;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 60px;
    transition: background-color 0.3s ease;
}

.cta-services:hover {
    background-color: #d1780d;
}

/* -------------------------------------- */
/* Estilos de Flujo de trabajo */
/* -------------------------------------- */
.work-process-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    height: 652px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.work-process-container {
    width: 100%;
}

.work-process-section .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 5px;
}

.work-process-section .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
}

.step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: auto;
}

.step-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.4;
}

.step-separator {
    font-size: 40px;
    color: #ccc;
    font-weight: lighter;
    display: flex;
    align-items: center;
    margin-top: 50px;
    height: 120px; /* Alineamos con los círculos */
}

/* Colores de los círculos */
.step-1-color { background-color: #f2b934; }
.step-2-color { background-color: #1c998c; }
.step-3-color { background-color: #ec9e20; }
.step-4-color { background-color: #e03387; }
.step-5-color { background-color: #f2b934; }

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

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