/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores Oficiales IMSS */
    --primary-green: #006847;        /* Verde IMSS Principal */
    --primary-green-dark: #004d35;   /* Verde IMSS Oscuro */
    --secondary-green: #00A86B;      /* Verde IMSS Claro */
    --secondary-green-dark: #008556; /* Verde Hover */
    --dark-green: #003d2e;           /* Verde Muy Oscuro */
    --light-green: #E6F4EF;          /* Verde Muy Claro */
    --accent-gold: #FFB81C;          /* Dorado Acento IMSS */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --red: #DC2626;                  /* Rojo para urgencia */
    --yellow: #FFB81C;               /* Dorado para destacar */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Mejoras para móvil */
    -webkit-tap-highlight-color: rgba(0, 104, 71, 0.2);
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 30px;
    text-align: center;
}

.logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    animation: fadeInDown 0.8s ease-out;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--accent-gold);
}

.hero-scroll-hint {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}

.urgency-text {
    font-size: 1.1rem;
    margin-bottom: 35px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 500;
    display: inline-block;
}

.urgency-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

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

/* Contador de Cupos */
.slots-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 40px auto;
    max-width: 500px;
    transition: all 0.3s ease;
}

.slots-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.slots-badge .icon {
    width: 24px;
    height: 24px;
    color: var(--yellow);
}

.slots-text {
    font-size: 1rem;
    font-weight: 500;
}

.slots-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
}

.slots-number .number {
    font-size: 3rem;
    color: var(--yellow);
    animation: pulse 2s ease-in-out infinite;
}

.slots-number .total {
    font-size: 1.5rem;
    opacity: 0.9;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.number-change {
    animation: numberChange 0.5s ease-in-out;
}

@keyframes numberChange {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
        color: var(--secondary-green);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.no-slots-message {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    text-align: center;
}

.no-slots-message p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-icon {
    width: 20px;
    height: 20px;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Mejoras táctiles para móvil */
    min-height: 48px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.cta-button.primary {
    background-color: var(--secondary-green);
    color: var(--white);
}

.cta-button.primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 104, 71, 0.3);
}

.cta-button.secondary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.cta-button.secondary:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.button-icon {
    width: 20px;
    height: 20px;
}

.trust-text {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-text.centered {
    text-align: center;
    margin-top: 30px;
}

/* Sections */
.benefits-section,
.pricing-section,
.requirements-section,
.faq-section,
.testimonials-section {
    padding: 80px 20px;
}

.benefits-section {
    background-color: var(--gray-50);
}

.pricing-section {
    background-color: var(--white);
}

.requirements-section {
    background-color: var(--light-green);
}

.faq-section {
    background-color: var(--gray-50);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gray-600);
}

.section-subtitle strong {
    color: var(--red);
    font-weight: 700;
}

#slots-inline {
    color: var(--red);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.benefits-tagline {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 40px;
    font-weight: 600;
    color: var(--primary-green);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 104, 71, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
}

.testimonial-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

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

.testimonial-benefit {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Why Now Section */
.why-now-section {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 80px 20px;
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.why-now-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.why-now-card.risk {
    border-top: 4px solid var(--red);
}

.why-now-card.benefit {
    border-top: 4px solid var(--primary-green);
}

.why-now-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.why-now-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.why-now-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-now-card ul li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.why-now-card.risk ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 1.2rem;
}

.why-now-card.benefit ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.urgency-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--red);
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.urgency-callout svg {
    width: 32px;
    height: 32px;
    color: var(--red);
    flex-shrink: 0;
}

.urgency-callout p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-800);
    line-height: 1.6;
}

#urgency-slots {
    color: var(--red);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Comparison Table Section */
.comparison-section {
    background-color: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.95rem;
}

.comparison-table thead {
    background: var(--primary-green);
    color: var(--white);
}

.comparison-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--primary-green-dark);
    position: relative;
}

.comparison-table th.highlight::after {
    content: "⭐ RECOMENDADO";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--gray-900);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table td.highlight {
    background: var(--light-green);
    font-weight: 600;
}

