:root {
    --primary: #E21765;
    --primary-dark: #3A1F73;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --border: #e5e5e5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    padding-top: 70px;
}

/* ================== HEADER STYLES ================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 15px 20px;
}

.elementor-section {
    padding: 0;
    margin: 0;
}

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

.elementor-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.elementor-column {
    display: flex;
    align-items: center;
}

.elementor-widget-theme-site-logo img {
    max-height: 50px;
    width: auto;
}

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

/* ================== SECTIONS ================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ================== HERO SECTION ================== */
#hero {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(226, 23, 101, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(58, 31, 115, 0.05) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroFloat {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================== BUTTONS ================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    text-align: center;
}

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

.btn-primary:hover {
    background: #c91556;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.cta-emotional {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}

.cta-emotional:hover {
    background: #c91556;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================== STATS ================== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================== ANALYZER ================== */
#analyzer {
    background: var(--bg-light);
}

.analyzer-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.progress-container {
    margin-bottom: 60px;
}

.progress-line {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
    width: 0%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 50px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.progress-step.completed .step-circle {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.question {
    display: none;
}

.question.active {
    display: block;
}

.question h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.option {
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.option:hover {
    border-color: var(--primary);
    background: rgba(226, 23, 101, 0.05);
}

.result {
    display: none;
}

.result.active {
    display: block;
}

.result h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.result-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ================== ECOSYSTEM ================== */
#ecosystem {
    background: white;
}

.ecosystem-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

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

.ecosystem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ecosystem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ================== CLIENTS ================== */
#clients {
    background: var(--bg-light);
}

.client-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.client-card h4 a {
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

.client-card h4 a:visited {
    color: var(--text-primary) !important;
}

.client-industry {
    font-size: 0.875rem;
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0;
}

/* ================== SWIPER ================== */
.swiper {
    overflow: hidden;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 40px !important;
    padding-bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary);
    top: 50% !important;
    transform: translateY(-50%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* ================== PRICING ================== */
#pricing {
    background: var(--bg-light);
}

/* Grid de precios para escritorio */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Carrusel de precios para móvil (oculto en desktop) */
.pricing-swiper {
    display: none;
    margin-bottom: 40px;
}
.pricing-swiper .swiper-slide {
    height: auto;
}
.pricing-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}
.pricing-card:hover:not(.featured) {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(226, 23, 101, 0.1);
    transform: scale(1.02);
}
.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.plan-price small {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.plan-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 40px;
}
.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}
.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.plan-features li:last-child {
    border-bottom: none;
}
.highlight-feature {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    background: rgba(226, 23, 101, 0.05);
    margin: 4px 0;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
    width: 100%;
}

/* Estilos para Setup Alert */
.setup-alert {
    background: rgba(226, 23, 101, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    text-align: left;
}
.setup-alert h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.15rem;
}
.setup-alert p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estilos para Add-ons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.addon-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}
.addon-card:hover:not(.featured) {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.addon-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(226, 23, 101, 0.1);
    transform: scale(1.02);
}
.addon-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.addon-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}
.addon-price small {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.addon-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}
.addon-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.addon-features li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pricing-grid { display: grid; grid-template-columns: 1fr; }
    .pricing-swiper { display: none; }
    .addons-grid { grid-template-columns: 1fr; }
}

/* ================== IMPLEMENTATION ================== */
#implementation {
    background: white;
}

.implementation-item {
    text-align: center;
}

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

.implementation-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.implementation-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

/* ================== FEATURE CAROUSEL ================== */
.feature-slide {
    height: auto;
}
.feature-card-swiper {
    background: white;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card-swiper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

/* ================== PHASES ================== */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.phase-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.phase-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.phase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.phase-card p {
    color: var(--text-secondary);
}

/* ================== ELEGIR ASESORA2 SECTION ================== */
.elegir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.elegir-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.elegir-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.elegir-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.elegir-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.elegir-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ================== STEPS ================== */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0 30px;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-secondary);
}

/* ================== BENEFITS SECTION ================== */
.benefits-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* ================== INFRASTRUCTURE SECTION ================== */
.infrastructure-section {
    background: white;
    padding: 80px 0;
}

