* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
.main-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.header-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-right {
    display: flex;
    align-items: center;
}

.login-button {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9c1c1c 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-icon {
    width: 16px;
    height: 16px;
    stroke: white;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    padding: 20px;
    backdrop-filter: blur(10px);
}


/* Gradient backgrounds */
.gradient-bg-1 {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4facfe 0%, #00f2fe 25%, #ff6b9d 50%, #ffa726 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.gradient-bg-2 {
    position: fixed;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4facfe 0%, #00f2fe 50%, #ff6b9d 100%);
    border-radius: 50%;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    filter: blur(35px);
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 70vh;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tag {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    opacity: 0.9;
}

.title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.95;
    color: white;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.narrator {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    opacity: 0.8;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #ff6b9d;
    margin-top: 15px;
    max-width: 500px;
    font-weight: 500;
}

.description strong {
    color: #ff6b9d;
    font-weight: 700;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.buy-button {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9c1c1c 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.6);
}

.arrow {
    font-size: 28px;
    color: white;
    font-weight: bold;
}

.price {
    color: #00f2fe;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    width: 320px;
    height: auto;
    position: relative;
    transform: rotate(-8deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.phone:hover {
    transform: rotate(-6deg) scale(1.02);
}

.phone img {
    width: 100%;
    height: auto;
    display: block;
}

.bottom-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.sample-link {
    color: #333;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    border: none;
    cursor: pointer;
    display: inline-block;
    user-select: none;
    font-size: 16px;
    font-weight: 600;
}

.sample-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.sample-link:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sample-link strong {
    color: #ff6b9d;
    font-weight: 700;
}


.headphones-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* Mensaje de esperanza section */
.hope-section {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hope-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.hope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.hope-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 35px 40px;
    text-align: left;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 200px;
}

.hope-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.hope-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 25px;
    position: relative;
    z-index: 10;
}

.hope-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hope-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    color: #333;
}

/* Card colors - solo bordes y texto */
.hope-card:nth-child(1) {
    border: 2px solid #ff6b9d;
}

.hope-card:nth-child(1) .hope-text {
    color: #ff6b9d;
}

.hope-card:nth-child(2) {
    border: 2px solid #20c997;
}

.hope-card:nth-child(2) .hope-text {
    color: #20c997;
}

.hope-card:nth-child(3) {
    border: 2px solid #6f42c1;
}

.hope-card:nth-child(3) .hope-text {
    color: #6f42c1;
}

.hope-card:nth-child(4) {
    border: 2px solid #ffc107;
}

.hope-card:nth-child(4) .hope-text {
    color: #ff6b9d;
}

.hope-card:nth-child(5) {
    border: 2px solid #9f7aea;
}

.hope-card:nth-child(5) .hope-text {
    color: #9f7aea;
}

.hope-card:nth-child(6) {
    border: 2px solid #fd7e14;
}

.hope-card:nth-child(6) .hope-text {
    color: #20c997;
}

/* Oferta especial de lanzamiento section */
.offer-section {
    margin-top: 100px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.offer-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-align: center;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px 35px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.pricing {
    margin-bottom: 30px;
    text-align: center;
}

.original-price {
    font-size: 48px;
    font-weight: 900;
    color: #666666;
    text-decoration: line-through;
    text-decoration-color: #e53e3e;
    margin-bottom: 5px;
    display: block;
    font-family: 'Alegreya', serif;
}

.new-price {
    font-size: 48px;
    font-weight: 900;
    color: #e53e3e;
    margin-bottom: 20px;
    display: block;
    font-family: 'Alegreya', serif;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.features-list li::before {
    content: "✔";
    color: #000;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.offer-button {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9c1c1c 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
    width: 100%;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

.listening-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4facfe 0%, #00f2fe 25%, #ff6b9d 50%, #ffa726 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.3);
}

.listening-illustration img {
    width: 300px;
    height: auto;
    position: absolute;
    z-index: 2;
}

/* Maria section */
.maria-section {
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.maria-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.maria-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maria-circle {
    width: 400px;
    height: 400px;
    border: 4px solid #00f2fe;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.3);
    transition: all 0.4s ease;
}

.maria-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 242, 254, 0.4);
}

.maria-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.microphone-icon {
    position: absolute;
    top: -20px;
    right: 50px;
    width: 60px;
    height: 60px;
    z-index: 15;
}

.microphone-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.maria-text {
    color: white;
    max-width: 500px;
}

.maria-greeting {
    font-size: 36px;
    font-weight: 700;
    color: #00f2fe;
    margin-bottom: 10px;
    line-height: 1.2;
}

.maria-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #00f2fe;
    margin-bottom: 30px;
    line-height: 1.3;
}

.maria-subtitle em {
    font-style: italic;
}

.maria-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: white;
}

.maria-signature {
    margin-top: 30px;
}

.maria-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.maria-title {
    font-size: 16px;
    color: white;
    opacity: 0.9;
}

.maria-button {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9c1c1c 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.maria-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.maria-button:hover::before {
    left: 100%;
}

.maria-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.6);
}

