* {
        box-sizing: border-box;
    }
/* -------------------------------------- */
/* 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-section {
    width: 100%;
    max-width: 1400px;
    height: 988px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.banner-text-top {
    margin-bottom: 50px;
}

.banner-text-top p {
    font-size: 1.2rem;
    color: #000;
    font-weight: 500;
    margin: 0;
}

.banner-text-top h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
    position: relative;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
}

.pink-title {
    color: #e91e63;
}

/* Ícono al lado de la "a" (escritorio) */
.graf-icon {
    width: 30px;
    height: auto;
    position: relative;
    margin-left: 8px;
    margin: -37px auto 0;
    top: -5px;
    vertical-align: middle;
}

.banner-text-top .subtitle {
    font-size: 1.1rem;
    color: #555;
    letter-spacing: 2px;
}

.banner-main-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.chef-image-container {
    position: relative;
    z-index: 2;
}

.pink-square-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: #e91e63;
    z-index: -1;
}

.chef-image {
    width: 400px;
    height: auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1;
}

.quote-box {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    text-align: left;
}

.quote-box p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
}

.quote-icon {
    width: 40px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.experience-circle {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background-color: #e91e63;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}


/* -------------------------------------- */
/* Responsive - Móvil */
/* -------------------------------------- */
.desktop-only { display: block; }
.mobile-only { display: none; }


/* -------------------------------------- */
/* Estilos del Frame 001 */
/* -------------------------------------- */
.about-section {
    width: 100%;
    max-width: 1400px; /* Ancho de las secciones anteriores */
    height: 800px; /* Altura especificada */
    margin: -35px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    background-color: #f8f8f8; /* Un ligero fondo para contrastar */
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px; /* Ajusta este valor si necesitas más o menos separación */
    gap: 80px; /* Espacio entre la imagen y el texto */
}

.about-image-wrapper {
    flex: 0 0 auto; /* No crece ni se encoge, tamaño fijo */
    width: 500px; /* Ajusta el ancho según la imagen de referencia */
    height: 500px; /* Ajusta la altura según la imagen de referencia */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Asegura que la imagen no se salga si es muy grande */
}

.about-pattern-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el contenedor sin distorsionarse */
    display: block;
}

.about-text-content {
    flex: 1; /* Permite que el texto ocupe el espacio restante */
    text-align: left;
    max-width: 500px; /* Limita el ancho del texto para mejor legibilidad */
}

.about-text-content h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.8rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: normal;
}

.about-text-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

/* -------------------------------------- */
/* Estilos del Frame 002 */
/* -------------------------------------- */
:root {
    --color-pink-primary: #ec0868; /* Color de fondo */
    --color-text-light: #ffffff; /* Texto blanco */
}

/* Keyframes para la decoración de fondo (solo CSS) */
@keyframes background-move {
    0% { background-position: 0% 0; }
    100% { background-position: 100% 100%; }
}

.contact-section {
    width: 100%;
    /* Altura ajustada para ser compacta, como en la imagen */
    height: 250px; 
    margin: 0 auto;
    background-color: var(--color-pink-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    position: relative; /* Para la decoración */
    overflow: hidden;
    
    /* Decoración de fondo basada en la imagen de referencia */
    background-image: url("data:image/svg+xml,..."); /* Aquí iría un SVG o una imagen de las formas rosas */
    /* Como no tengo el SVG, usaré un gradiente para simular la textura */
    background-image: radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.1) 1%, transparent 10%), radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1) 1%, transparent 10%);
    background-size: 400px 400px;
    background-repeat: repeat;
    animation: background-move 60s linear infinite alternate; /* Animación suave del fondo */
}

.contact-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    /* Los elementos se alinean horizontalmente y el texto se alinea a la izquierda */
    justify-content: space-between; 
    align-items: center;
    position: relative;
    z-index: 10; /* Asegura que el contenido esté sobre el fondo */
}

/* --- Área de Texto --- */
.contact-text-content {
    color: var(--color-text-light);
    text-align: left;
}

.contact-text-content h2 {
    /* Usamos 'Playfair Display' o similar para el toque elegante del título */
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem;
    font-weight: 300; /* Más delgado, como en la imagen */
    margin: 0;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-link {
    /* Fuente sans-serif simple para el texto de contacto */
    font-family: 'Inter', 'Montserrat', sans-serif; 
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 5px 0;
}


/* --- Área de Círculos de Redes Sociales --- */
.contact-circles-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-circle {
    /* El círculo completo (el que es blanco) */
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background-color: var(--color-text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Quitamos el subrayado si es un <a> */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-circle img {
    /* Tamaño del ícono de la red social dentro del círculo */
    width: 25px; 
    height: 25px;
    object-fit: contain;
}

/* -------------------------------------- */
/* Estilos del Frame 003 */
/* -------------------------------------- */
.info-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.info-text-wrapper {
    flex: 1;
}

.info-text-wrapper p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.signature-text {
    font-family: 'Dancing Script', cursive; /* o la tipografía cursiva que uses */
    font-size: 1.4rem;
    font-weight: 500;
    color: #000;
    margin-top: 20px;
}

.info-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    
}

.info-image {
    width: 100%;
    max-width: 420px;
    border: 4px solid #F682B1;
    border-radius: 16px;
    object-fit: cover;
}

/* -------------------------------------- */
/* Estilos del Formulario */
/* -------------------------------------- */
.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%);
}