.infrastructure-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.infrastructure-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.infrastructure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.infrastructure-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.infrastructure-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.infrastructure-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ================== GUARANTEE SECTION ================== */
.guarantee-section {
    background: linear-gradient(135deg, #0a5c36 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-box h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.guarantee-box p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ================== COMPARISON TABLE ================== */
.comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.comparison-table th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-light);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table td:not(:first-child) {
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.comparison-table .featured-col {
    background: rgba(226, 23, 101, 0.05);
}

/* ================== PARTNERS CAROUSEL ================== */
.partnersSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partner-card {
    background: #000000;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
}
.partner-card img {
    max-height: 150px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .partner-card {
        height: 140px;
        padding: 15px;
    }
    .partner-card img {
        max-height: 100px;
    }
}

/* ================== BLOG CARDS ================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.blog-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* ================== TESTIMONIOS CARROUSEL ================== */
.testimoniosSwiper {
    padding-bottom: 50px;
}
.testimoniosSwiper .swiper-slide {
    height: auto;
}
.testimonio-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.testimonio-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.testimonio-estrellas {
    color: #f5b042;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.testimonio-estrellas i {
    margin: 0 1px;
}
.testimonio-texto {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
    flex-grow: 1;
}
.testimonio-nombre {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: auto;
}
.testimoniosSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
}
.testimoniosSwiper .swiper-button-prev,
.testimoniosSwiper .swiper-button-next {
    color: var(--primary);
}
@media (max-width: 768px) {
    .testimoniosSwiper .swiper-button-prev,
    .testimoniosSwiper .swiper-button-next {
        display: none;
    }
}

/* ================== CALENDAR SECTION ================== */
#calendar {
    background: var(--bg-light);
}

.calendar-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
}
.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}
.testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}
.calendar-container {
    width: 100%;
}
.calendar-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

/* ================== FAQ ================== */
#faq {
    background: white;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    padding: 24px 60px 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    font-family: var(--font-sans);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 24px 0;
}
.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ================== FOOTER ================== */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
}

/* ================== WHATSAPP BUTTON ================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

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

.whatsapp-button svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ================== MOBILE MENU ================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 2.2rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .benefits-grid {
        gap: 30px;
    }
    .calendar-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-title h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    section {
        padding: 50px 0;
    }
    .section-title {
        margin-bottom: 40px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    .analyzer-box {
        padding: 24px 16px;
    }
    .result-buttons {
        flex-direction: column;
        width: 100%;
    }
    .result-buttons .btn {
        width: 100%;
    }
    .progress-steps {
        justify-content: center;
    }
    .progress-step {
        min-width: 60px;
    }
    .step-label {
        font-size: 0.65rem;
    }
    .question h3 {
        font-size: 1.2rem;
    }
    .options {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        min-width: 100%;
    }
    .steps-container {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
    .elementor-nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 16px 0;
        z-index: 9998;
    }
    .elementor-nav-menu.menu-open {
        display: block !important;
    }
    .elementor-nav--main {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    .elementor-nav--main > li {
        border-bottom: 1px solid var(--bg-light);
    }
    .elementor-nav--main > li > a {
        display: block;
        padding: 14px 24px !important;
    }
    .elementor-nav--main .sub-menu {
        position: static !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: var(--bg-light) !important;
        padding: 0 !important;
    }
    .elementor-nav--main .sub-menu li a {
        padding: 12px 40px !important;
        font-size: 0.9rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .guarantee-box h2 {
        font-size: 1.6rem;
    }
    .guarantee-box p {
        font-size: 1rem;
    }
    .calendar-two-columns {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .section-title h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .plan-price {
        font-size: 1.8rem;
    }
    .feature-card-swiper, .phase-card, .benefit-card, .infrastructure-card, .elegir-card, .partner-card, .testimonio-card {
        padding: 20px;
    }
    .section-title h3 {
        font-size: 1.3rem;
    }
}
/* Menu Hover Effect */
.elementor-nav--main .elementor-item:hover,
.elementor-nav--main .sub-menu a:hover {
    color: #E21765 !important;
}
/* Fix Ecosistema Box Heights */
.ecosystemSwiper .swiper-slide {
    height: auto;
}
.ecosystem-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}