/* Testimonios section */
.testimonials-section {
    margin-top: 100px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-align: center;
}

/* Fila superior: 3 tarjetas en grid */
.testimonials-top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

/* Fila inferior: 2 tarjetas centradas con flexbox */
.testimonials-bottom-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-bottom-row .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.testimonial-card.gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
}

.testimonial-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 6px solid #e0e0e0;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-photo.placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
}

.testimonial-card.gradient .testimonial-quote {
    color: white;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.testimonial-card.gradient .testimonial-name {
    color: white;
}


/* Final section */
.final-section {
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.final-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.final-text {
    color: white;
    max-width: 500px;
}

.final-headline {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-headline em {
    font-style: italic;
}

.final-benefit {
    font-size: 18px;
    color: #ff6b9d;
    margin-bottom: 30px;
    line-height: 1.4;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.final-button {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9c1c1c 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    position: relative;
    overflow: hidden;
}

.final-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.final-button:hover::before {
    left: 100%;
}

.final-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.6);
}

.final-price {
    color: #00f2fe;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.final-arrow {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.final-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-illustration img {
    width: 400px;
    height: auto;
    filter: brightness(1.1);
}

.footer-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Animaciones y efectos adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content,
.hope-section,
.offer-section,
.maria-section,
.testimonials-section,
.final-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras en la tipografía */
.tag,
.narrator,
.maria-greeting,
.maria-subtitle,
.testimonials-title,
.final-headline,
.footer-title {
    font-family: 'Nunito', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-weight: 600;
}

/* Efectos de brillo en elementos importantes */
.title,
.maria-greeting,
.final-headline {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive design */
@media (max-width: 1024px) {
    .main-content {
        gap: 40px;
    }

    .phone {
        width: 280px;
    }

    .hope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .offer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
    }

    .listening-illustration img {
        width: 220px;
    }

    .maria-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .maria-circle {
        width: 300px;
        height: 300px;
    }

    .microphone-icon {
        top: -15px;
        right: 30px;
        width: 50px;
        height: 50px;
    }

    .testimonials-top-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonials-bottom-row {
        gap: 25px;
    }

    .testimonials-bottom-row .testimonial-card {
        flex: 0 0 calc(50% - 12.5px);
        max-width: calc(50% - 12.5px);
    }

    .final-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .final-illustration img {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .title {
        font-size: 3rem;
    }

    .phone {
        width: 250px;
        transform: rotate(-5deg);
    }

    .cta-section {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .bottom-section {
        text-align: center;
    }

    .hope-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hope-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .offer-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .offer-card {
        padding: 30px 25px;
    }

    .circle-bg {
        width: 250px;
        height: 250px;
    }

    .listening-illustration img {
        width: 180px;
    }

    .maria-greeting {
        font-size: 28px;
    }

    .maria-subtitle {
        font-size: 18px;
    }

    .maria-circle {
        width: 250px;
        height: 250px;
    }

    .microphone-icon {
        top: -10px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .testimonials-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .testimonials-top-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonials-bottom-row .testimonial-card {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .final-headline {
        font-size: 28px;
    }

    .final-benefit {
        font-size: 16px;
    }

    .final-illustration img {
        width: 250px;
    }

    .footer-title {
        font-size: 24px;
    }
}

/* Media queries específicas para el botón de login */
@media (max-width: 430px) {
    .header-content {
        padding: 0 15px;
        gap: 15px;
    }
    
    .login-button {
        padding: 10px 12px;
        font-size: 11px;
        letter-spacing: 0.5px;
        gap: 4px;
    }
    
    .user-icon {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 375px) {
    .header-content {
        padding: 0 10px;
        gap: 12px;
    }
    
    .header-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .login-button {
        padding: 10px 10px;
        font-size: 11px;
        letter-spacing: 0.5px;
        gap: 4px;
    }
    
    .user-icon {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 360px) {
    .header-content {
        padding: 0 8px;
        gap: 10px;
    }
    
    .header-title {
        font-size: 15px;
        letter-spacing: 0.5px;
    }
    
    .login-button {
        padding: 10px 8px;
        font-size: 10px;
        letter-spacing: 0.3px;
        gap: 3px;
    }
    
    .user-icon {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    .title {
        font-size: 2.5rem;
    }

    .phone {
        width: 200px;
    }

    .header-content {
        padding: 0 15px;
    }

    .header-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .login-button {
        padding: 10px 18px;
        font-size: 12px;
    }

    .user-icon {
        width: 14px;
        height: 14px;
    }

}

/* Modal de Login */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal.show {
    display: flex;
    opacity: 1;
}

.login-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.login-modal.show .login-modal-content {
    transform: scale(1);
}

.login-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.login-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.login-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.login-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

/* Estilos para el contenedor de contraseña */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    width: 100%;
    padding: 12px 45px 12px 15px; /* Más padding a la derecha para el botón */
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
}

.password-input-container input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.password-toggle-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.password-toggle-btn:active {
    background: rgba(102, 126, 234, 0.2);
}

.password-toggle-btn i {
    font-size: 16px;
}

.login-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.login-submit-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-submit-btn .btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forgot-password {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.forgot-password-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.forgot-password-link:active {
    color: #5a6fd8;
}

.login-error {
    background: #fee;
    color: #c33;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 15px;
    border: 1px solid #fcc;
    text-align: center;
}

/* Modal de Recuperación de Contraseña */
.forgot-password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.forgot-password-modal.show {
    display: flex;
    opacity: 1;
}

.forgot-password-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.forgot-password-modal.show .forgot-password-modal-content {
    transform: scale(1);
}

.forgot-password-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.forgot-password-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.forgot-password-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-password-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.forgot-password-form {
    padding: 30px;
}

.forgot-password-info {
    margin-bottom: 20px;
    text-align: center;
}

.forgot-password-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.forgot-password-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.forgot-password-submit-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.forgot-password-submit-btn:active {
    transform: translateY(0);
}

.forgot-password-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.forgot-password-submit-btn .btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forgot-password-error {
    background: #fee;
    color: #c33;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 15px;
    border: 1px solid #fcc;
    text-align: center;
}

.forgot-password-success {
    background: #efe;
    color: #363;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 15px;
    border: 1px solid #cfc;
    text-align: center;
}

/* Responsive para el modal */
@media (max-width: 480px) {
    .login-modal-content {
        width: 95%;
        margin: 20px;
    }

    .login-header {
        padding: 20px 25px;
    }

    .login-header h2 {
        font-size: 1.3rem;
    }

    .login-form {
        padding: 25px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .password-input-container input {
        padding: 10px 40px 10px 12px; /* Ajustar padding para móvil */
    }

    .password-toggle-btn {
        right: 10px;
        width: 28px;
        height: 28px;
    }

    .password-toggle-btn i {
        font-size: 14px;
    }

    .login-submit-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .forgot-password-modal-content {
        width: 95%;
        margin: 20px;
    }

    .forgot-password-header {
        padding: 20px 25px;
    }

    .forgot-password-header h2 {
        font-size: 1.3rem;
    }

    .forgot-password-form {
        padding: 25px;
    }

    .forgot-password-submit-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}