.comparison-table td.negative {
    color: var(--red);
}

.comparison-table td.positive {
    color: var(--primary-green);
}

.comparison-table .small {
    font-size: 0.8rem;
    color: var(--gray-600);
    display: block;
}

.comparison-table .total-row {
    background: var(--gray-50);
    font-weight: 600;
}

.comparison-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--light-green);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.comparison-note svg {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.comparison-note p {
    margin: 0;
    color: var(--gray-800);
    line-height: 1.6;
}

/* Trust & Transparency Section */
.trust-section {
    background-color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.trust-card {
    background: var(--light-green);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
}

.trust-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.trust-card h3 {
    font-size: 1.2rem;
    margin: 20px 0 12px;
    color: var(--primary-green);
}

.trust-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.trust-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
    padding: 40px;
    background: var(--gray-50);
    border-radius: 16px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guarantee-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.guarantee-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.guarantee-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 50px;
    padding: 32px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 12px;
}

.faq-footer p {
    margin: 0;
    font-size: 1.2rem;
}

/* Info Banner */
.info-banner {
    background: var(--light-green);
    border-left: 4px solid var(--primary-green);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    margin: 40px 0;
    align-items: flex-start;
}

.info-banner.secondary {
    background: #E6F4EF;
    border-left-color: var(--secondary-green);
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.info-banner.secondary .info-icon {
    color: var(--secondary-green);
}

.info-banner p {
    margin: 0;
    line-height: 1.6;
}

.info-banner strong {
    font-weight: 600;
    color: var(--gray-900);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 8px 16px rgba(0, 104, 71, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.pricing-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.regular-price {
    margin-bottom: 8px;
}

.regular-price .strikethrough {
    font-size: 1.5rem;
    color: var(--gray-600);
    text-decoration: line-through;
    font-weight: 500;
}

.regular-price .period,
.promo-price .period,
.normal-price .period {
    font-size: 1rem;
    color: var(--gray-600);
    margin-left: 4px;
}

.promo-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.normal-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.promo-badge {
    background: #D1FAE5;
    color: #047857;
    padding: 8px 16px;
    border-radius: 50px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.package-cta {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}

.package-micro-copy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 12px;
    line-height: 1.5;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 50px auto;
}

.requirement-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.requirement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
}

.requirement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.requirement-card p {
    color: var(--gray-600);
    font-size: 1rem;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-style: italic;
}

.qualifier-box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.qualifier-text {
    font-size: 1.05rem;
    margin: 12px 0;
    line-height: 1.6;
    opacity: 1;
}

.qualifier-text strong {
    font-weight: 700;
    color: var(--accent-gold);
}

.slots-container-small {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-block;
    margin: 20px 0 30px;
}

.slots-text-small {
    font-size: 1rem;
    font-weight: 500;
}

.slots-text-small strong {
    font-size: 1.5rem;
    color: var(--yellow);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    animation: slideInUp 0.5s ease-out 2s both;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.floating-whatsapp-text {
    display: none;
    margin-left: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.floating-whatsapp:hover .floating-whatsapp-text {
    display: block;
}

.floating-whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.7;
    animation: pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

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

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    margin: 8px 0;
    opacity: 0.9;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 16px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .logo-img {
        max-width: 200px;
    }

    .hero {
        padding: 60px 16px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }

    .hero-scroll-hint {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    #slots-inline {
        font-size: 1.15rem;
    }

    .slots-container {
        padding: 20px;
        margin: 30px auto;
    }

    .slots-number .number {
        font-size: 2.5rem;
    }

    .slots-number .total {
        font-size: 1.3rem;
    }

    .pricing-grid,
    .requirements-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .badge {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 1.05rem;
        padding: 18px 24px;
    }

    .cta-button.large {
        padding: 20px 32px;
        font-size: 1.15rem;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .final-cta {
        padding: 60px 16px;
    }

    .final-cta h2 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .final-cta-subtitle {
        font-size: 1.1rem;
    }

    .qualifier-box {
        padding: 20px;
        margin: 25px auto;
    }

    .qualifier-text {
        font-size: 1rem;
    }

    .promo-price .amount,
    .normal-price .amount {
        font-size: 2.5rem;
    }

    .info-banner {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        text-align: left;
    }

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

    .benefits-section,
    .pricing-section,
    .requirements-section,
    .faq-section {
        padding: 60px 16px;
    }
}

/* Responsive - Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo-img {
        max-width: 180px;
    }

    .hero {
        padding: 50px 12px;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .hero-scroll-hint {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .slots-container {
        padding: 16px;
        margin: 25px auto;
    }

    .slots-badge .icon {
        width: 20px;
        height: 20px;
    }

    .slots-text {
        font-size: 0.9rem;
    }

    .slots-number .number {
        font-size: 2.2rem;
    }

    .slots-number .total {
        font-size: 1.2rem;
    }

    .no-slots-message {
        padding: 16px;
        margin: 25px auto;
    }

    .no-slots-message p {
        font-size: 1rem;
    }

    .trust-badges {
        gap: 10px;
    }

    .badge {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
    }

    .benefits-section,
    .pricing-section,
    .requirements-section,
    .faq-section,
    .testimonials-section,
    .trust-section {
        padding: 50px 12px;
    }
    
    .urgency-text {
        font-size: 1rem;
        padding: 14px 18px;
    }
    
    .testimonials-grid,
    .trust-grid,
    .trust-guarantees {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-guarantees {
        padding: 24px 16px;
    }
    
    .why-now-section,
    .comparison-section {
        padding: 50px 12px;
    }
    
    .why-now-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .comparison-table th.highlight::after {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
    
    .floating-whatsapp:hover {
        width: 56px;
        padding: 0;
    }
    
    .floating-whatsapp-text {
        display: none !important;
    }

    .section-title {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    #slots-inline {
        font-size: 1.1rem;
    }

    .benefit-card {
        padding: 24px 16px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .info-banner {
        padding: 16px;
        margin: 30px 0;
    }

    .info-icon {
        width: 20px;
        height: 20px;
    }

    .info-banner p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .pricing-grid {
        gap: 25px;
    }

    .pricing-card {
        padding: 28px 16px;
    }

    .popular-badge {
        font-size: 0.85rem;
        padding: 5px 16px;
        top: -12px;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

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

    .regular-price .strikethrough {
        font-size: 1.3rem;
    }

    .regular-price .period,
    .promo-price .period,
    .normal-price .period {
        font-size: 0.9rem;
    }

    .promo-price .amount,
    .normal-price .amount {
        font-size: 2.2rem;
    }

    .promo-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
        margin-bottom: 25px;
    }

    .features-list li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .package-cta {
        font-size: 1rem;
        padding: 16px 24px;
    }

    .requirement-card {
        padding: 32px 16px;
    }

    .requirement-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .requirement-icon svg {
        width: 36px;
        height: 36px;
    }

    .requirement-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .requirement-card p {
        font-size: 0.9rem;
    }

    .faq-item {
        padding: 24px 16px;
    }

    .faq-item h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .final-cta {
        padding: 50px 12px;
    }

    .final-cta h2 {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .final-cta-subtitle {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .slots-container-small {
        padding: 10px 20px;
        margin: 20px 0 25px;
    }

    .slots-text-small {
        font-size: 0.9rem;
    }

    .slots-text-small strong {
        font-size: 1.3rem;
    }

    .qualifier-box {
        padding: 16px;
        margin: 20px auto;
    }

    .qualifier-text {
        font-size: 0.95rem;
        margin: 10px 0;
        line-height: 1.5;
    }

    .cta-button {
        font-size: 1rem;
        padding: 16px 20px;
    }

    .cta-button.large {
        padding: 18px 28px;
        font-size: 1.1rem;
    }

    .button-icon {
        width: 18px;
        height: 18px;
    }

    .trust-text {
        font-size: 0.9rem;
        margin-top: 16px;
        line-height: 1.5;
    }

    .footer {
        padding: 32px 12px;
    }

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

    .footer-disclaimer {
        font-size: 0.8rem;
    }
}
