/* ============================================
   ESTILOS GENERALES Y VARIABLES
   ============================================ */

:root {
    --color-primary: #2c5366;
    --color-secondary: #4c5c6b;
    --color-background: #ebeaec;
    --color-text: #333;
    --color-light: #f5f5f5;
    --color-accent: #2c5366;
    --font-title: 'Allura', cursive;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    cursor: url('../imagenes/corazon_blanco.png'), auto; /* Nuevo cursor de corazón blanco */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BANNER CARRUSEL
   ============================================ */

.banner-carousel {
    width: 100%;
    height: 500px;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid white;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.fade {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */

.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(44, 83, 102, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Animación del logo: movimiento de izquierda a derecha */
.animated-logo {
    animation: slideLogo 3s ease-in-out infinite;
}

@keyframes slideLogo {
    0% {
        transform: translateX(-20px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(20px);
        opacity: 1;
    }
    100% {
        transform: translateX(-20px);
        opacity: 0.8;
    }
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ============================================
   BOTÓN DE IDIOMA
   ============================================ */

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.85rem;
    white-space: nowrap;
}

.lang-button:hover {
    background-color: var(--color-accent);
    transform: scale(1.05);
}

.lang-button .flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-button .flag-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lang-button .lang-text {
    font-size: 0.75rem;
    font-weight: 700;
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .lang-button {
        gap: 4px;
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .lang-button .flag {
        font-size: 0.9rem;
    }
    
    .lang-button .flag-img {
        width: 16px;
        height: 16px;
    }
    
    .lang-button .lang-text {
        font-size: 0.7rem;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .lang-button {
        gap: 3px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .lang-button .flag {
        font-size: 0.8rem;
    }
    
    .lang-button .flag-img {
        width: 14px;
        height: 14px;
    }
    
    .lang-button .lang-text {
        font-size: 0.65rem;
    }
}

/* ============================================
   SECCIÓN HERO
   ============================================ */

.hero {
    padding: 0;
    background-color: var(--color-primary);
}

.hero-container {
    display: flex;
    min-height: 600px; /* Altura mínima para que la imagen se vea bien */
    max-width: 100%;
    margin: 0;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background-color: transparent;
    color: white;
    text-align: left;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4.5rem; /* Un poco más grande */
    color: var(--color-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-light);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Ajuste para el botón CTA en la nueva sección Hero */
.hero-text-content .cta-button {
    align-self: flex-start;
    background-color: var(--color-light);
    color: var(--color-primary);
    border-color: var(--color-light);
    font-weight: 700;
}

.hero-text-content .cta-button:hover {
    background-color: transparent;
    color: var(--color-light);
}

/* Media Queries para la sección Hero */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .hero-text-content {
        padding: 30px;
        text-align: center;
    }

    .hero-text-content .cta-button {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BOTONES CTA
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    cursor: pointer;
}

.cta-button:hover {
    background-color: white;
    color: var(--color-primary);
    transform: scale(1.05);
}

.cta-whatsapp {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ============================================
   SECCIÓN TÍTULOS
   ============================================ */

.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--color-accent);
}

/* ============================================
   SECCIÓN SERVICIOS
   ============================================ */

.servicios {
    padding: 80px 0;
    background-color: white;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.servicio-card {
    background-color: var(--color-background);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(44, 83, 102, 0.1);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 83, 102, 0.2);
}

.servicio-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; /* Aumentar la altura del contenedor del icono */
}

.servicio-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
    width: 80px; /* Tamaño fijo para iconos más grandes */
    height: 80px;
}

.servicio-card:hover .servicio-icon img {
    transform: scale(1.05);
}

.servicio-card h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.servicio-card p {
    color: var(--color-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   SECCIÓN PLANES
   ============================================ */

.planes {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.planes .section-title {
    color: white;
}

.planes .section-title::after {
    background-color: white;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fija para todas las imágenes */
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    transition: var(--transition);
    filter: grayscale(0%); /* Asegurar color por defecto */
}

.plan-card:hover .plan-image {
    transform: translateX(5%); /* Deslizamiento sutil a la derecha, sin zoom */
    filter: brightness(1.2) saturate(1.2); /* Cambio de color (más brillo y saturación) */
}

.plan-image.grayscale-on-click {
    filter: grayscale(100%) !important; /* Forzar blanco y negro al hacer clic */
    transform: translateX(0%) !important; /* Resetear el deslizamiento */
}

.plan-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.plan-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.plan-detail img {
    width: 30px; /* Aumentar el tamaño del icono */
    height: 30px;
    object-fit: contain;
}

.plan-icon-small {
    width: 20px; /* Revertir al tamaño original o eliminar si no se usa */
    height: 20px;
    object-fit: contain;
}

.plan-description {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
}

.plan-description-main {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.plan-includes {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid white;
}

.plan-includes h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #d0d0d0;
    font-size: 0.85rem;
}

.plan-item:last-child {
    margin-bottom: 0;
}

.plan-item img {
    width: 30px; /* Aumentar el tamaño del icono */
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.plan-footer {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
}

.plan-footer .plan-detail {
    flex: 1;
    margin-bottom: 0;
}

.plan-card .cta-button {
    align-self: flex-start;
    margin-top: 20px;
}

/* ============================================
   SECCIÓN MODELOS
   ============================================ */

.modelos {
    padding: 80px 0;
    background-color: white;
}

.modelos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modelo-card {
    background-color: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(44, 83, 102, 0.1);
    transition: var(--transition);
}

.modelo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 83, 102, 0.2);
}

.modelo-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.modelo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.modelo-card:hover .modelo-image {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.modelo-info {
    padding: 20px;
}

.modelo-nombre {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.modelo-edad {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.modelo-descripcion {
    color: var(--color-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.modelo-card .cta-button {
    width: 100%;
    text-align: center;
}

/* ============================================
   SECCIÓN CONTACTO
   ============================================ */

.contacto {
    padding: 80px 0;
    background-color: var(--color-background);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contacto-info h3,
.contacto-redes h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contacto-info p {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contacto-redes {
    text-align: center;
}

.social-links-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link img {
    width: 60px;
    height: 60px;
    transition: var(--transition);
    object-fit: contain;
}

.social-link:hover img {
    transform: scale(1.2);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================================
   WIDGET WHATSAPP FLOTANTE
   ============================================ */

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: bounce 2s infinite;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-widget a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   RESPONSIVIDAD - TABLETS
   ============================================ */

@media (max-width: 768px) {
    .banner-carousel {
        height: 350px;
    }

    .carousel-controls {
        bottom: 15px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .hero {
        height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .servicio-card {
        padding: 25px 20px;
    }

    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .modelos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contacto-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-widget a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-widget img {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   RESPONSIVIDAD - MÓVILES
   ============================================ */

@media (max-width: 480px) {
    .banner-carousel {
        height: 250px;
    }

    .carousel-controls {
        bottom: 10px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .logo {
        height: 70px;
    }

    .nav-menu ul {
        gap: 10px;
        font-size: 0.8rem;
    }

    .hero {
        height: 250px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .servicio-card {
        padding: 20px 15px;
    }

    .servicio-icon {
        height: 80px;
    }

    .servicio-card h3 {
        font-size: 1.1rem;
    }

    .servicio-card p {
        font-size: 0.85rem;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .plan-image-wrapper {
        height: 350px;
    }

    .plan-content {
        padding: 20px;
    }

    .plan-title {
        font-size: 1.1rem;
    }

    .modelos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modelo-image-wrapper {
        height: 250px;
    }

    .modelo-nombre {
        font-size: 1.1rem;
    }

    .modelo-descripcion {
        font-size: 0.8rem;
    }

    .contacto {
        padding: 40px 0;
    }

    .contacto-info h3,
    .contacto-redes h3 {
        font-size: 1.3rem;
    }

    .contacto-info p {
        font-size: 0.95rem;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-widget a {
        width: 45px;
        height: 45px;
    }

    .whatsapp-widget img {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   ANIMACIONES ADICIONALES
   ============================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ============================================
   FORMULARIO DE CONTACTO
   ============================================ */

.formulario-contacto {
    padding: 80px 0;
    background-color: white;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: linear-gradient(135deg, var(--color-background) 0%, #f9f8fa 100%);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(44, 83, 102, 0.15);
    width: 100%;
    max-width: 500px;
    border: 2px solid rgba(44, 83, 102, 0.1);
}

.form-container h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 15px 20px;
    border: 2px solid rgba(44, 83, 102, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background-color: white;
    color: var(--color-text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44, 83, 102, 0.1);
    background-color: #fafbfc;
}

.form-group input::placeholder {
    color: #999;
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-submit {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 83, 102, 0.3);
}

.form-message {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 10px;
    display: none;
    padding: 12px;
    border-radius: 5px;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   SECCION DE SEDES
   ============================================ */

.sedes {
    padding: 80px 0;
    background-color: var(--color-background);
}

.sedes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.sede-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(44, 83, 102, 0.1);
    transition: var(--transition);
}

.sede-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 83, 102, 0.2);
}

.sede-card h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.sede-descripcion {
    color: var(--color-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sede-card .cta-button {
    display: inline-block;
}

/* Responsividad para formulario y sedes */
@media (max-width: 768px) {
    .form-container {
        padding: 40px 25px;
        max-width: 100%;
    }

    .form-container h3 {
        font-size: 1.5rem;
    }

    .sedes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }

    .form-container h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .form-group input {
        padding: 12px 15px;
        font-size: 16px;
    }

    .sede-card {
        padding: 25px 20px;
    }

    .sede-card h3 {
        font-size: 1.4rem;
    }

    .sede-descripcion {
        font-size: 0.9rem;
    }
}

/* Estilos adicionales para planes mejorados */
.plan-description-main {
    color: var(--color-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.plan-includes {
    background-color: rgba(44, 83, 102, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-primary);
}

.plan-includes h4 {
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-size: 0.85rem;
}

.plan-item:last-child {
    margin-bottom: 0;
}

.plan-item img {
    width: 30px; /* Aumentar el tamaño del icono */
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================
   LOGO FINAL
   ============================================ */

.logo-final {
    padding: 60px 0;
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-footer {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-footer:hover {
    transform: scale(1.05);
}

/* ============================================
   CURSOR PERSONALIZADO
   ============================================ */

body {
    cursor: url('../imagenes/corazon_blanco.png'), auto; /* Nuevo cursor de corazón blanco */
}

a, button, [role="button"] {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%232c5366"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/>') 12 12, pointer;
}

/* ============================================
   SECCIÓN MÉTODOS DE PAGO
   ============================================ */

.payment-methods {
    padding: 80px 0;
    background-color: var(--color-light);
    text-align: center;
}

.payment-description {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-image-wrapper {
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.reservation-info {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(44, 83, 102, 0.1);
    display: inline-block;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-description {
        font-size: 1rem;
    }
    
    .reservation-info {
        font-size: 1.2rem;
    }
}
