/* ===== REGULARIZA-ROSA - DESIGN CLEAN & MINIMAL ===== */

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

:root {
    --pink-primary: #E80070;
    --pink-hover: #C4005A;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --border-light: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER CLEAN ===== */
.header-clean {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand-name {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--dark);
}

.brand-name strong {
    font-weight: 700;
    color: var(--pink-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pink-primary);
}

.btn-header {
    padding: 0.75rem 1.5rem;
    background: var(--pink-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-header:hover {
    background: var(--pink-hover);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--pink-primary);
    border-radius: 2px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 2000;
    transition: right 0.3s;
}

.mobile-nav.active {
    right: 0;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--pink-primary);
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
}

/* ===== HERO MINIMAL ===== */
.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
    background: var(--white);
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.2rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-primary);
    margin-bottom: 2rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--pink-primary);
    border-radius: 50%;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    color: var(--pink-primary);
}

.hero-subheading {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--pink-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: var(--pink-hover);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: white;
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary-large:hover {
    background: var(--light-gray);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.floating-card {
    display: none;
}

/* ===== BENEFITS MODERN ===== */
.benefits-modern {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--pink-primary);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.benefit-modern:hover {
    border-color: var(--pink-primary);
    box-shadow: 0 4px 20px rgba(232, 0, 112, 0.1);
}

.benefit-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--pink-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-modern p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== HOW IT WORKS TIMELINE ===== */
.how-it-works {
    padding: 5rem 0;
    background: var(--white);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 3rem);
    background: var(--border-light);
}

.timeline-marker {
    width: 70px;
    height: 70px;
    background: var(--pink-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.timeline-content {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.timeline-content h3 i {
    color: var(--pink-primary);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-box p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-cta-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: var(--pink-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-box:hover {
    background: var(--pink-hover);
}

/* ===== TESTIMONIALS CARDS ===== */
.testimonials-cards {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.testimonial-card-modern.featured {
    border-color: var(--pink-primary);
}

.testimonial-card-modern:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    display: flex;
    gap: 5px;
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--pink-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== FINAL CTA MINIMAL ===== */
.final-cta-minimal {
    padding: 5rem 0;
    background: var(--white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-minimal {
    text-align: center;
    padding: 3rem;
    background: var(--pink-primary);
    border-radius: 12px;
    color: white;
}

.cta-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-content-minimal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-minimal p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--pink-primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-final-cta:hover {
    background: var(--light-gray);
}

/* ===== FOOTER CLEAN ===== */
.footer-clean {
    background: var(--dark);
    color: white;
    padding: 0;
}

.footer-top-strip {
    width: 100%;
    height: 3px;
    background: var(--pink-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--pink-primary);
}

.footer-contact-item,
.footer-data-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.footer-data-item strong {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--pink-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

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

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .stats-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid-modern {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 0 1rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease, display 0.3s;
    pointer-events: auto;
}

.cookie-notice.show {
    display: block;
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10000;
    pointer-events: auto;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--pink-primary);
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray);
}

.cookie-text p {
    margin-bottom: 0.5rem;
}

.cookie-link a {
    color: var(--pink-primary);
    text-decoration: none;
}

.cookie-link a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    position: relative;
    z-index: 10000;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.btn-cookie-accept {
    background: var(--pink-primary);
    color: white;
}

.btn-cookie-accept:hover {
    background: var(--pink-hover);
}

.btn-cookie-decline {
    background: var(--light-gray);
    color: var(--dark);
}

.btn-cookie-decline:hover {
    background: var(--border-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .stats-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid-modern {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-notice-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 0 1rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}