:root {
    --primary-black: #000000;
    --light-bg: #FFFFFF;
    --soft-grey-bg: #F8F9FA;
    --accent-purple: #710AE3;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-blur: blur(10px);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Layout Helpers */
.text-purple {
    color: var(--accent-purple);
}

.text-orange {
    color: var(--accent-orange);
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.check-list li i {
    color: var(--accent-purple);
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    background: rgba(113, 10, 227, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.highlight {
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-purple);
    z-index: -1;
    opacity: 0.5;
}

.bg-darker {
    background-color: var(--soft-grey-bg);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, background 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #5b08b8;
}

.btn-secondary {
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--accent-purple);
    color: white;
}

.btn-alt {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-alt:hover {
    color: var(--accent-purple);
}

/* Header */
#main-header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#agency-logo {
    height: 75px;
    width: auto;
    background-color: #FFFFFF;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: width 0.3s ease;
}

nav ul a:hover {
    color: var(--accent-purple);
}

nav ul a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    /* Relative path works for standalone HTML.
       WordPress: overridden in template-reverse.php via PHP inline style */
    background: url('assets/background.png') no-repeat center center;
    background-size: cover;
    background-color: #f5f0ff;
    /* fallback if image fails */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Subtly overlay to keep text readable */
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--accent-purple);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ROI Simulator */
.roi-simulator {
    background: var(--light-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    color: var(--text-dark);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.dot-blink {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 30px rgba(113, 10, 227, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-grey-bg);
    color: var(--accent-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--accent-purple);
    color: white;
    transform: rotate(10deg);
}

.step-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.05;
}

.stat-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.card-icon-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 3rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    color: var(--text-dark);
}

.stat-card .label {
    font-size: 0.8rem;
    opacity: 0.6;
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

.stat-card.orange .value {
    color: #FF6900;
}

.stat-card.purple .value {
    color: var(--accent-purple);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
}

.chart-mockup .bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-purple), transparent);
    border-radius: 5px 5px 0 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(113, 10, 227, 0.2);
}

.icon-wrap {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

/* Results Banner */
.results-banner {
    background: linear-gradient(90deg, var(--accent-purple), var(--primary-black));
    padding: 3rem;
    border-radius: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 4rem 0;
    color: white;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-item .num {
    font-size: 3rem;
    font-weight: 800;
}

.result-item .desc {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Roadmap */
.roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    border-left: 1px solid var(--accent-purple);
}

.step-num {
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-accordion-item {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    flex-grow: 1;
}

.faq-question i.main-icon {
    font-size: 1.2rem;
    color: var(--accent-purple);
    display: inline-block;
    opacity: 1;
}

.faq-question i.fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--accent-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--soft-grey-bg);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-accordion-item.active .faq-question {
    color: var(--accent-purple);
}

.faq-accordion-item.active .faq-question i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    /* Large enough for content */
}

/* Form */
.form-wrapper {
    max-width: 600px;
    margin: 6rem auto;
    padding: 4rem;
    border-radius: 30px;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.input-group {
    margin-bottom: 2rem;
}

label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.6;
}

input,
textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 1.2rem;
    color: var(--text-dark);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: var(--accent-purple);
    outline: none;
}

.full-width {
    width: 100%;
}

/* Footer Redesign */
#main-footer {
    background: var(--primary-black);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-purple);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

#footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    display: block;
}

.brand-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(113, 10, 227, 0.3);
    border-color: var(--accent-purple);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Sections */
section {
    padding: 8rem 0;
}

/* Flex Helpers */
.flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Partners Section */
#partners {
    padding: 6rem 0;
    background: var(--soft-grey-bg);
    border-top: 1px solid var(--glass-border);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.partner-logo {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===========================
   CEO Goal Paragraph
   =========================== */
.ceo-goal {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-grey);
    border-left: 3px solid var(--accent-purple);
    padding-left: 1rem;
    line-height: 1.7;
}

/* ===========================
   Badge Alt
   =========================== */
.badge-alt {
    display: inline-block;
    background: rgba(113, 10, 227, 0.08);
    border: 1px solid rgba(113, 10, 227, 0.2);
    color: var(--accent-purple);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

/* ===========================
   Sin Permanencia Section
   =========================== */
#sin-permanencia {
    padding: 8rem 0;
}

.permanencia-wrapper {
    text-align: center;
}

.permanencia-wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.permanencia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(113, 10, 227, 0.1), rgba(113, 10, 227, 0.05));
    border: 1px solid rgba(113, 10, 227, 0.25);
    color: var(--accent-purple);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.permanencia-badge i {
    font-size: 1rem;
}

.permanencia-intro {
    max-width: 680px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.8;
}

.permanencia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.permanencia-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.permanencia-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(113, 10, 227, 0.12);
}

.permanencia-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(113, 10, 227, 0.12), rgba(113, 10, 227, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-purple);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.permanencia-card:hover .permanencia-icon {
    background: var(--accent-purple);
    color: white;
}

