/* Sections General */
.features-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 100px;
    /* Elevación del contenido en escritorio */
    background-color: #0f172a;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.8));
    z-index: 1;
}

.hero-container-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.text-gradient-gold-hero {
    background: var(--gradient-metal-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-typing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    min-height: 1.2em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.typing-cursor {
    color: #ffd700;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px; /* Reducido de 40px */
    max-width: 600px;
    line-height: 1.6;
}

/* Independent actions row — spans both grid columns on desktop */
.hero-actions-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    grid-column: 1 / -1;
    padding-top: 0;
}

/* Row for centered tagline - spans across both columns */
.hero-tagline-row {
    grid-column: 1 / -1;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 3;
    position: relative;
}

.hero-tagline-centered {
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    color: #ffffff;
    font-weight: 700;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-catalog-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.catalog-carousel-5x4 {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    max-width: min(500px, 100%);
    overflow: hidden;
}

@media (min-width: 993px) {
    .catalog-carousel-5x4 {
        max-width: 900px;
    }

    .hero-title {
        font-size: 55px;
    }
}

.catalog-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.catalog-img.active {
    opacity: 1;
    transform: translateX(0);
}

.catalog-img.exit {
    opacity: 0;
    transform: translateX(-100%);
}

@media (max-width: 992px) {
    .hero-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .hero-text-col {
        align-items: center;
        text-align: center;
    }

    .hero-catalog-col {
        margin-top: 0px;
        padding: 0;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        margin-bottom: 5px;
    }

    .hero-actions-row {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0px;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
        word-break: break-word;
    }

    .hero-typing-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        word-break: break-word;
    }
}

.post-hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .post-hero-title {
        font-size: 20px !important;
    }
}

/* Tablet refinements */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-intro .intro-title {
        font-size: 1.7rem !important;
        /* Approx 27px (-5px from desktop) */
    }
}

/* Base alignment for the promise section */
.features-intro {
    text-align: left;
    background: linear-gradient(180deg, rgba(0, 220, 255, 0.40) 0%, rgba(0, 120, 180, 0.10) 60%, rgba(0, 20, 40, 0.0) 100%) !important;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(0, 220, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 40px 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.intro-text-wrapper {
    max-width: 55%;
    z-index: 2;
    text-align: left;
}

.intro-character {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 320px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(0, 220, 255, 0.2));
    pointer-events: none;
}

.features-intro .intro-title,
.features-intro .intro-text {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left !important;
}

.features-intro .intro-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.features-intro .intro-text {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .features-intro {
        flex-direction: column;
        padding: 40px 40px 240px 40px;
        min-height: auto;
    }

    .intro-text-wrapper {
        max-width: 100%;
        text-align: left;
    }

    .intro-character {
        width: 280px;
        right: 20px;
        bottom: 0;
        transform: none;
    }
}

@media (max-width: 600px) {
    .features-intro {
        padding: 30px 20px 200px 20px;
    }

    .intro-character {
        width: 180px;
        right: 10px;
        bottom: 0;
    }

    .features-intro .intro-title {
        font-size: 1.3rem;
    }

    .features-intro .intro-text {
        font-size: 0.9rem;
    }
}

/* Special styling for the main features title */
#features-main-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    #features-main-title {
        font-size: 28px;
    }
}

/* Automatic Brand Banner Section - RESTORED */
.text-scrolly-section {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 120px;
    height: 80vh;
    position: relative;
    z-index: 2;
    /* Mantener por encima de las StickyCards pinneadas */
    background-color: #01040f;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 4, 15, 0.65);
    z-index: 2;
}

.banner-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.banner-item {
    opacity: 1;
}

.h1-banner {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Increased size */
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    /* Tighter line height to connect GNIA with text */
}

.gnia-gold-title {
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    display: block;
    margin-bottom: 5px;
    font-size: 1.4em;
    /* Make GNIA significantly larger than the rest */
}

.banner-white-text {
    color: #ffffff;
    display: block;
    font-size: 0.7em;
    /* Smaller relative to GNIA to fit in one line */
    letter-spacing: 1px;
    white-space: nowrap;
    /* Prevent wrapping */
}

@media (max-width: 992px) {
    .banner-white-text {
        white-space: normal;
        /* Allow wrap on tablet/mobile but increase container width */
        font-size: 0.8em;
    }

    .banner-content-wrapper {
        max-width: 90%;
    }
}

