* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta: Violeta Claro, Blanco Puro y Dorado - Elegancia Luminosa */
    
    /* Colores principales */
    --primary-color: #f4eefa;        /* Violeta muy claro */
    --primary-color2: #E6D7F5;        /* Violeta muy claro */
    --secondary-color: #F3EBFF;      /* Violeta casi blanco */
    --accent-color: #D4AF37;         /* Dorado */
    --text-light: #FFFFFF;           /* Blanco */
    --text-dark: #5B2C6F;            /* Violeta oscuro para contraste */
    
    /* Colores de gradiente */
    --gradient-start: #E6D7F5;       /* Violeta muy claro */
    --gradient-end: #F3EBFF;         /* Violeta casi blanco */
    
    /* Colores de header */
    --header-bg-start: #FFFFFF;      /* Blanco */
    --header-bg-end: #F8F8FF;        /* Blanco lavanda */
    --header-text: #5B2C6F;          /* Violeta oscuro */
    
    /* Colores de highlights */
    --highlight: #e7ba3c;     /* Dorado claro */
    
    /* Colores de formulario */
    --input-bg: rgba(255, 255, 255, 0.6);  /* Blanco semi-transparente */
    --input-text: #5B2C6F;           /* Violeta oscuro */
    --input-border: rgba(212, 175, 55, 0.5);  /* Dorado transparente */
    --button-bg-start: #D4AF37;      /* Dorado */
    --button-bg-end: #E8C84C;        /* Dorado claro */
    --button-text: #FFFFFF;          /* Blanco */
    
    /* Colores de testimonios */
    --testimonial-bg: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* LAYOUT */
.container {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
}
.top{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-dark);
}
.mid{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/* LAYOUT */

/* HOOK TEXT */
.title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.highlight {
    color: var(--highlight);
    text-shadow: 1px 1px 1px #747474;
}
.subtitle {
    width: 300px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    color: var(--text-dark);
}
/* HOOK TEXT */


/* Form Section */
.form-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
}