.permanencia-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.permanencia-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* ===========================
   Hamburger Menu
   =========================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
    order: 3;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===========================
   MOBILE RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {

    /* Nav */
    .nav-wrapper {
        flex-wrap: wrap;
        gap: 0;
    }

    .hamburger {
        display: flex;
    }

    #main-nav {
        display: none;
        width: 100%;
        order: 4;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--glass-border);
        padding: 1rem 0 1.5rem;
    }

    #main-nav.nav-open {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    #main-nav ul li a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 0;
        width: 100%;
    }

    #main-nav ul li a.btn-alt {
        margin: 0;
        color: var(--accent-purple);
        font-weight: 700;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    #hero {
        padding: 9rem 0 5rem;
    }

    #hero h1 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    #hero p {
        font-size: 1rem;
    }

    .hero-visual {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Results Banner */
    .results-banner {
        border-radius: 20px;
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .result-item .num {
        font-size: 2.2rem;
    }

    /* Multicanal */
    .multicanal-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .multicanal-visual {
        order: -1;
    }

    .multicanal-img-wrapper {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }

    .multicanal-text h2 {
        font-size: 1.8rem;
    }

    /* Roadmap */
    .roadmap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    /* Nosotros */
    .flex-row {
        flex-direction: column;
        gap: 2rem;
    }

    .about-visual {
        width: 100%;
    }

    .about-text {
        width: 100%;
    }

    .ceo-card {
        max-width: 340px;
        margin: 0 auto;
    }

    /* Sin Permanencia */
    .permanencia-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .permanencia-wrapper h2 {
        font-size: 1.8rem;
    }

    .permanencia-intro {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-accordion {
        margin-top: 2.5rem;
    }

    .faq-question {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    .faq-answer p {
        padding: 1rem 1rem;
        font-size: 0.9rem;
    }

    /* Contact Form */
    .form-wrapper {
        margin: 3rem auto;
        padding: 2rem 1.5rem;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Sections general padding */
    section {
        padding: 5rem 0;
    }

    h2 {
        font-size: 1.9rem;
    }

    .container {
        padding: 0 1.2rem;
    }
}

/* ===========================
   MOBILE RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {

    #hero h1 {
        font-size: 1.85rem;
    }

    .badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
    }

    .btn-primary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .permanencia-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .results-banner {
        padding: 2rem 1rem;
    }

    .result-item .num {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 0.8rem;
        gap: 0.6rem;
    }

    .faq-question i.main-icon {
        font-size: 1rem;
        min-width: 18px;
    }

    .form-wrapper {
        padding: 1.8rem 1.2rem;
    }

    .permanencia-wrapper h2 {
        font-size: 1.5rem;
    }

    #main-header {
        padding: 0.75rem 0;
    }

    #agency-logo {
        height: 55px;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--light-bg);
    padding: 4rem 3rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-grey);
    cursor: pointer;
    line-height: 1;
}

.popup-icon {
    font-size: 4rem;
    color: var(--accent-purple);
    margin-bottom: 2rem;
    display: block;
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--text-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.close-popup-btn {
    width: 100%;
}

/* ===========================
   Section: Multicanal
   =========================== */
#multicanal {
    padding: 8rem 0;
    background: #ffffff;
    overflow: hidden;
}

.multicanal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Badge */
.badge-multicanal {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-purple);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--accent-purple);
    padding-bottom: 4px;
}

.multicanal-text h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

/* Benefit rows */
.multicanal-benefit {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.multicanal-benefit:hover {
    background: var(--soft-grey-bg);
    transform: translateX(6px);
}

.benefit-icon-wrap {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(113, 10, 227, 0.12), rgba(255, 105, 0, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

.multicanal-benefit:hover .benefit-icon-wrap {
    background: var(--accent-purple);
    color: #fff;
}

.benefit-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-body p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* Visual Side */
.multicanal-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.multicanal-img-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

.multicanal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(113, 10, 227, 0.12));
    animation: float-main 4s ease-in-out infinite;
}

/* Floating channel badges */
.channel-badge {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.badge-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    top: 2%;
    left: 5%;
    animation: float-badge 3.2s ease-in-out infinite;
}

.badge-fb {
    background: #1877F2;
    top: 10%;
    right: 0%;
    animation: float-badge 2.8s ease-in-out infinite 0.4s;
}

.badge-ln {
    background: #0A66C2;
    top: 40%;
    right: -5%;
    animation: float-badge 3.5s ease-in-out infinite 0.8s;
}

.badge-gads {
    background: #FF6900;
    bottom: 20%;
    right: 2%;
    animation: float-badge 3s ease-in-out infinite 0.2s;
}

.badge-yt {
    background: #FF0000;
    bottom: 5%;
    left: 10%;
    animation: float-badge 3.8s ease-in-out infinite 1s;
}

.badge-em {
    background: var(--accent-purple);
    top: 55%;
    left: -3%;
    animation: float-badge 2.6s ease-in-out infinite 0.6s;
}

/* Animations */
@keyframes float-main {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.08);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .multicanal-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .multicanal-visual {
        order: -1;
    }

    .multicanal-img-wrapper {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .multicanal-text h2 {
        font-size: 1.8rem;
    }
}