.h2-banner {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.body-banner {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.italic-banner {
    color: #FFD700;
    font-style: italic;
    font-size: 1.1rem;
}

/* Animation "Conformando la frase poco a poco" */
.h1-banner,
.h2-banner,
.body-banner,
.italic-banner {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpSequence 10s infinite;
}

.h1-banner {
    animation-delay: 0.5s;
}

.h2-banner {
    animation-delay: 2.0s;
}

.body-banner {
    animation-delay: 3.5s;
}

.italic-banner {
    animation-delay: 5.0s;
}

@keyframes fadeInUpSequence {

    0%,
    5% {
        opacity: 0;
        transform: translateY(20px);
    }

    15%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }

    90%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .text-scrolly-section {
        height: 60vh;
        margin-top: 60px;
    }
}

/* Lightbox Modal */
.image-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 4, 15, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-modal.active .modal-content-img {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-gold);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-video-wrapper {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 1.91 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #000;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.video-modal.active .modal-content-video-wrapper {
    transform: scale(1);
}

.modal-video-player, .modal-supademo-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.modal-supademo-player {
    aspect-ratio: 16 / 9;
    min-height: 500px;
}

.modal-close-video {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close-video:hover {
    color: #FFD700;
    transform: rotate(90deg);
}

/* Interactive Tag Styling */
.module-tag[data-video] {
    cursor: pointer;
    position: relative;
    padding-left: 12px;
}

.module-tag[data-video]:hover {
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

/* Feature Card Neon Glow Effects */
.tab-section-title {
    margin: 0 auto 60px auto !important;
    font-size: clamp(1.8rem, 5vw, 3.2rem) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    max-width: 90%;
    line-height: 1.2;
}

.tabs-buttons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
    /* Reduced from 30px for tighter layout */
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    width: 250px;
    height: 100px;
    position: relative;
    overflow: hidden;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.tab-btn-chef.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(30, 58, 138, 0.2) 100%) !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
}

.tab-btn-small.active {
    background: linear-gradient(135deg, #422006 0%, #b45309 20%, #fcd34d 50%, #b45309 80%, #2a1801 100%) !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3) !important;
}

.tab-btn-large.active {
    background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 20%, #ef4444 50%, #7f1d1d 80%, #450a0a 100%) !important;
    border-color: #ef4444 !important;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3) !important;
}

.tab-btn span {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    width: 100%;
}

/* Responsive Switching (Tablet/Mobile) */
@media (max-width: 1024px) {
    .tabs-buttons-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
    }

    .tab-btn {
        width: 100%;
        max-width: 380px;
        min-width: unset;
        padding: 14px 20px;
        border-radius: 12px;
        font-size: 0.85rem !important;
    }

    .mobile-tabs-dropdown {
        display: none !important;
    }
}

.mobile-tabs-dropdown {
    display: none;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    z-index: 50;
}

.mobile-tabs-toggle {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 18px 25px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-tabs-dropdown.open .mobile-tabs-menu {
    display: flex;
    animation: fadeInMenu 0.3s ease;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-tabs-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    margin-top: 15px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

.mobile-tabs-menu.active {
    display: flex;
}

.mobile-tabs-item {
    padding: 15px 20px;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-tabs-item:hover,
.mobile-tabs-item.active {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

/* Tab Content */
.tabs-content-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 1160px;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

/* Glass Neon border effects */
.tabs-content-wrapper.has-neon-pro {
    border: 1px solid rgba(0, 210, 255, 0.3);
    box-shadow:
        0 0 20px rgba(0, 210, 255, 0.1),
        inset 0 0 15px rgba(0, 210, 255, 0.05);
}

.tabs-content-wrapper.has-neon-gold {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 0 15px rgba(255, 215, 0, 0.05);
}

.tabs-content-wrapper.has-neon-elite {
    border: 1px solid rgba(227, 30, 36, 0.3);
    box-shadow:
        0 0 20px rgba(227, 30, 36, 0.1),
        inset 0 0 15px rgba(227, 30, 36, 0.05);
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    animation: fadeInTab 0.6s ease forwards;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-module-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.tab-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Profile Plan Actions */
.tab-plans-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn-profile-plan {
    padding: 10px 20px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-profile-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-profile-plan.btn-flash {
    background: var(--gradient-metal-emerald);
    color: #022c22;
}

.btn-profile-plan.btn-flash:hover {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-profile-plan.btn-pro {
    background: var(--gradient-metal-blue);
    color: #fff;
}

.btn-profile-plan.btn-pro:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-profile-plan.btn-gold {
    background: var(--gradient-metal-gold);
    color: #422006;
}

.btn-profile-plan.btn-gold:hover {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.btn-profile-plan.btn-elite {
    background: var(--gradient-metal-ruby);
    color: #fff;
}

.btn-profile-plan.btn-elite:hover {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.btn-profile-plan.btn-enterprise {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
    color: #fff;
}

.btn-profile-plan.btn-enterprise:hover {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
    .tab-plans-actions {
        justify-content: center;
    }
}

.tab-desc {
    color: #a0a0b0;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.tab-modules-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.module-tag {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.module-tag:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.4);
}

.tab-image-col {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.tab-img.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .tabs-buttons-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        /* Show buttons vertically on mobile */
    }

    .mobile-tabs-dropdown {
        display: none !important;
        /* Hide dropdown */
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tab-image-col {
        height: 300px;
    }

    .tabs-content-wrapper {
        padding: 25px;
    }

    .tab-module-title {
        font-size: 1.8rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 50px 0 100px;
    position: relative;
    background: transparent;
    /* Changed: Using page base background */
}

/* FAQ Tabbed Layout */
.faq-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.faq-tab-btn:hover {
    background: rgba(0, 220, 255, 0.05);
    border-color: rgba(0, 220, 255, 0.3);
    transform: translateY(-2px);
}

.faq-tab-btn.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.faq-panes-wrapper {
    max-width: 900px;
    margin: 0 auto;
    min-height: 400px;
}

.faq-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.faq-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Accordion Adjustments */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item.glass-card {
    border-radius: 20px;
    padding: 5px 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(180deg, rgba(0, 220, 255, 0.05) 0%, rgba(15, 23, 42, 0.3) 100%);
}

.faq-item.glass-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(0, 220, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    font-family: var(--font-heading);
}

.faq-question span {
    font-size: 0.95rem;
    /* Smaller as requested */
    color: var(--color-text-primary);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
    padding-right: 15px;
}

.faq-icon {
    color: #00DCFF;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.5) !important;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(15, 23, 42, 0.4) 100%) !important;
}

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Mobile Dropdown for FAQ */
.faq-mobile-dropdown {
    display: none;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .faq-tabs-container {
        display: none;
    }

    .faq-mobile-dropdown {
        display: block;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .faq-tab-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .faq-grid-container {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-block-title {
        min-height: auto;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question span {
        font-size: 1rem;
    }
}



.faq-item.glass-card {
    border-radius: 20px;
    margin-bottom: 0;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(180deg, rgba(0, 220, 255, 0.08) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.faq-item.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(0, 220, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 220, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question span {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    font-weight: 500;
    padding-right: 30px;
    line-height: 1.5;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.faq-icon {
    color: #00DCFF;
    font-size: 1.4rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.6) !important;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.15) 0%, rgba(15, 23, 42, 0.6) 100%) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.faq-item.active .faq-question span {
    color: #FFD700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    font-family: var(--font-main);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

.faq-question:hover .faq-icon {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-question span {
        font-size: 1.1rem;
        padding-right: 15px;
    }
}

/* Interface Themes Section */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 65px;
    /* Reduced by 15px from 80px */
}

/* Specific section title adjustment for themes */
.themes-section-title {
    font-size: calc(var(--font-size-h3, 2.5rem) + 8px) !important;
    margin-top: 40px;
    /* Extra space from CTA */
}

.theme-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -5px;
    /* Reduced by 15px from 10px */
}

.theme-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    /* Clear default margins */
}

.theme-img-wrapper {
    width: 100%;
    position: relative;
    overflow: visible;
    /* Images should be floating, no frames */
}

.theme-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.theme-col:hover .theme-img {
    transform: translateY(-10px) scale(1.02);
}

/* Glow Effects */
.theme-natural:hover .theme-img {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.6));
    /* Emerald Flash */
}

.theme-claro:hover .theme-img {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
    /* White */
}

.theme-oscuro:hover .theme-img {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.6));
    /* Blue Pro */
}

@media (max-width: 992px) {
    .themes-grid {
        display: flex;
        /* Switch to flex for easier horizontal scroll */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-top: 40px;
        padding: 20px 10px 40px 10px;
        /* Padding for glow and shadows */
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar for IE/Edge */
        cursor: grab;
    }

    .themes-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome/Safari */
    }

    .theme-col {
        flex: 0 0 85%;
        /* Shows most of one card and a bit of the next */
        scroll-snap-align: center;
        gap: 0px;
    }

    .theme-title {
        font-size: 1.2rem;
    }

    .themes-section-title {
        font-size: 2rem !important;
        margin-top: 25px;
    }

    .theme-img-wrapper {
        padding: 10px;
        /* Space for the glow effect */
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 20vh !important;
        height: auto !important;
    }
}