.tarot-card {
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.tarot-card img {
    height: 180px;
    width: auto;
    display: block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.form {
    display: flex;
    flex-direction: column;
    width: 100px;
    gap: 12px;
    flex: 1;
}

.input {
    background: var(--input-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--input-border);
    border-radius: 25px;
    padding: 12px 20px;
    color: var(--input-text);
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.input::placeholder {
    color: rgba(91, 44, 111, 0.5);
    font-style: italic;
}

.input:focus {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.submit-btn {
    background: linear-gradient(135deg, var(--button-bg-start) 0%, var(--button-bg-end) 100%);
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--button-text);
    cursor: pointer;
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Mensaje de respuesta del formulario */
.form-msg {
    margin-top: 15px;
    padding: 12px;
    border-radius: 15px;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-msg.ok {
    background: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.form-msg.error {
    background: rgba(244, 67, 54, 0.15);
    color: #c62828;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

/* Testimonials */
.testimonios-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.testimonios-row {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
}

.testimonio {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc((100% - 20px) / 3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 12px 10px;
    transition: all 0.3s ease;
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 12px;
    backdrop-filter: blur(5px);
    min-height: fit-content;
}

.testimonio:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.testimonio-nombre {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 100%;
}

.testimonio-texto {
    font-size: 10px;
    line-height: 1.5;
    color: var(--text-dark);
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

/* Brand Section */
.brand-section {
    display: flex;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.illustration {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    width: 30%;
    max-width: 130px;
}

.illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* Brand Info Section */
.brand-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.brand-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.7);
}

.feature-icon {
    font-size: 14px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}


/* ============================================ */
/* ========== ESTILOS MÓVIL (DEFAULT) ========= */
/* ============================================ */

/* Mostrar solo versión móvil por defecto */
.mobile-layout {
    display: flex;
}

.desktop-layout {
    display: none;
}

/* Servicios */
.servicios {
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.servicios-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
}

.servicio-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.servicio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicio-titulo {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.servicio-descripcion {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Sobre mí */
.sobre-mi {
    padding: 40px 20px;
    text-align: center;
}

.sobre-mi-image-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.sobre-mi-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-mi-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.sobre-mi-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: left;
}

.sobre-mi-content strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Sección de Reserva */
.reserva-section {
    padding: 40px 20px;
    text-align: center;
}

.reserva-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
}

.select-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
    border: 2px solid rgba(230, 215, 245, 0.8);
    border-radius: 25px;
    transition: none;
    transform: none;
    box-shadow: 0 4px 12px rgba(91, 44, 111, 0.1);
}

.select-input:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
    transform: none;
}

.select-input:focus {
    border-color: var(--accent-color);
    outline: none;
    transform: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.select-input option {
    color: var(--text-dark);
    padding: 10px;
    font-size: 14px;
}

.select-input option:disabled {
    color: rgba(91, 44, 111, 0.4);
    font-style: italic;
}

/* Footer */
.footer {
    padding: 50px 20px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.red-social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.red-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(230, 215, 245, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 6px 20px rgba(91, 44, 111, 0.2);
    overflow: hidden;
    padding: 0;
}

.red-social:hover {
    background: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.red-social img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.red-social-texto {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.copyright {
    font-size: 13px;
    color: var(--text-dark);
    margin: 15px 0 8px;
    font-weight: 500;
}

.developer {
    font-size: 12px;
    color: rgba(91, 44, 111, 0.7);
    margin: 0;
}

.developer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}


/* Responsive adjustments */
@media (max-width: 375px) {
    .title {
        font-size: 22px;
    }
    
    .form-wrapper {
        max-width: 100%;
    }
    
    .tarot-card img {
        height: 160px;
    }
}

/* iPhone 16 Pro specific */
@media (width: 393px) and (height: 852px) {
    .container {
        padding: 12px 16px;
    }
    
    .title {
        font-size: 24px;
    }
}


/* ============================================ */
/* ========== ESTILOS ESCRITORIO ============= */
/* ============================================ */

@media (min-width: 768px) {
    /* Ocultar versión móvil y mostrar escritorio */
    .mobile-layout {
        display: none;
    }
    
    .desktop-layout {
        display: block;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0;
    }

    /* Primera Pantalla: Hero */
    .desktop-hero {
        display: flex;
        flex-direction: row;
        gap: 60px;
        padding: 60px 40px;
        min-height: 100vh;
        align-items: center;
    }

    /* Columna izquierda: Título + Formulario */
    .desktop-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .desktop-left .top {
        align-items: flex-start;
        text-align: left;
    }

    .desktop-left .title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .desktop-left .subtitle {
        width: 100%;
        max-width: 500px;
        font-size: 18px;
    }

    .desktop-left .form-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 30px;
        max-width: 100%;
    }

    .desktop-left .tarot-card img {
        height: 240px;
    }

    .desktop-left .form {
        flex: 1;
    }

    .desktop-left .input {
        padding: 15px 24px;
        font-size: 15px;
    }

    .desktop-left .submit-btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    /* Columna derecha: Testimonios + Brand */
    .desktop-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        height: 100%;
    }

    .desktop-right .bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 40px;
        flex: 1;
    }

    .desktop-right .testimonios-wrapper {
        gap: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .desktop-right .testimonios-row {
        gap: 20px;
    }

    .desktop-right .testimonio {
        padding: 20px 16px;
    }

    .desktop-right .testimonio-nombre {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .desktop-right .testimonio-texto {
        font-size: 13px;
        line-height: 1.6;
    }

    .desktop-right .brand-section {
        gap: 30px;
        align-items: center;
        margin-top: 0;
    }

    .desktop-right .illustration {
        max-width: 220px;
        align-self: center;
    }

    .desktop-right .brand-info {
        flex: 1;
        gap: 15px;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .desktop-right .brand-title {
        font-size: 22px;
        margin-bottom: 10px;
        align-self: center;
    }

    .desktop-right .features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .desktop-right .feature {
        width: auto;
        justify-content: center;
        padding: 10px 18px;
    }

    .desktop-right .feature-text {
        font-size: 12px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .desktop-layout {
        gap: 80px;
        padding: 80px 60px;
    }

    .desktop-left {
        gap: 50px;
    }

    .desktop-left .title {
        font-size: 56px;
    }

    .desktop-left .subtitle {
        font-size: 20px;
    }

    .desktop-left .tarot-card img {
        height: 280px;
    }

    .desktop-right .testimonios-row {
        gap: 25px;
    }

    .desktop-right .testimonio {
        padding: 22px 18px;
    }

    .desktop-right .testimonio-nombre {
        font-size: 15px;
    }

    .desktop-right .testimonio-texto {
        font-size: 14px;
    }

    .desktop-right .illustration {
        max-width: 260px;
    }

    .desktop-right .brand-title {
        font-size: 24px;
    }

    .desktop-right .feature {
        padding: 12px 20px;
    }

    .desktop-right .feature-text {
        font-size: 14px;
    }

    /* Segunda Pantalla: Contenido */
    .desktop-content {
        padding: 80px 40px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 80px;
    }

    /* Servicios Desktop */
    .servicios-desktop {
        padding: 0;
        width: 100%;
    }

    .servicios-desktop .section-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .servicios-desktop .servicios-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .servicios-desktop .servicio-card {
        padding: 35px 28px;
    }

    .servicios-desktop .servicio-img {
        height: 180px;
        margin-bottom: 20px;
    }

    .servicios-desktop .servicio-titulo {
        font-size: 19px;
        margin-bottom: 16px;
    }

    .servicios-desktop .servicio-descripcion {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Sobre mí Desktop */
    .sobre-mi-desktop {
        padding: 0;
        width: 100%;
    }

    .sobre-mi-desktop .section-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .sobre-mi-desktop .sobre-mi-image-circle {
        width: 250px;
        height: 250px;
        margin: 40px auto;
        border: 5px solid var(--accent-color);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }

    .sobre-mi-desktop .sobre-mi-content {
        max-width: 1000px;
        text-align: center;
        margin: 0 auto;
    }

    .sobre-mi-desktop .sobre-mi-content p {
        font-size: 17px;
        line-height: 2;
        text-align: center;
        margin-bottom: 25px;
    }

    /* Footer Desktop */
    .footer-desktop {
        padding: 60px 40px 40px;
        margin-top: 60px;
    }

    .footer-desktop .redes-sociales {
        gap: 60px;
        margin-bottom: 40px;
    }

    .footer-desktop .red-social-wrapper {
        gap: 20px;
    }

    .footer-desktop .red-social {
        width: 150px;
        height: 150px;
        border: 5px solid rgba(212, 175, 55, 0.5);
    }

    .footer-desktop .red-social img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-desktop .red-social-texto {
        font-size: 18px;
        font-weight: 600;
    }

    .footer-desktop .copyright {
        font-size: 15px;
        margin: 20px 0 10px;
    }

    .footer-desktop .developer {
        font-size: 14px;
    }
}

/* ============ BOTÓN FLOTANTE DE WHATSAPP ============ */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9998;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn i {
    color: white;
    font-size: 32px;
}

/* ============ MODAL DE WHATSAPP ============ */
.whatsapp-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.whatsapp-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.whatsapp-modal-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(91, 44, 111, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.whatsapp-modal-close {
    color: var(--text-dark);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.whatsapp-modal-close:hover,
.whatsapp-modal-close:focus {
    color: var(--accent-color);
}

.whatsapp-modal-body {
    padding: 40px 30px 30px;
    text-align: center;
}

.whatsapp-modal-icon {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp-modal-text {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.whatsapp-modal-text strong {
    color: var(--accent-color);
    font-size: 18px;
}

.whatsapp-modal-code {
    background: rgba(255, 255, 255, 0.7);
    border: 2px dashed var(--accent-color);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
}

.whatsapp-modal-code strong {
    font-size: 24px;
    color: var(--text-dark);
    letter-spacing: 2px;
    font-weight: bold;
}

.whatsapp-continue-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-continue-btn:active {
    transform: translateY(0);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn i {
        font-size: 28px;
    }

    .whatsapp-modal-content {
        width: 95%;
        margin: 20px;
    }

    .whatsapp-modal-body {
        padding: 30px 20px 25px;
    }

    .whatsapp-modal-icon {
        font-size: 50px;
    }

    .whatsapp-modal-text {
        font-size: 15px;
    }

    .whatsapp-modal-code strong {
        font-size: 20px;
    }

    .whatsapp-continue-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
