/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #5BA5D8;
    --light-blue: #6BADE8;
    --dark-blue: #2C5F80;
    --light-pink: #F7C7D3;
    --dark-gray: #1A1A1A;
    --light-gray: #F4F5F3;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Font families */
    --font-myriad: 'Myriad Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-arboria-book: 'Arboria Book', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-arboria-bold: 'Arboria Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-calsans: 'Cal Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-yahei: 'Microsoft YaHei UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--dark-gray);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-myriad);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav a.active {
    color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-gray);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-brand {
    background-color: var(--light-pink);
    color: var(--text-dark);
    font-size: 3.5rem;
    font-weight: 300;
    padding: 8px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-highlight {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.hero-subtitle {
    font-family: var(--font-arboria-book);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* ===== COMO FUNCIONAMOS SECTION ===== */
.como-funcionamos {
    padding: 80px 0;
    background: linear-gradient(180deg, #72a9dc 0%, #FFFFFF 100%);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-calsans);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
}

.funcionamiento-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.func-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.func-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.func-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: none;
    border-radius: 0;
}

.func-card-icon .card-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.func-card h3 {
    font-family: var(--font-arboria-bold);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.func-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.func-card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.func-card-link:hover {
    color: var(--dark-blue);
}

/* ===== INFINITY SECTION ===== */
.infinity-section {
    padding-top: 0px;
    padding-bottom: 80px;
    background-color: var(--light-gray);
    transform: translatex(0px) translatey(0px);
}

.infinity-header {
    text-align: center;
    margin-bottom: 60px;
}

.infinity-title {
    font-family: var(--font-myriad);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.infinity-section .infinity-header h2 {
    font-weight: 600;
}

.infinity-subtitle {
    font-family: var(--font-yahei);
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.infinity-section .infinity-header p {
    color: #000000;
}

.infinity-main-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 60px;
    align-items: flex-start;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.infinity-main-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.infinity-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.infinity-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

.infinity-feature i {
    color: #72a9dc;
    font-size: 1.4rem;
    width: 25px;
}

.infinity-promo {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 30px;
}

.xpertia-link {
    color: #72a9dc;
    font-weight: 600;
}

.infinity-main-center {
    text-align: center;
}

.infinity-label {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.infinity-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-infinity {
    background: #72a9dc;
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-infinity:hover {
    background: #5a8bc4;
    transform: translateY(-2px);
}

.infinity-main-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.notification {
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.notification.whatsapp {
    border-left-color: #25D366;
}

.notification.instagram {
    border-left-color: #E4405F;
}

.notification.twitter {
    border-left-color: #1DA1F2;
}

.notif-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.notif-header i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.notification.whatsapp i {
    color: #25D366;
}

.notification.instagram i {
    color: #E4405F;
}

.notification.twitter i {
    color: #1DA1F2;
}

.notif-content strong {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.notif-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.notif-buttons {
    display: flex;
    gap: 8px;
}

.notif-btn {
    background: var(--light-gray);
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
}

.notif-btn.primary {
    background: var(--primary-blue);
    color: var(--white);
}

.chat-input {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    padding: 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.chat-input i {
    font-size: 0.9rem;
}

/* ===== INFINITY BOTTOM CARDS ===== */
.infinity-bottom-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.infinity-card {
    border-radius: 25px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    min-height: 280px;
    position: relative;
}

.infinity-card.lite {
    background: linear-gradient(135deg, #5ba5d8 0%, #72a9dc 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.infinity-card.ads {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.infinity-card-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.card-label {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 400;
}

.infinity-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.infinity-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-buttons {
    display: flex;
    gap: 15px;
}

.btn-card {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-card.secondary {
    background: transparent;
}

.marketing-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.7rem;
    margin-top: 15px;
}

.card-3d-element {
    font-size: 4rem;
    opacity: 0.7;
}

.lite-icon {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: absolute;
    right: -20px;
    bottom: -20px;
    opacity: 0.9;
}

.ads-icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
    position: absolute;
    right: -10px;
    bottom: -10px;
    opacity: 0.9;
}

/* ===== INTEGRATION SECTION ===== */
/* ===== RECURSOX SECTION ===== */
.recursox-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
}

.recursox-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recursox-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding-top: 0px;
    padding-bottom: 80px;
    background-color: var(--white);
    transform: translatex(0px) translatey(0px);
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.stars {
    text-align: center;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: #ffffff;
    border-radius: 15px;
    padding-right: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #72a9dc 0%, #FFFFFF 100%);
    position: relative;
    overflow: visible;
    min-height: 300px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content {
    color: var(--text-dark);
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
    color: var(--text-dark);
    font-weight: 400;
}

.cta-btn {
    background: #1A1A1A;
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.cta-circles {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 99999;
}

.cta-icon {
    width: 400px;
    height: auto;
    object-fit: contain;
    opacity: 1;
    max-width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: #f4f5f3;
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-img {
    width: 123px;
    height: 80px;
    object-fit: contain;
}

.footer-center {
    text-align: left;
}

.footer-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-dark);
}

.footer-platforms {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-platform {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 20px 0;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: flex-start;
}

.footer-ai-engines {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-ai-engines span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

.ai-engines {
    display: flex;
    gap: 15px;
}

.engine {
    width: 50px;
    height: 50px;
    background-color: #000000;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.engine-icon {
    width: 100%;
    height: 214px;
    min-width: 26px;
    object-fit: contain;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Menu Styles - Desktop Hidden */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header-container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-gray);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 20px 20px;
        gap: 30px;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        font-size: 1.2rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(10px);
    }
    
    .nav a.active {
        background-color: rgba(66, 133, 244, 0.2);
        color: var(--primary-blue);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-brand {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-highlight {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Cards and Grid Layouts */
    .funcionamiento-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    /* Cards and Grids Mobile Improvements */
    .infinity-main-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .infinity-bottom-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .infinity-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .integration-item {
        padding: 25px 20px;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Footer Mobile Improvements */
    .footer {
        padding-top: 40px;
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-left {
        order: 1;
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .footer-brand-text {
        font-size: 1.5rem;
        margin-top: 10px;
    }
    
    .footer-center {
        order: 2;
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .footer-platforms {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-logo-simple {
        width: 35px;
        height: 35px;
    }
    
    .footer-right {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-col ul {
        gap: 10px;
    }
    
    .footer-col li {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding: 20px;
        text-align: center;
    }
    
    .footer-ai-engines span {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 20px;
        display: block;
    }
    
    .ai-engines {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .engine {
        width: 45px;
        height: 45px;
    }
    
    .engine-icon {
        width: 25px;
        height: 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-circles {
        display: none;
    }
    
    .nav {
        display: none;
    }
}

/* ===== CUSTOM ADJUSTMENTS ===== */

/* Infinity main card */
.infinity-section .section-container .infinity-main-card{
    width: 116% !important;
}

/* Infinity main card */
.infinity-section .infinity-main-card{
    background-color: #14192b;
    background-image: none;
    transform: translatex(0px) translatey(0px);
    padding-bottom: 0px;
    margin-bottom: 0px;
    height: 467px;
}

/* Paragraph */
.infinity-main-left .infinity-promo p{
    transform: translatex(-10px) translatey(91px);
}

/* Infinity main left */
.infinity-section .infinity-main-card .infinity-main-left{
    border-right-width: 1px;
    border-right-style: solid;
    font-size: 15px;
}

/* Infinity */
.infinity-main-card .infinity-main-center .btn-infinity{
    position: relative;
    top: 46px;
    left: -170px;
    background-color: #ffffff;
    color: #000000;
}

/* Paragraph */
.infinity-main-card .infinity-main-center p{
    text-align: left;
    transform: translatex(-3px) translatey(3px);
}

/* Infinity label */
.infinity-main-card .infinity-main-center .infinity-label{
    position: relative;
    top: -6px;
    left: -137px;
    background-color: transparent;
    background-image: none;
    font-size: 25px;
    transform: translatex(78px) translatey(-5px);
}

/* Paragraph */
.infinity-section .section-container .infinity-main-card .infinity-main-center p{
    width: 76% !important;
}

/* Phone image */
.infinity-main-right .phone-image{
    position: relative;
    top: -60px;
}

/* Card label */
.infinity-bottom-cards .infinity-card .card-label{
    font-size: 25px;
}

/* Font Icon */
.testimonials .stars i{
    color: #5ba5d8;
}

/* Span Tag */
.hero .hero-title span{
    background-color: transparent;
}

/* Infinity section */
.infinity-section{
    transform: translatex(0px) translatey(0px);
}

/* Image */
.infinity-section .section-container .infinity-main-card .infinity-main-right img{
    height: 919px !important;
    width: 75% !important;
}

/* Image */
.infinity-main-card .infinity-main-right img{
    min-width: 793px;
    max-width: 69%;
    min-height: 348px;
    max-height: 553px;
    transform: translatex(-103px) translatey(4px);
}

/* Infinity main center */
.infinity-section .infinity-main-card .infinity-main-center{
    transform: translatex(-115px) translatey(5px);
}

/* Infinity feature */
.infinity-section .section-container .infinity-main-card .infinity-main-left .infinity-features .infinity-feature{
    width: 71% !important;
}

/* Infinity features */
.infinity-section .section-container .infinity-main-card .infinity-main-left .infinity-features{
    width: 54% !important;
}

/* Infinity main left */
.infinity-section .infinity-main-card .infinity-main-left{
    padding-right: 10px;
    width: 213px;
}

/* Paragraph - Updated positioning */
.infinity-main-left .infinity-promo p{
    transform: translatex(-21px) translatey(58px);
}

/* Lite icon */
.infinity-bottom-cards .infinity-card .lite-icon{
    transform: translatex(121px) translatey(-20px);
    min-height: 134px;
    max-height: 554px;
    max-width: 434px;
    min-width: 579px;
    height: 347px;
    z-index: -10;
}

/* Paragraph */
.infinity-bottom-cards .infinity-card p{
    width: 63%;
}

/* Ads icon */
.infinity-bottom-cards .infinity-card .ads-icon{
    width: 397px;
    height: 465px;
    top: -44px;
    left: 240px;
}

/* Card */
.lite .card-buttons .btn-card:nth-child(1){
    background-color: rgba(255,255,255,0.97);
    color: #66a7da;
    font-weight: 600;
    font-size: 17px;
}

/* Card */
.lite .card-buttons .btn-card:nth-child(2){
    border-style: none;
    font-weight: 700;
    font-size: 14px;
}

/* Card label */
.lite .card-label{
    font-size: 36px !important;
}

/* Card subtitle */
.lite .card-subtitle{
    position: relative;
    top: -23px;
    font-size: 21px;
}

/* Card label */
.infinity-bottom-cards .infinity-card:nth-child(2) .card-label{
    font-size: 36px;
}

/* Card subtitle */
.infinity-bottom-cards .infinity-card:nth-child(2) .card-subtitle{
    font-size: 20px;
    position: relative;
    top: -18px;
}

/* Card */
.infinity-bottom-cards .infinity-card:nth-child(2) .btn-card{
    color: #66a7da;
    font-size: 17px;
    font-weight: 600;
    background-color: #ffffff;
}

/* Span Tag */
.infinity-bottom-cards .infinity-card span{
    font-weight: 600;
    font-size: 14px;
}

/* ===== ADDITIONAL CUSTOM STYLES ===== */

/* Import Google Fonts */
@import url("//fonts.googleapis.com/css2?family=ABeeZee:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

/* Span Tag */
.hero .hero-title span:nth-child(1){
 font-weight:700;
 transform:translatex(4px) translatey(37px);
}

/* Hero */
.hero{
 padding-top:0px;
 transform:translatex(4px) translatey(37px);
}

/* Button */
.hero .hero-buttons .btn-primary{
 border-top-left-radius:25px;
 border-top-right-radius:25px;
 border-bottom-left-radius:25px;
 border-bottom-right-radius:25px;
 color:#000000;
 background-color:#ffffff;
 border-color:#d3d3d3;
 border-style:solid;
 border-width:1px;
}

/* Button */
.hero .hero-buttons .btn-secondary{
 border-top-left-radius:25px;
 border-top-right-radius:25px;
 border-bottom-left-radius:25px;
 border-bottom-right-radius:25px;
 border-color:#cbc7c7;
 border-width:1px;
 background-color:#ffffff;
}

/* Heading */
.como-funcionamos .section-title-wrapper h2{
 background-color:transparent;
 position:relative;
 left:-270px;
 top:21px;
 font-size:39px;
}

/* Image */
.infinity-main-card .infinity-main-right img{
 min-width:589px;
 max-width:61%;
}

/* Image */
.infinity-section .section-container .infinity-main-card .infinity-main-right img{
 height:534px !important;
}

/* Infinity card */
.infinity-section .infinity-bottom-cards .infinity-card{
 top:94px;
}

/* Cta */
.cta{
 padding-bottom:0px;
 padding-top:44px;
 min-height:300px;
 height:300px;
 color:#000000;
}

/* Heading */
.cta h2{
 transform:translatex(-193px) translatey(5px);
}

/* Paragraph */
.cta p{
 transform:translatex(-303px) translatey(-14px);
 position:relative;
 top:-8px;
 left:-12px;
 color:#000000;
}

/* Cta */
.cta .cta-btn{
 transform:translatex(-497px) translatey(-36px);
 line-height:23.1px;
 word-spacing:9.9px;
 letter-spacing:4.8px;
 border-top-left-radius:16px;
 border-bottom-left-radius:16px;
 border-bottom-right-radius:16px;
 border-top-right-radius:16px;
 font-family:'ABeeZee', sans-serif;
}

@media (min-width:769px){

 /* Span Tag */
 .hero .hero-title span:nth-child(1){
  font-size:64px;
 }
 
}

/* ===== TYPING CURSOR ANIMATION ===== */
.cursor {
    animation: blink 1s infinite;
    color: var(--primary-blue);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ===== CTA SECTION ADDITIONAL ADJUSTMENTS ===== */

/* Cta */
.cta{
 min-height:240px;
 height:240px;
}

/* Cta icon */
.cta .cta-circles .cta-icon{
 z-index:346;
 height:606px;
 width:65%;
 transform:translatex(431px) translatey(-46px) !important;
}

/* Footer */
.footer{
 z-index:-10;
}

/* Cta title */
.cta .cta-title{
 position:relative;
 top:-24px;
}

/* Cta subtitle */
.cta .cta-subtitle{
 top:-40px;
 font-size:26px;
 left:82px;
}

/* Cta */
.cta .cta-btn{
 position:relative;
 top:-21px;
 left:21px;
}

/* ===== FOOTER SIMPLE LOGOS ===== */
.footer-logo-simple {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 10px;
}

/* ===== FOOTER ADDITIONAL ADJUSTMENTS ===== */

/* Footer engines */
.footer .footer-bottom .footer-ai-engines{
 border-width:2px;
 border-color:#d6d5d5;
 border-style:solid;
 padding-left:14px;
 padding-right:14px;
 padding-top:14px;
 padding-bottom:14px;
 border-top-left-radius:15px;
 border-top-right-radius:15px;
 border-bottom-left-radius:15px;
 border-bottom-right-radius:15px;
 position:relative;
 top:-82px;
}

/* Footer bottom */
.footer .footer-bottom{
 border-style:none;
}

/* Image */
.footer-center .footer-platforms img{
 width:74px;
}

/* Footer brand text */
.footer-brand-text {
    font-family: var(--font-calsans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-top: 10px;
    word-spacing: 0px;
    letter-spacing: 3.4px;
}

/* ===== PRICING PAGE STYLES ===== */

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

/* Pricing Pills */
.pricing-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid #E5E7EB;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.pill-icon {
    font-size: 16px;
    font-weight: bold;
}

.pill-text {
    font-size: 14px;
    font-weight: 500;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Card Header */
.card-header {
    margin-bottom: 20px;
}

.card-plan {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.pro-badge {
    background: var(--primary-blue);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-left: 10px;
}

/* Card Pricing */
.card-pricing {
    margin-bottom: 30px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-main {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 5px;
}

.price-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.price-after {
    font-weight: 600;
    color: var(--text-dark);
}

/* Card Features */
.card-features {
    margin-bottom: 30px;
}

.features-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.features-list i {
    color: var(--primary-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Card Button */
.card-button {
    width: 100%;
    padding: 15px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.card-button:hover {
    background: var(--primary-blue);
}

.featured .card-button {
    background: var(--primary-blue);
}

.featured .card-button:hover {
    background: var(--text-dark);
}

/* Card Note */
.card-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #87CEEB 0%, #6BB6FF 100%);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 400;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos para elements details/summary del FAQ */
.faq-container details {
    margin-bottom: 12px;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-container details[open] {
    margin-bottom: 15px;
}

.faq-container summary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 18px 25px;
    color: #2D3748;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-container summary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-container details[open] summary {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px 25px 0 0;
    border-bottom: none;
}

.faq-container summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D3748;
    transition: transform 0.3s ease;
    margin-left: 15px;
    opacity: 0.7;
}

.faq-container details[open] summary::after {
    transform: rotate(45deg);
    content: '+';
}

.faq-container summary::-webkit-details-marker {
    display: none;
}

.faq-container .faq-answer {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 20px 20px;
    padding: 20px 25px 22px 25px;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-top: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
}

.faq-item {
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 16px 25px;
    color: #2D3748;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-question.active {
    background: rgba(255, 255, 255, 0.9);
}

.faq-question i {
    color: #2D3748;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
    opacity: 0.7;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 20px 20px;
    padding: 18px 25px;
    margin-top: -5px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-top: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* FAQ CTA */
.faq-cta-container {
    text-align: center;
    margin-top: 35px;
}

.faq-cta-button {
    background: rgba(255, 255, 255, 0.85);
    color: #4A90E2;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 35px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.faq-cta-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Active navigation link */
.nav a.active {
    color: var(--primary-blue);
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .pricing-pills {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== FOOTER XPERTIA (para página precios) ===== */
.footer-xpertia {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 40px 0;
    margin-top: 80px;
}

.footer-xpertia .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-xpertia .footer-logo-section {
    text-align: center;
}

.footer-xpertia .footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-xpertia .footer-brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-xpertia .footer-sistema {
    text-align: center;
}

.footer-xpertia .footer-sistema-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-xpertia .footer-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-xpertia .footer-platform-icon {
    width: 60px;
    height: 60px;
}

.footer-xpertia .footer-col {
    text-align: center;
}

.footer-xpertia .footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-xpertia .footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-xpertia .footer-col li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
}

.footer-xpertia .footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 30px;
}

.footer-xpertia .footer-motores-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.4;
}

.footer-xpertia .footer-motores-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.footer-xpertia .footer-motor-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-xpertia .footer-motor-icon:hover {
    transform: scale(1.1);
}

/* Mobile responsive para footer-xpertia */
@media (max-width: 768px) {
    .footer-xpertia .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-xpertia {
        padding: 40px 0 30px 0;
        margin-top: 40px;
    }
    
    .footer-xpertia .footer-platforms {
        gap: 15px;
    }
    
    .footer-xpertia .footer-platform-icon {
        width: 50px;
        height: 50px;
    }
    
    .footer-xpertia .footer-motores-icons {
        gap: 10px;
        padding: 12px;
    }
    
    .footer-xpertia .footer-motor-icon {
        width: 35px;
        height: 35px;
    }
}

/* ===== ESTILOS PARA PÁGINA PRECIOS ===== */

/* Header específico para página precios - REMOVIDO PARA CONSISTENCIA */
/* 
.precios-page header {
    background-color: var(--dark-gray);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.precios-page header .logo img {
    height: 50px;
    object-fit: contain;
}

.precios-page header .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.precios-page header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.precios-page header nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.precios-page header nav a:hover,
.precios-page header nav a.active {
    color: var(--primary-blue);
}
*/

/* Skip link para accesibilidad */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Sección de precios */
.precios-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.precios-top-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill.pill--active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pill-icon {
    font-size: 1.2rem;
    font-weight: 700;
}

.precios-personalizacion {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.precios-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.precios-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.precios-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.precio-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.precio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.precio-card-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.precio-card-toplabel {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.precio-card-precio {
    margin-bottom: 15px;
}

.precio-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.precio-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.precio-card-subprice {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.4;
}

.subprice-amount {
    font-weight: 600;
    color: var(--text-dark);
}

.precio-card-list-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.precio-card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.precio-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.precio-card-list li:before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.precio-card-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.precio-card-button {
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.precio-card-button.primary {
    background: var(--primary-blue);
    color: white;
}

.precio-card-button:hover {
    background: var(--primary-blue);
    color: white;
}

.precio-card-nota {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* FAQ CTA específico para precios */
.faq-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.faq-cta:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive para página precios - REMOVIDO PARA CONSISTENCIA */
/*
@media (max-width: 768px) {
    .precios-page header {
        padding: 15px 20px;
    }
    
    .precios-page header .nav-toggle {
        display: block;
    }
    
    .precios-page header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-gray);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .precios-page header nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
}
*/

@media (max-width: 768px) {
    
    /* Pricing Section Mobile */
    .precios-section {
        padding: 40px 0;
    }
    
    .precios-top-pills {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .pill {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .precios-personalizacion {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .precios-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .precios-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .precios-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .precio-card {
        padding: 25px 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .precio-card-header {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .precio-card-precio {
        margin-bottom: 15px;
    }
    
    .precio-amount {
        font-size: 2.2rem;
    }
    
    .precio-unit {
        font-size: 1rem;
    }
    
    .precio-card-subprice {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .precio-card-list {
        margin-bottom: 25px;
    }
    
    .precio-card-list li {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .precio-card-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .precio-card-buttons .cta-button,
    .precio-card-buttons .secondary-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* FAQ Mobile Improvements */
    .faq-section {
        padding: 50px 0 40px;
    }
    
    .faq-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .faq-container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .faq-container details {
        margin-bottom: 15px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .faq-container summary {
        padding: 18px 20px;
        font-size: 1rem;
        line-height: 1.3;
        border-radius: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .faq-container summary::-webkit-details-marker {
        display: none;
    }
    
    .faq-container summary::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary-blue);
        transition: transform 0.3s ease;
    }
    
    .faq-container details[open] summary {
        border-radius: 15px 15px 0 0;
        background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
        color: white;
    }
    
    .faq-container details[open] summary::after {
        content: '×';
        transform: translateY(-50%) rotate(45deg);
        color: white;
    }
    
    .faq-container .faq-answer {
        padding: 20px;
        border-radius: 0 0 15px 15px;
        font-size: 0.95rem;
        line-height: 1.5;
        background: white;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.3s ease;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===== ADDITIONAL RESPONSIVE BREAKPOINTS ===== */

/* Extra Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    /* Header Extra Small */
    .header-container {
        padding: 0 10px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    /* Hero Extra Small */
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-brand {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .hero-highlight {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .cta-button, .secondary-button {
        padding: 12px 16px;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    /* Pricing Extra Small */
    .precios-title {
        font-size: 1.5rem;
    }
    
    .precio-amount {
        font-size: 2rem;
    }
    
    .precio-card {
        padding: 20px 15px;
    }
    
    /* FAQ Extra Small */
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-container summary {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .faq-container .faq-answer {
        padding: 18px;
        font-size: 0.9rem;
    }
    
    /* Footer Extra Small */
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .engine {
        width: 40px;
        height: 40px;
    }
}

/* Tablet Styles (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-brand {
        font-size: 3rem;
    }
    
    .hero-highlight {
        font-size: 4.5rem;
    }
    
    .precios-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .funcionamiento-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .infinity-bottom-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Large Desktop Styles (1200px+) */
@media (min-width: 1201px) {
    .hero-container {
        max-width: 1400px;
    }
    
    .hero-brand {
        font-size: 4rem;
    }
    
    .hero-highlight {
        font-size: 5.5rem;
    }
    
    .precios-cards {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .funcionamiento-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ===== ULTRA MODERN CHATBOT STYLES ===== */

/* Chatbot Toggle Button - Xpertia Style */
.chatbot-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 50%, var(--dark-blue) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(91, 165, 216, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    overflow: visible;
    /* Asegurar que nunca se salga del viewport */
    min-width: 65px;
    min-height: 65px;
    box-sizing: border-box;
}

/* Asegurar que el botón siempre esté visible */
@media (max-width: 320px) {
    .chatbot-toggle {
        right: 10px !important;
        bottom: 10px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .chatbot-logo {
        width: 24px !important;
        height: 24px !important;
    }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(91, 165, 216, 0.6);
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue), var(--dark-blue));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chatbot-toggle:hover::before {
    opacity: 0.3;
    animation: rotate 3s linear infinite;
}

.chatbot-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.chatbot-icon {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.chatbot-toggle.active .chatbot-icon {
    transform: rotate(45deg);
}

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 105px;
    right: 25px;
    width: 380px;
    height: 500px;
    max-height: calc(100vh - 125px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(100%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chatbot-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Chatbot Header - Xpertia Style */
.chatbot-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* No se comprime */
    min-height: 90px; /* Altura fija */
    border-radius: 24px 24px 0 0;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.chatbot-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 16px rgba(91, 165, 216, 0.3);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
    position: relative;
}

.chatbot-avatar-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.chatbot-info h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-arboria-bold);
}

.chatbot-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 2px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Chat Messages Area */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
    min-height: 0; /* Permite que flex funcione correctamente */
    max-height: calc(100% - 160px); /* Reserva espacio para header e input */
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 2px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

/* Message Bubbles */
.message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideIn 0.4s ease-out;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.message.bot .message-avatar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.message.user .message-avatar {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
}

.message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
}

.message.bot .message-content {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(91, 165, 216, 0.1);
    font-family: var(--font-myriad);
}

.message.user .message-content {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(91, 165, 216, 0.3);
    font-family: var(--font-myriad);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 0.3s ease-in-out forwards;
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.quick-action {
    background: rgba(91, 165, 216, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(91, 165, 216, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-myriad);
}

.quick-action:hover {
    background: rgba(91, 165, 216, 0.2);
    transform: translateY(-1px);
}

/* Input Area */
.chatbot-input-area {
    padding: 20px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0; /* No se comprime */
    min-height: 84px; /* Altura mínima garantizada */
    border-radius: 0 0 24px 24px;
}

.chatbot-input {
    flex: 1;
    border: 2px solid rgba(91, 165, 216, 0.1);
    border-radius: 20px;
    padding: 12px 16px;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    font-family: var(--font-myriad);
}

.chatbot-input:focus {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(91, 165, 216, 0.1);
}

.chatbot-input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(91, 165, 216, 0.3);
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 165, 216, 0.4);
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 80px;
        right: 15px;
        left: 15px;
        width: auto;
        height: 450px;
        max-height: calc(100vh - 100px);
        border-radius: 20px;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
        min-width: 58px;
        min-height: 58px;
        box-shadow: 0 4px 20px rgba(91, 165, 216, 0.4);
    }
    
    .chatbot-logo {
        width: 28px;
        height: 28px;
    }
    
    .chatbot-header {
        padding: 15px 20px;
        min-height: 75px;
        border-radius: 20px 20px 0 0;
    }
    
    .chatbot-input-area {
        padding: 15px;
        min-height: 70px;
        border-radius: 0 0 20px 20px;
    }
    
    .chatbot-messages {
        padding: 15px;
        max-height: calc(100% - 145px);
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .chatbot-container {
        bottom: 75px;
        right: 10px;
        left: 10px;
        height: 400px;
        max-height: calc(100vh - 95px);
    }
    
    .chatbot-toggle {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
        box-shadow: 0 4px 18px rgba(91, 165, 216, 0.4);
    }
    
    .chatbot-logo {
        width: 26px;
        height: 26px;
    }
}