@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700;800;900&display=swap');

@font-face {
    font-family: 'Almoni';
    src: url('almoni-dl-aaa-900.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

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

        :root {
            --primary-dark: #0a0a0a;
            --primary-red: #d32f2f;
            --accent-gold: #ffa726;
            --text-light: #ffffff;
            --text-gray: #d0d0d0;
            --bg-dark: #121212;
            --bg-section: #1a1a1a;
        }

        body {
            font-family: 'Almoni', sans-serif;
            background: #000000;
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Almoni', sans-serif;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero {
            min-height: auto;
            background: #000000;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px 20px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 167, 38, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1100px;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .hero h1 {
            font-family: 'Almoni', sans-serif;
            font-size: clamp(1.6rem, 4vw, 3rem);
            margin-bottom: 16px;
            color: var(--text-light);
            text-shadow: 0 0 30px rgba(211, 47, 47, 0.3);
            line-height: 1.4;
        }

        .hero h1 span {
            color: var(--primary-red);
            display: block;
            font-size: clamp(1.6rem, 4vw, 3rem);
        }

        .hero .subtitle {
            font-family: 'Almoni', sans-serif;
            font-size: clamp(0.95rem, 2vw, 1.3rem);
            margin-bottom: 24px;
            color: var(--text-gray);
            font-weight: 400;
            line-height: 1.6;
        }

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

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: var(--primary-red);
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(211, 47, 47, 0.4);
            font-family: 'Almoni', sans-serif;
        }

        .cta-button:hover {
            background: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(211, 47, 47, 0.6);
        }

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

        .section-dark {
            background: #000000;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            text-align: center;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .section-title span {
            color: #ffffff;
        }

        .title-gold-underline {
            color: #ffffff;
            text-decoration: underline;
            text-decoration-color: var(--accent-gold);
            text-underline-offset: 6px;
            text-decoration-thickness: 3px;
            text-shadow: 0 0 18px rgba(255, 167, 38, 0.5);
        }

        .title-red-underline {
            color: #ffffff;
            text-decoration: underline;
            text-decoration-color: var(--primary-red);
            text-underline-offset: 6px;
            text-decoration-thickness: 3px;
        }

        .problem-section {
            background: #000000;
        }

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

        .problem-card {
            background: rgba(211, 47, 47, 0.1);
            border: 2px solid rgba(211, 47, 47, 0.3);
            border-radius: 12px;
            padding: 18px 15px;
            transition: all 0.3s ease;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-red);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
        }

        .problem-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .problem-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
        }

        .solution-section {
            background: #000000;
            text-align: center;
        }

        .solution-box {
            background: rgba(211, 47, 47, 0.05);
            border: 3px solid var(--primary-red);
            border-radius: 16px;
            padding: 40px 30px;
            margin: 30px auto;
            max-width: 900px;
        }

        .solution-box h3 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--accent-gold);
        }

        .solution-box p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .guarantee-badge {
            display: inline-block;
            background: var(--primary-red);
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            margin-top: 20px;
            box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
        }

        .results-section {
            background: #000000;
        }

        /* Community Section */
        .community-section {
            background: #0a0a0a;
        }

        .community-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 16px;
            max-width: 1100px;
            margin: 40px auto 0;
        }

        .community-item {
            overflow: hidden;
            border-radius: 16px;
            border: 3px solid rgba(255, 167, 38, 0.3);
            transition: transform 0.3s ease, border-color 0.3s ease;
            height: 400px;
        }

        .community-item:hover {
            transform: scale(1.02);
            border-color: var(--accent-gold);
        }

        .community-item img,
        .community-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .community-item-wide {
            grid-column: span 2;
        }

        .community-item-wide img,
        .community-item-wide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 30px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .result-stat {
            text-align: center;
            padding: 0;
            background: rgba(255, 167, 38, 0.1);
            border-radius: 12px;
            border: 2px solid rgba(255, 167, 38, 0.3);
            transition: all 0.3s ease;
            aspect-ratio: 1 / 1;
            box-sizing: border-box;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding-top: 22%;
        }

        .result-stat:hover {
            transform: scale(1.05);
            border-color: var(--accent-gold);
        }

        .result-stat .number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--accent-gold);
            display: block;
            line-height: 0.7;
            margin-bottom: 4px;
            white-space: nowrap;
        }

        .result-stat .label {
            font-size: 2rem;
            color: var(--text-light);
            display: block;
            line-height: 1.1;
            margin-top: 4px;
        }

        .testimonials-section {
            background: #000000;
            padding: 60px 20px 40px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 40px auto 0;
            align-items: stretch;
        }

        .testimonial-card {
            width: 100%;
            background: rgba(10, 10, 10, 0.6);
            border: 2px solid rgba(255, 167, 38, 0.2);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #ffffff;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-photo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 4px 10px rgba(255, 167, 38, 0.3);
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
        }

        .comparison-section {
            background: #000000;
        }

        .comparison-table {
            width: 900px;
            max-width: 900px;
            margin: 30px auto;
            background: #000000;
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid rgba(211, 47, 47, 0.3);
            table-layout: fixed;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 300px 300px 300px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-cell {
            width: 300px;
            height: 112px;
            box-sizing: border-box;
            padding: 0 20px;
            text-align: center;
            font-size: clamp(0.77rem, 1.485vw, 1.485rem);
            white-space: nowrap;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .comparison-cell.comparison-highlight {
            white-space: normal;
            line-height: 1.4;
        }

        .comparison-cell.cell-wrap {
            white-space: normal;
            line-height: 1.4;
        }

        .comparison-row.comparison-header {
            background: rgba(211, 47, 47, 0.2);
        }

        .comparison-row.comparison-header .comparison-cell {
            font-weight: 700;
            font-size: clamp(0.99rem, 2.09vw, 2.09rem);
            height: 80px;
            background: transparent;
        }

        .comparison-highlight {
            background: rgba(255, 167, 38, 0.1);
            font-weight: 700;
            color: var(--accent-gold);
        }

        .check {
            color: #4caf50;
            font-size: inherit;
            vertical-align: middle;
        }

        .cross {
            color: #f44336;
            font-size: inherit;
            vertical-align: middle;
        }

        .process-section {
            background: #000000;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            margin: 0 auto 30px;
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        .process-step p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .form-section {
            background: #000000;
            padding: 70px 20px;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(211, 47, 47, 0.1);
            border: 3px solid var(--primary-red);
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 20px 60px rgba(211, 47, 47, 0.3);
        }

        .form-container h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .form-container .form-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--text-gray);
        }

        .urgency-text {
            background: rgba(255, 167, 38, 0.2);
            border-right: 4px solid var(--accent-gold);
            padding: 20px;
            margin-bottom: 40px;
            border-radius: 8px;
        }

        .urgency-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 10px;
        }

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

        footer {
            background: #000000;
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid rgba(211, 47, 47, 0.3);
        }

        footer p {
            color: var(--text-gray);
            font-size: 1rem;
        }

        .logo-text {
            font-family: 'Almoni', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-red);
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 20px 15px;
            }

            .hero h1 {
                font-size: 1.5rem;
                margin-top: 0;
                margin-bottom: 12px;
                line-height: 1.45;
            }

            .hero h1 span:first-of-type {
                font-size: 1.75rem !important;
                margin-top: 4px;
            }

            .hero h1 span:last-of-type {
                font-size: 1.125rem !important;
            }

            .hero .subtitle {
                font-size: 0.88rem;
                margin-bottom: 16px;
                line-height: 1.55;
            }

            .cta-button {
                padding: 13px 26px;
                font-size: 1rem;
            }

            .section {
                padding: 35px 15px;
            }

            .section-title {
                font-size: 1.6rem;
                margin-bottom: 35px;
            }

            .problem-grid {
                gap: 20px;
            }

            .problem-card {
                padding: 25px 20px;
            }

            .problem-card h3 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }

            .problem-card p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

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

            .solution-box h3 {
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .solution-box p {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .solution-box ul {
                font-size: 0.9rem;
                line-height: 1.6;
                margin: 16px 0;
            }

            .guarantee-badge {
                padding: 10px 20px;
                font-size: 0.85rem;
                margin-top: 12px;
            }

            /* Objections */
            .section-dark [style*="margin-top: 60px"] {
                margin-top: 30px !important;
            }

            .section-dark h3 {
                font-size: 1.3rem !important;
                margin-bottom: 20px !important;
            }

            .section-dark h4 {
                font-size: 1.1rem !important;
                margin-bottom: 8px !important;
            }

            .section-dark [style*="padding: 30px"] {
                padding: 16px !important;
                margin-bottom: 14px !important;
            }

            .section-dark [style*="font-size: 1.1rem"] {
                font-size: 0.88rem !important;
                line-height: 1.5 !important;
            }

            .results-grid {
                gap: 25px;
                margin-top: 35px;
                transform: scale(0.9);
                transform-origin: top center;
            }

            .result-stat {
                padding: 0;
                aspect-ratio: 1 / 1;
                box-sizing: border-box;
                overflow: hidden;
                padding-top: 22%;
                justify-content: flex-start;
            }

            .result-stat .number {
                font-size: 3rem;
                margin-bottom: 4px;
                white-space: nowrap;
                line-height: 0.7;
            }

            .result-stat .label {
                font-size: 2rem;
                line-height: 1.1;
                margin-top: 4px;
                line-height: 0.7;
            }

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

            .testimonial-card {
                padding: 25px 20px;
                margin-bottom: 0;
            }

            .testimonial-text {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .author-name {
                font-size: 1.1rem;
            }

            .comparison-table {
                width: 400px;
                max-width: 400px;
                margin: 20px auto;
                display: block;
            }

            .comparison-row {
                display: grid;
                grid-template-columns: 133px 133px 133px;
                gap: 0;
            }

            .comparison-cell {
                width: 133px;
                height: 72px;
                padding: 0 4px;
                font-size: 0.9rem;
                line-height: 1.3;
                white-space: nowrap;
                overflow: hidden;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 3px;
                box-sizing: border-box;
                text-align: center;
            }

            .comparison-cell.comparison-highlight {
                white-space: normal;
                line-height: 1.3;
            }

            .comparison-cell.cell-wrap {
                white-space: normal;
                line-height: 1.3;
            }

            .comparison-row.comparison-header .comparison-cell {
                height: 52px;
                font-size: 1.05rem;
            }

            .comparison-header {
                font-size: 0.68rem;
                padding: 0 4px;
                font-weight: 800;
                white-space: nowrap;
                overflow: hidden;
            }

            .check, .cross {
                font-size: 1.4rem;
                display: inline;
                margin-bottom: 0;
            }

            .process-steps {
                gap: 30px;
                margin-top: 35px;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .process-step h3 {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }

            .process-step p {
                font-size: 0.95rem;
            }

            .form-section {
                padding: 50px 15px;
            }

            .form-container {
                padding: 30px 20px;
            }

            .form-container h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .form-container .form-subtitle {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .urgency-text {
                padding: 15px;
                margin-bottom: 25px;
            }

            .urgency-text p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            iframe {
                height: 750px;
            }

            footer {
                padding: 30px 15px;
            }

            footer h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            footer p {
                font-size: 0.9rem;
            }

            footer a {
                font-size: 1rem !important;
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

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

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
            animation: none;
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                left: 20px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float svg {
                width: 30px;
                height: 30px;
            }
        }

        /* Exit Intent Popup */
        .exit-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .exit-popup.active {
            display: flex;
        }

        .exit-popup-content {
            background: #000000;
            padding: 35px 30px;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 3px solid var(--primary-red);
            box-shadow: 0 20px 60px rgba(211, 47, 47, 0.5);
            animation: slideUp 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        .exit-popup-close {
            position: absolute;
            top: 15px;
            left: 15px;
            background: transparent;
            border: none;
            color: var(--text-gray);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .exit-popup-close:hover {
            color: var(--primary-red);
        }

        .exit-popup h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .exit-popup h2 span {
            color: var(--primary-red);
        }

        .exit-popup p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .exit-popup .cta-button {
            font-size: 1.3rem;
            padding: 18px 40px;
        }

        /* FAQ Section */
        .faq-section {
            background: #000000;
        }

        .faq-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(211, 47, 47, 0.05);
            border: 1px solid rgba(211, 47, 47, 0.2);
            border-radius: 8px;
            margin-bottom: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-red);
        }

        .faq-question {
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            user-select: none;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(211, 47, 47, 0.1);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent-gold);
            transition: transform 0.3s ease;
            font-weight: 300;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 20px;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-gray);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px 15px 20px;
        }
        /* Before/After Carousel Section */
        .ba-section {
            background: #000000;
            padding: 15px 20px;
            overflow: hidden;
        }

        .ba-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .ba-intro.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ba-intro h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .ba-intro .highlight {
            color: var(--primary-red);
        }

        .ba-intro p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-gray);
            line-height: 1.7;
        }

        .ba-carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ba-carousel-container {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .ba-carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .ba-card {
            flex: 0 0 auto;
            width: 400px;
            background: rgba(211, 47, 47, 0.1);
            border: 2px solid rgba(211, 47, 47, 0.3);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .ba-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ba-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-red);
            box-shadow: 0 15px 40px rgba(211, 47, 47, 0.4);
        }

        .ba-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .ba-card-content {
            padding: 20px;
        }

        .ba-name {
            font-size: 1.3rem;
            color: var(--accent-gold);
            font-weight: 700;
            text-align: center;
            margin: 0;
        }

        .ba-card-content p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .ba-stats {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(211, 47, 47, 0.3);
        }

        .ba-stat {
            flex: 1;
            text-align: center;
        }

        .ba-stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-red);
            display: block;
        }

        .ba-stat-label {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* Carousel Navigation */
        .ba-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
        }

        .ba-nav-button:hover {
            background: #b71c1c;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
        }

        .ba-nav-button.prev {
            left: 0;
        }

        .ba-nav-button.next {
            right: 0;
        }

        .ba-outro {
            text-align: center;
            margin-top: 15px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .ba-outro.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .ba-card {
                width: 320px;
            }
            
            .ba-carousel-container {
                padding: 0 50px;
            }

            .ba-nav-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        
        /* Pulse CTA Animation */
        @keyframes pulse-cta {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(211, 47, 47, 0.6);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 15px 60px rgba(211, 47, 47, 0.8);
                transform: scale(1.02);
            }
        }

        /* Pulse WhatsApp Animation */
        @keyframes pulse-whatsapp {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
            }
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .sticky-cta.visible {
            opacity: 1;
            visibility: visible;
        }

        .sticky-cta a {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 40px rgba(211, 47, 47, 0.6);
            animation: pulse-cta 2s infinite;
            transition: all 0.3s ease;
        }

        .sticky-cta a:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(211, 47, 47, 0.8);
        }

        /* Timeline Animations */
        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 50px auto;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(255, 167, 38, 0.2);
            transform: translateY(-50%);
        }

        .timeline-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
            transition: width 1.5s ease-out;
        }

        .timeline-container.animate .timeline-line-fill {
            width: 100%;
        }

        .timeline-steps {
            position: relative;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
        }

        .timeline-step {
            flex: 1;
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .timeline-container.animate .timeline-step:nth-child(1) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .timeline-container.animate .timeline-step:nth-child(2) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .timeline-container.animate .timeline-step:nth-child(3) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .timeline-container.animate .timeline-step:nth-child(4) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        .timeline-number {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
        }

        .timeline-number::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }

        .timeline-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .timeline-desc {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Counter Number Animation */
        .counter-number {
            display: inline-block;
        }

        /* Hover Tilt & Glow Effects */
        .hover-tilt {
            transition: transform 0.3s ease;
            transform-style: preserve-3d;
        }

        .hover-tilt:hover {
            transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
        }

        .hover-glow {
            position: relative;
            overflow: hidden;
        }

        .hover-glow::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, var(--primary-red), var(--accent-gold));
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s ease;
            filter: blur(10px);
            z-index: -1;
        }

        .hover-glow:hover::before {
            opacity: 0.6;
        }

        @media (max-width: 768px) {
            .timeline-line {
                display: none;
            }

            .timeline-steps {
                flex-direction: column;
                gap: 30px;
            }

            .sticky-cta a {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }

    
        /* Hero Image - Responsive */
        .hero img {
            width: 100%;
            max-width: 1100px;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(211, 47, 47, 0.5);
            border: 4px solid var(--accent-gold);
            display: block;
            margin: 0 auto 35px;
        }
        
        @media (max-width: 768px) {
            .hero img {
                border-radius: 12px;
                margin-bottom: 25px;
                border: 3px solid var(--accent-gold);
            }
        }
        
        @media (max-width: 480px) {
            .hero img {
                border-radius: 10px;
                margin-bottom: 6px;
                border: 2px solid var(--accent-gold);
            }
        }
    
        /* Counter Animation Styles */
        .counter-number {
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .counter-number.animating {
            animation: counterGlow 1.8s ease-out;
        }
        
        @keyframes counterGlow {
            0% {
                opacity: 0.5;
                transform: scale(0.95);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
    
        
        
        
        
        .transformation-carousel-wrapper {
            overflow-x: auto;
            cursor: grab;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .transformation-carousel-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        .transformation-carousel {
            display: flex;
            gap: 20px;
        }
    
        
        
        .transformation-card img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            pointer-events: none;
            -webkit-user-drag: none;
        }
        
        @media (max-width: 768px) {
            
        }
    
        
        
        @media (max-width: 768px) {
            
        }
    
        .process-step, .timeline-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .process-step.visible, .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .process-step:nth-child(1) { transition-delay: 0s; }
        .process-step:nth-child(2) { transition-delay: 0.15s; }
        .process-step:nth-child(3) { transition-delay: 0.3s; }
        .process-step:nth-child(4) { transition-delay: 0.45s; }
        .process-step:nth-child(5) { transition-delay: 0.6s; }
    
        .transformation-card {
            flex: 0 0 auto;
            width: 481px;
            pointer-events: none;
            user-select: none;
            -webkit-user-select: none;
        }
        
        @media (max-width: 768px) {
            .transformation-card {
                width: 385px;
            }
        }
    
        .ba-section h2 {
            margin-bottom: 20px;
        }
    
        .process-section {
            margin-bottom: 10px;
        }
        .ba-section {
            margin-bottom: 15px;
        }
    
        
        .transformations-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .transform-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .transform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(211, 47, 47, 0.6);
        }
        
        .transform-card img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            border: 4px solid var(--accent-gold);
            box-shadow: 0 20px 60px rgba(211, 47, 47, 0.4);
        }
        
        .transform-name {
            text-align: center;
            color: var(--accent-gold);
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 6px;
            margin-bottom: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }
        .transform-subtitle {
            text-align: center;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 400;
            margin-top: -8px;
        }
        
        .cta-after-transformations {
            text-align: center;
            margin-top: 60px;
        }
        
        .cta-after-transformations a {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 20px 50px;
            border-radius: 8px;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 10px 40px rgba(211, 47, 47, 0.6);
        }
        
        .cta-after-transformations a:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(211, 47, 47, 0.8);
        }
        
        @media (max-width: 768px) {
            .transformations-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .transform-name {
                font-size: 1rem;
                margin-top: 4px;
            }

            .transform-subtitle {
                font-size: 0.88rem;
                margin-top: -4px;
                line-height: 1.3;
            }

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

            .community-item {
                height: auto;
            }

            .community-item-wide {
                grid-column: span 1;
            }

            .community-item img,
            .community-item video {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

    
        .problem-card {
            transition: all 0.5s ease;
            border: 3px solid transparent;
        }
        
        .problem-card.highlight {
            border-color: var(--accent-gold);
            box-shadow: 0 0 30px rgba(255, 167, 38, 0.6);
            transform: scale(1.05);
        }
        .mobile-break { display: none; }
        @media (max-width: 768px) {
            .mobile-break { display: block; }
        }

