/* ==========================================================================
   TOQUEMONOS PURE - FRONT PAGE V2 STYLES
   Boutique de Bienestar Íntimo & Selva Sensorial (SmileMakers & Lovense Style)
   ========================================================================== */

/* --- 1. MARQUESINA TICKER SUB-HERO (CALFORD STYLE INFINITE LOOP) --- */
.tqm-marquee-ticker-wrap {
    background: #FFF9FA;
    border-top: 1px solid rgba(202, 118, 126, 0.15);
    border-bottom: 1px solid rgba(202, 118, 126, 0.15);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    z-index: 10;
    user-select: none;
}

.tqm-marquee-track {
    display: flex;
    width: max-content;
    animation: tqmMarqueeLoop 35s linear infinite;
}

.tqm-marquee-track:hover {
    animation-play-state: paused;
}

.tqm-marquee-group {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
}

.tqm-marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #2D2D2D;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.tqm-marquee-item .tqm-m-icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tqm-marquee-item strong {
    color: #CA767E;
    font-weight: 700;
}

.tqm-marquee-item .tqm-m-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #CA767E;
    opacity: 0.4;
    margin-left: 20px;
}

@keyframes tqmMarqueeLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 2. LAS 4 PUERTAS DE CURIOSIDAD (PLATANOMELÓN 4-CARDS STYLE) --- */
.tqm-curiosity-section {
    padding: 70px 0 40px;
}

.tqm-curiosity-header {
    text-align: center;
    margin-bottom: 45px;
}

