/**
 * SAN VALENTINO 2025 - MIOGEST
 * Landing page con degradado verde/rosa y oferta 30%
 */

/* ========================================
   0. FONDO DEGRADADO (como la imagen)
   ======================================== */

body.san-valentino {
    background: linear-gradient(135deg, 
        #a8e6a3 0%,      /* Verde claro */
        #d4f0cd 25%,     /* Verde muy claro */
        #f5e6d3 50%,     /* Beige/crema */
        #ffd6c4 75%,     /* Rosa/melocotón */
        #ffcab8 100%     /* Rosa/naranja suave */
    );
    background-attachment: fixed;
    min-height: 100vh;
}

body.san-valentino .hero-grid {
    display: grid !important;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

body.san-valentino .content-column {
    padding: 15px;
    max-width: none;
}

body.san-valentino .form-column {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 480px;
}

body.san-valentino .form-wrapper {
    display: block !important;
    visibility: visible !important;
}

body.san-valentino .form-container {
    display: block !important;
    visibility: visible !important;
    padding: 30px 25px;
}

/* ========================================
   1. HERO CONTAINER
   ======================================== */

.sv-hero {
    text-align: center;
    background: transparent;
    border-radius: 24px;
    padding: 35px 30px;
    border: none;
    box-shadow: none;
}

/* ========================================
   2. BADGE INNAMORATI
   ======================================== */

.sv-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #64c832 0%, #52a828 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(100, 200, 50, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sv-badge-icon {
    font-size: 22px;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

.sv-badge-text {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ========================================
   3. TÍTULO PRINCIPAL
   ======================================== */

.sv-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 25px;
    color: #1f2937;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.sv-highlight {
    color: #64c832;
    font-weight: 900;
    font-size: 1.1em;
}

.sv-highlight-bonus {
    color: #e74c3c;
    font-weight: 900;
}

/* ========================================
   4. IMAGEN DEL MÓVIL
   ======================================== */

.sv-image {
    position: relative;
    margin: 0 auto 25px;
    animation: floatPhone 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.sv-image-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

/* ========================================
   5. SUBTÍTULO
   ======================================== */

.sv-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #374151;
    margin: 0 auto 25px;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.sv-subtitle strong {
    color: #64c832;
    font-weight: 700;
}

/* ========================================
   6. LISTA DE BENEFICIOS
   ======================================== */

.sv-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px;
    max-width: 400px;
    text-align: left;
}

.sv-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sv-benefit-item:hover {
    transform: translateX(5px);
    border-color: #64c832;
    box-shadow: 0 4px 15px rgba(100, 200, 50, 0.15);
}

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

.sv-check {
    width: 22px;
    height: 22px;
    color: #64c832;
    flex-shrink: 0;
}

.sv-benefit-item span {
    font-size: 15px;
    color: #1f2937;
    font-weight: 600;
}

.sv-benefit-item strong {
    color: #64c832;
    font-weight: 700;
}

/* Quick Benefits (sutil) */
.sv-quick-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.sv-quick-benefit {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.sv-quick-benefit::before {
    color: #64c832;
}

/* Aviso oferta */
.sv-offer-notice {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 15px;
    font-style: italic;
}

/* Footer legal */
.sv-footer-legal {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.sv-footer-legal a {
    color: #64c832;
    text-decoration: underline;
    transition: color 0.2s;
}

.sv-footer-legal a:hover {
    color: #7ee03f;
}

/* ========================================
   7. CTA MÓVIL
   ======================================== */

.sv-cta-mobile {
    display: none;
    margin-top: 25px;
}

.sv-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #64c832 0%, #52a828 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(100, 200, 50, 0.4);
    transition: all 0.3s ease;
    text-transform: none;
}

.sv-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(100, 200, 50, 0.5);
    background: linear-gradient(135deg, #72d640 0%, #5cb82e 100%);
}

.sv-cta-button svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   8. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    body.san-valentino .form-column {
        display: none !important;
    }

    body.san-valentino .hero-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .sv-cta-mobile {
        display: block;
    }

    .sv-title {
        font-size: 24px;
    }

    .sv-image-img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .sv-hero {
        padding: 25px 20px;
    }

    .sv-badge {
        padding: 10px 18px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .sv-badge-text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .sv-badge-icon {
        font-size: 18px;
    }

    .sv-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sv-image {
        margin-bottom: 20px;
    }

    .sv-image-img {
        max-width: 240px;
    }

    .sv-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .sv-benefits {
        margin-bottom: 20px;
    }

    .sv-benefit-item {
        padding: 10px 14px;
        margin-bottom: 8px;
    }

    .sv-benefit-item span {
        font-size: 14px;
    }

    .sv-check {
        width: 20px;
        height: 20px;
    }

    .sv-cta-button {
        font-size: 14px;
        padding: 16px 28px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    body.san-valentino {
        background: linear-gradient(160deg, 
            #b8ecb3 0%,
            #e8f5e4 30%,
            #fff0e8 60%,
            #ffd9c9 100%
        );
    }

    .sv-hero {
        padding: 20px 15px;
        border-radius: 18px;
    }

    .sv-badge {
        padding: 8px 14px;
        gap: 6px;
    }

    .sv-badge-text {
        font-size: 10px;
    }

    .sv-badge-icon {
        font-size: 16px;
    }

    .sv-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .sv-image-img {
        max-width: 200px;
    }

    .sv-subtitle {
        font-size: 14px;
    }

    .sv-benefit-item {
        padding: 8px 12px;
        gap: 10px;
    }

    .sv-benefit-item span {
        font-size: 13px;
    }

    .sv-check {
        width: 18px;
        height: 18px;
    }

    .sv-cta-button {
        font-size: 13px;
        padding: 14px 24px;
    }
}

/* ========================================
   9. FOOTER SECTION - SAN VALENTINO
   ======================================== */

.sv-footer-section {
    background: linear-gradient(135deg, #0d3320 0%, #1a4a30 50%, #0d3320 100%);
    padding: 60px 20px 40px;
    margin-top: 0;
}

.sv-footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Footer Badge */
.sv-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #64c832 0%, #52a828 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(100, 200, 50, 0.3);
}

.sv-footer-badge-icon {
    font-size: 18px;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.sv-footer-badge-text {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Footer Title */
.sv-footer-title {
    margin-bottom: 30px;
}

.sv-footer-title-main {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #64c832;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(100, 200, 50, 0.3);
}

.sv-footer-title-sub {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 5px;
}

/* Footer Stats */
.sv-footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sv-footer-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.sv-footer-stat:hover {
    transform: translateY(-5px);
    border-color: #64c832;
    box-shadow: 0 10px 25px rgba(100, 200, 50, 0.25);
}

.sv-footer-stat-featured {
    border-color: #64c832;
    background: rgba(100, 200, 50, 0.15);
    box-shadow: 0 8px 20px rgba(100, 200, 50, 0.2);
}

.sv-footer-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #64c832;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(100, 200, 50, 0.4);
}

.sv-footer-stat-label {
    font-size: 12px;
    font-weight: 800;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sv-footer-stat-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.sv-footer-stat-desc s {
    color: #ff6b35;
}

/* Footer Benefits */
.sv-footer-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.sv-footer-benefit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sv-footer-benefit svg {
    width: 18px;
    height: 18px;
    color: #64c832;
    flex-shrink: 0;
}

.sv-footer-benefit span {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

/* Footer Form Wrapper */
.sv-footer-form-wrapper {
    max-width: 500px;
    margin: 0 auto 40px;
}

/* Footer Support */
.sv-footer-support {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-footer-support-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-footer-support-box svg {
    width: 24px;
    height: 24px;
    color: #64c832;
    flex-shrink: 0;
}

.sv-footer-support-box div {
    text-align: left;
}

.sv-footer-support-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.sv-footer-support-desc {
    margin: 4px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .sv-footer-section {
        padding: 40px 15px 30px;
    }

    .sv-footer-title-main {
        font-size: 28px;
    }

    .sv-footer-title-sub {
        font-size: 18px;
    }

    .sv-footer-stats {
        gap: 10px;
    }

    .sv-footer-stat {
        padding: 15px 10px;
    }

    .sv-footer-stat-number {
        font-size: 28px;
    }

    .sv-footer-stat-label {
        font-size: 10px;
    }

    .sv-footer-stat-desc {
        font-size: 10px;
    }

    .sv-footer-benefits {
        gap: 8px;
    }

    .sv-footer-benefit {
        padding: 8px 14px;
    }

    .sv-footer-benefit span {
        font-size: 12px;
    }

    .sv-footer-support-box {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .sv-footer-support-box div {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sv-footer-badge {
        padding: 8px 16px;
    }

    .sv-footer-badge-text {
        font-size: 10px;
    }

    .sv-footer-title-main {
        font-size: 24px;
    }

    .sv-footer-title-sub {
        font-size: 16px;
    }

    .sv-footer-stat-number {
        font-size: 22px;
    }

    .sv-footer-benefit {
        padding: 6px 12px;
    }

    .sv-footer-benefit svg {
        width: 16px;
        height: 16px;
    }

    .sv-footer-benefit span {
        font-size: 11px;
    }
}