.tqm-curiosity-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111111;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.tqm-curiosity-header p {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.tqm-curiosity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tqm-curiosity-card {
    position: relative;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    text-decoration: none;
    color: #FFFFFF;
}

.tqm-curiosity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.tqm-curiosity-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.tqm-curiosity-card:hover .tqm-curiosity-bg {
    transform: scale(1.06);
}

.tqm-curiosity-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.tqm-curiosity-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tqm-curiosity-title {
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.tqm-curiosity-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.tqm-curiosity-btn {
    display: inline-block;
    background: #FFFFFF;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tqm-curiosity-card:hover .tqm-curiosity-btn {
    background: #CA767E;
    color: #FFFFFF;
    transform: scale(1.04);
}

/* --- 3. JUGUETES INSIGNIA (LOVENSE FLAGSHIP STYLE CARDS) --- */
.tqm-flagships-section {
    padding: 60px 0 70px;
    background: #FDF6F7;
}

.tqm-flagships-header {
    text-align: center;
    margin-bottom: 45px;
}

.tqm-badge-pill {
    display: inline-block;
    background: rgba(202, 118, 126, 0.12);
    color: #CA767E;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.tqm-flagships-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111111;
    letter-spacing: -1px;
}

.tqm-flagships-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tqm-flagship-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(202, 118, 126, 0.12);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tqm-flagship-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(202, 118, 126, 0.12);
}

.tqm-flagship-badge-discount {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #D88189;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 5;
}

.tqm-flagship-img-box {
    width: 100%;
    height: 230px;
    background: #FAF3F4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
}

.tqm-flagship-img-box img {
    max-height: 190px;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tqm-flagship-card:hover .tqm-flagship-img-box img {
    transform: scale(1.08);
}

.tqm-flagship-info {
    text-align: left;
    margin-bottom: 18px;
}

.tqm-flagship-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
    line-height: 1.3;
}

.tqm-flagship-info p {
    font-size: 12px;
    color: #777777;
    line-height: 1.4;
    margin-bottom: 10px;
}

.tqm-flagship-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tqm-flagship-price-current {
    font-size: 19px;
    font-weight: 800;
    color: #111111;
}

.tqm-flagship-price-regular {
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
}

.tqm-flagship-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.tqm-btn-outline {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border: 1px solid #111111;
    border-radius: 25px;
    color: #111111;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.tqm-btn-outline:hover {
    background: #111111;
    color: #FFFFFF;
}

.tqm-btn-solid {
    flex: 1.2;
    text-align: center;
    padding: 10px 14px;
    background: #CA767E;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tqm-btn-solid:hover {
    background: #B5626A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(202, 118, 126, 0.35);
}

/* --- 4. RECOMENDADOR SENSORIAL EMBEBIDO (PLATANOMELÓN 3-STEP QUIZ) --- */
.tqm-quiz-embedded-section {
    padding: 70px 0;
    background: #FFFFFF;
}

.tqm-quiz-box {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFDFD;
    border: 1px solid rgba(202, 118, 126, 0.2);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    position: relative;
    text-align: center;
}

.tqm-quiz-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.tqm-quiz-step-dot {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: #E5E5E5;
    transition: background 0.3s ease;
}

.tqm-quiz-step-dot.active {
    background: #CA767E;
}

.tqm-quiz-question-title {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tqm-quiz-question-sub {
    font-size: 15px;
    color: #666666;
    margin-bottom: 35px;
}

.tqm-quiz-step-view {
    display: none;
}

.tqm-quiz-step-view.active {
    display: block;
    animation: tqmFadeIn 0.35s ease;
}

.tqm-quiz-options-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tqm-quiz-choice-card {
    background: #FFFFFF;
    border: 2px solid #EFEFEF;
    border-radius: 20px;
    padding: 24px 20px;
    width: 210px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tqm-quiz-choice-card:hover {
    border-color: #CA767E;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(202, 118, 126, 0.15);
}

.tqm-quiz-circle-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #FFF2D6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 32px;
    transition: transform 0.25s ease;
}

.tqm-quiz-choice-card:hover .tqm-quiz-circle-icon {
    transform: scale(1.1);
}

.tqm-quiz-choice-title {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.tqm-quiz-choice-desc {
    font-size: 12px;
    color: #888888;
    line-height: 1.3;
}

.tqm-quiz-back-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #888888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s ease;
    margin-top: 10px;
}

.tqm-quiz-back-nav:hover {
    color: #CA767E;
}

/* Resultados del Quiz */
.tqm-quiz-result-wrap {
    display: none;
    text-align: center;
}

.tqm-quiz-result-wrap.active {
    display: block;
    animation: tqmFadeIn 0.4s ease;
}

.tqm-quiz-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* --- 5. HOY ESTIMULAMOS EN LA JUNGLA (JUSTINE SEX SHOP STYLE) --- */
.tqm-body-zones-section {
    padding: 70px 0;
    background: #FAF6F7;
}

.tqm-body-zones-header {
    text-align: center;
    margin-bottom: 45px;
}

.tqm-body-zones-header .tqm-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #56746F;
    margin-bottom: 8px;
    display: block;
}

.tqm-body-zones-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111111;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.tqm-body-zones-header p {
    font-size: 15px;
    color: #666666;
}

.tqm-body-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tqm-zone-card {
    border-radius: 20px;
    padding: 28px 24px;
    height: 190px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.tqm-zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.tqm-zone-bg-lineart {
    position: absolute;
    right: -10px;
    bottom: -15px;
    width: 140px;
    height: 140px;
    opacity: 0.28;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.tqm-zone-card:hover .tqm-zone-bg-lineart {
    transform: scale(1.12) rotate(3deg);
    opacity: 0.38;
}

.tqm-zone-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.tqm-zone-cta {
    font-size: 12px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    width: fit-content;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.tqm-zone-card:hover .tqm-zone-cta {
    border-color: #FFFFFF;
}

.tqm-zone-vulva  { background: linear-gradient(135deg, #E08A8A 0%, #CA767E 100%); }
.tqm-zone-pene   { background: linear-gradient(135deg, #56746F 0%, #3B5450 100%); }
.tqm-zone-pechos { background: linear-gradient(135deg, #E29471 0%, #C47653 100%); }
.tqm-zone-anal   { background: linear-gradient(135deg, #84A88B 0%, #63856A 100%); }

/* --- 6. RUTAS DE LA SELVA (PLATANOMELÓN 3x2 EDITORIAL GRID) --- */
.tqm-editorial-section {
    padding: 70px 0;
    background: #FFFFFF;
}

.tqm-editorial-header {
    text-align: center;
    margin-bottom: 45px;
}

.tqm-editorial-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111111;
    letter-spacing: -1px;
}

.tqm-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tqm-editorial-card {
    position: relative;
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tqm-editorial-card:hover {
    transform: translateY(-6px);
}

.tqm-editorial-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.tqm-editorial-card:hover .tqm-editorial-bg {
    transform: scale(1.06);
}

.tqm-editorial-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(17, 17, 17, 0.75) 100%);
    z-index: 2;
}

.tqm-editorial-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tqm-editorial-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.tqm-editorial-pill {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- 7. SETS & BUNDLES CURADOS (HEIMDALL INTELLIGENT BUNDLES) --- */
.tqm-bundles-curated-section {
    padding: 70px 0;
    background: #FFF9FA;
    border-top: 1px solid rgba(202, 118, 126, 0.12);
    border-bottom: 1px solid rgba(202, 118, 126, 0.12);
}

.tqm-bundles-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.tqm-bundle-box {
    background: #FFFFFF;
    border: 1px solid rgba(202, 118, 126, 0.2);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(202, 118, 126, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.tqm-bundle-box:hover {
    transform: translateY(-5px);
}

.tqm-bundle-badge-top {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #CA767E;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.tqm-bundle-duo-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 180px;
    margin: 20px 0;
}

.tqm-bundle-duo-images .tqm-duo-img {
    width: 48%;
    height: 100%;
    background: #FAF5F6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.tqm-bundle-duo-images .tqm-duo-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.tqm-bundle-plus-sign {
    font-size: 20px;
    color: #CA767E;
    font-weight: bold;
}

.tqm-bundle-title {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
}

.tqm-bundle-items-text {
    font-size: 12px;
    color: #777777;
    margin-bottom: 16px;
    min-height: 34px;
}

.tqm-bundle-pricing {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px dashed rgba(202, 118, 126, 0.25);
}

.tqm-bundle-price-offer {
    font-size: 22px;
    font-weight: 800;
    color: #111111;
}

.tqm-bundle-price-regular {
    font-size: 14px;
    color: #999999;
    text-decoration: line-through;
}

.tqm-bundle-savings {
    font-size: 12px;
    color: #10B981;
    font-weight: 700;
}

.tqm-bundle-btn-atc {
    width: 100%;
    padding: 12px;
    background: #CA767E;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tqm-bundle-btn-atc:hover {
    background: #B5626A;
    box-shadow: 0 4px 15px rgba(202, 118, 126, 0.35);
}

/* --- 8. FORMAS DE EXPLORAR PLACER (LOVENSE TABS STYLE) --- */
.tqm-connected-section {
    padding: 70px 0;
    background: #FFFFFF;
}

.tqm-connected-tabs-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.tqm-connected-pill {
    padding: 10px 22px;
    border-radius: 30px;
    background: #F4F4F4;
    color: #444444;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tqm-connected-pill.active {
    background: #CA767E;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(202, 118, 126, 0.25);
}

.tqm-connected-panel {
    display: none;
}

.tqm-connected-panel.active {
    display: block;
    animation: tqmFadeIn 0.35s ease;
}

.tqm-connected-hero-banner {
    position: relative;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.tqm-connected-banner-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.tqm-connected-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.tqm-connected-banner-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.tqm-connected-banner-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.tqm-connected-banner-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* --- 9. PRUEBA SOCIAL & SEXOLOGÍA (PLATANOMELÓN TRUST STYLE) --- */
.tqm-social-proof-section {
    padding: 70px 0;
    background: #FAF6F7;
}

.tqm-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.tqm-review-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(202, 118, 126, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tqm-review-stars {
    color: #F5A623;
    font-size: 16px;
    margin-bottom: 12px;
}

.tqm-review-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 18px;
    font-style: italic;
}

.tqm-review-author {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tqm-verified-check {
    color: #10B981;
    font-size: 14px;
}

.tqm-sexology-strip {
    margin-top: 45px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border: 1px solid rgba(202, 118, 126, 0.15);
}

.tqm-sexology-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tqm-sexology-item .s-icon {
    font-size: 28px;
}

.tqm-sexology-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 4px;
}

.tqm-sexology-item p {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* --- 10. JUNGLA CLUB LEAD FORM --- */
.tqm-club-strip {
    padding: 60px 0;
    background: #FFFFFF;
}

.tqm-club-card {
    background: linear-gradient(135deg, #FDF6F7 0%, #FAF0F1 100%);
    border: 1px solid rgba(202, 118, 126, 0.25);
    border-radius: 28px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tqm-club-text {
    max-width: 550px;
}

.tqm-club-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
}

.tqm-club-text p {
    font-size: 15px;
    color: #555555;
    line-height: 1.5;
}

.tqm-club-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 440px;
}

.tqm-club-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(202, 118, 126, 0.35);
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    background: #FFFFFF;
}

.tqm-club-input:focus {
    border-color: #CA767E;
}

.tqm-club-btn {
    padding: 14px 28px;
    background: #CA767E;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.tqm-club-btn:hover {
    background: #B5626A;
}

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

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .tqm-curiosity-grid { grid-template-columns: repeat(2, 1fr); }
    .tqm-flagships-grid { grid-template-columns: repeat(2, 1fr); }
    .tqm-body-zones-grid { grid-template-columns: repeat(2, 1fr); }
    .tqm-editorial-grid { grid-template-columns: repeat(2, 1fr); }
    .tqm-bundles-grid-row { grid-template-columns: repeat(2, 1fr); }
    .tqm-sexology-strip { grid-template-columns: 1fr; }
    .tqm-club-card { flex-direction: column; text-align: center; }
    .tqm-club-form { max-width: 100%; }
}

@media (max-width: 768px) {
    .tqm-curiosity-grid { grid-template-columns: 1fr; }
    .tqm-curiosity-card { height: 360px; }
    .tqm-flagships-grid { grid-template-columns: 1fr; }
    .tqm-body-zones-grid { grid-template-columns: 1fr; }
    .tqm-editorial-grid { grid-template-columns: 1fr; }
    .tqm-bundles-grid-row { grid-template-columns: 1fr; }
    .tqm-quiz-results-grid { grid-template-columns: 1fr; }
    .tqm-quiz-options-grid { flex-direction: column; align-items: center; }
    .tqm-quiz-choice-card { width: 100%; max-width: 320px; }
    .tqm-social-grid { grid-template-columns: 1fr; }
    .tqm-club-form { flex-direction: column; }
    .tqm-curiosity-header h2,
    .tqm-flagships-header h2,
    .tqm-body-zones-header h2,
    .tqm-editorial-header h2,
    .tqm-quiz-question-title {
        font-size: 28px;
    }
}
