/* ============================================
   MEDICINA & ESTÉTICA DISTRIBUIDORA
   Custom Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #95CFC6;
    --color-primary-light: #B8E0D8;
    --color-dark: #1a1a1a;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    --color-white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-amber: 'Cambria', serif;
    --font-amber-script: 'SignPainter', cursive;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
    font-family: 'Cambria';
    src: url('../tipografia/cambria.ttc') format('truetype-collection');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SignPainter';
    src: url('../tipografia/SignPainter HouseScript Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #95CFC6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition-smooth);
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Logo SVG Images */
.navbar-logo {
    height: 80px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

/* Logo Recreation */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-me {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.15em;
    position: relative;
    color: var(--color-dark);
}

.logo-amp {
    position: absolute;
    left: 42%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    color: var(--color-primary);
    font-size: 1em;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-medicina {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-dark);
    text-transform: uppercase;
}

.logo-distribuidora {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* Navigation Links */
.navbar-nav {
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-dark) !important;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary) !important;
}

/* Dropdown Menu Animations */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: dropdownSlide 0.3s ease-out;
    transform-origin: top center;
}

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

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

.dropdown-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-dark);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0.15rem 0.5rem;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-primary);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.dropdown-item:hover {
    background: var(--color-light-gray);
    color: var(--color-primary);
    padding-left: 1.75rem;
}

.dropdown-item:hover::before {
    height: 60%;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    display: block;
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition-smooth);
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff 0%, #95CFC6 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-curve {
    position: absolute;
    bottom: -76%;
    left: -22%;
    width: 66%;
    height: 120%;
    background: rgba(149, 207, 198, 0.15);
    border-radius: 50%;
    transform: rotate(120deg);
    clip-path: inset(0 50% 0 0);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--color-dark);
}

.hero-line-bold {
    font-weight: 700;
    margin-top: 0.2rem;
}

.hero-underline {
    width: 200px;
    height: 2px;
    background: var(--color-dark);
    margin-top: 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

/* ============================================
   INFO SECTION (Propósito / Misión / Visión / Portfolio)
   ============================================ */
.info-section {
    padding: 50px 0;
    background: var(--color-white);
}

.info-card {
    text-align: center;
}

.info-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.info-box {
    background: var(--color-dark);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-box p {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1875rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 80px 0;
    background: #dfdfdf;
}

.products-image {
    position: relative;
}

.products-image img {
    width: 100%;
    height: auto;
    display: block;
}

.products-content {
    text-align: left;
}

.products-title {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.btn-products {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    margin-left: 0;
}

.btn-products:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================
   MARCAS SECTION
   ============================================ */
.marcas-section {
    padding: 80px 0;
    background: var(--color-white);
    overflow: visible;
}

.marcas-fila {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.marcas-fila:last-child {
    margin-bottom: 0;
}

.marca-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    overflow: visible;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.marca-item:hover {
    transform: translateY(-10px);
}

.marca-item img {
    height: 80px;
    width: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0);
    transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.marca-item:hover img {
    transform: scale(1.15);
    filter: brightness(0);
}


/* ============================================
   AQUALIFT HERO
   ============================================ */
.aqualift-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.aqualift-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.aqualift-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 1;
}

.aqualift-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 6%;
}

.aqualift-hero-logo {
    width: 320px;
    max-width: 40vw;
    height: auto;
    display: block;
}

/* ============================================
   AQUALIFT - POR QUÉ SECTION
   ============================================ */
.aqualift-porque-section {
    overflow: hidden;
    background: #fff;
}

.aqualift-porque-section .row {
    min-height: 600px;
}

.aqualift-porque-left {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 5% 40px 6%;
}

.aqualift-porque-modelo {
    position: absolute;
    right: -2%;
    bottom: 0;
    height: 108%;
    width: auto;
    pointer-events: none;
    z-index: 1;
}

.aqualift-arcos-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.aqualift-porque-text {
    position: relative;
    z-index: 2;
}

.aqualift-porque-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.aqualift-title-line1 {
    display: block;
    margin-left: 0;
}

.aqualift-title-line2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 1.5rem;
}


.aqualift-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: inherit;
    letter-spacing: 0.02em;
}

.aqualift-brand-aqu {
    color: var(--color-primary);
}

.aqualift-brand-lift {
    color: #888;
}

.aqualift-porque-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #444;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 0;
}

.aqualift-porque-desc strong {
    color: var(--color-primary);
    font-weight: 600;
}


.aqualift-porque-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 5% 60px 5%;
    background: #fff;
}

.aqualift-tagline-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(4.8rem, 8vw, 8rem);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.aqualift-tagline-sans {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 0.02em;
    margin: 0;
    margin-left: 2rem;
    line-height: 1.2;
}

/* ============================================
   AQUALIFT - POR QUÉ UTILIZAR SECTION
   ============================================ */
.aqualift-utilizar-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.aqualift-utilizar-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    opacity: 1;
    filter: invert(1) contrast(0.35);
    z-index: 0;
}

.aqualift-utilizar-content {
    position: relative;
    z-index: 1;
}

.aqualift-utilizar-col {
    padding: 20px 40px;
}

.aqualift-utilizar-logo {
    height: 60px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.aqualift-utilizar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.76rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.aqualift-utilizar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aqualift-utilizar-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #444;
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: none;
}

.aqualift-utilizar-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1rem;
}

/* ============================================
   AQUALIFT - HILOS TENSORES SECTION
   ============================================ */
.aqualift-hilos-section {
    background: #fff;
    padding: 60px 0 40px;
}

.aqualift-hilos-header {
    margin-bottom: 40px;
}

.aqualift-hilos-title-script {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.aqualift-hilos-title-sans {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.76rem);
    font-weight: 300;
    color: #2c2c2c;
    margin: 0;
}

.aqualift-hilos-fotos {
    margin-bottom: 30px;
}

.aqualift-hilos-foto {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.aqualift-hilos-cols {
    margin-top: 10px;
}

.aqualift-hilos-group {
    padding: 0 10px;
}

.aqualift-hilos-group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    text-align: center;
    background: #e8e8e8;
    padding: 10px;
    margin-bottom: 10px;
}

.aqualift-hilos-subgroup {
    padding: 0 8px;
}

.aqualift-hilos-subgroup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    background: var(--color-primary);
    border: none;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.aqualift-chevron-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.aqualift-hilos-subgroup-title[aria-expanded="true"] .aqualift-chevron-icon {
    transform: rotate(180deg);
}

.aqualift-hilos-subgroup .collapse,
.aqualift-hilos-group>.collapse {
    background: #f4f4f4;
    border-radius: 0 0 8px 8px;
    padding: 16px;
}

.aqualift-hilos-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.aqualift-hilos-product-img {
    width: 90px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.aqualift-hilos-product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 6px 0;
}

.aqualift-hilos-product-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* ============================================
   AQUALIFT - VS COMPARATIVA SECTION
   ============================================ */
.aqualift-vs-section {
    padding: 60px 0;
    background: #fff;
}

.aqualift-vs-card {
    background: #afdad4;
    border-radius: 60px;
    padding: 50px 50px 40px;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.aqualift-vs-icon {
    position: absolute;
    top: -20px;
    left: -25px;
    width: 72px;
    height: 72px;
    background: #2d8080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #fff;
}

.aqualift-vs-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.44rem, 2.8vw, 2.24rem);
    font-weight: 700;
    color: #1f8e9a;
    text-align: center;
    margin-bottom: 8px;
}

.aqualift-vs-script {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-weight: 700;
    font-size: 0.85em;
    color: #1a5555;
}

.aqualift-vs-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #111;
    text-align: center;
    margin-bottom: 30px;
}

.aqualift-vs-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.aqualift-vs-table thead th {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f8e9a;
    padding: 10px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.aqualift-vs-table thead th:first-child {
    text-align: left;
}

.aqualift-vs-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.aqualift-vs-table tbody td {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #000;
    padding: 14px 16px;
    text-align: center;
    vertical-align: middle;
}

.aqualift-vs-rowlabel {
    font-weight: 700 !important;
    text-align: left !important;
    white-space: nowrap;
    color: #1f8e9a !important;
}

/* ============================================
   AQUALIFT - CTA SECTION
   ============================================ */
.aqualift-cta-section {
    background: #fff;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.aqualift-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 655px;
    width: 90%;
}

.aqualift-cta-bar {
    background: var(--color-primary);
    padding: 18px 140px 18px 40px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    width: 100%;
}

.aqualift-cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.aqualift-cta-photo {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    position: absolute;
    right: -30px;
    top: -98%;
    transform: translateY(-50%);
    z-index: 2;
}

.aqualift-cta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: #f5f5f5;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-col-logo {
    flex: 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo-me {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.15em;
    position: relative;
    color: var(--color-dark);
    margin-left: 5px;
}

.footer-logo-amp {
    position: absolute;
    left: 58%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    color: var(--color-primary);
    font-size: 1em;
    z-index: 2;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-medicina {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-dark);
    text-transform: uppercase;
}

.footer-logo-distribuidora {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.footer-redes {
    margin-top: 10px;
}

.footer-redes-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: scale(1.1);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-col-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.footer-nav-link:hover {
    color: var(--color-primary);
}

.footer-col-contacto {
    flex: 1;
    text-align: left;
}

.footer-contacto-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-contacto-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
    margin-right: 12px;
}

.footer-icon svg {
    width: 17px;
    height: 17px;
}

.footer-contacto-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-dark);
    min-width: 210px;
    text-align: left;
    line-height: 1;
}


.footer-copyright {
    background: linear-gradient(to right, #ffffff 0%, #e0f4f1 50%, #95CFC6 100%);
    padding: 15px 0;
}

.footer-copyright-text {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-dark);
    margin: 0;
}

/* ============================================
   CONTACTO PAGE
   ============================================ */
.contacto-page-section {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 20%, #c5e8e2 60%, #b8ddd8 100%);
    padding: 120px 0 40px;
}

.contacto-row {
    max-width: 780px;
    margin: 0 auto;
}

.contacto-header {
    margin-bottom: 50px;
    text-align: left;
}

.contacto-sup {
    font-family: var(--font-body);
    font-size: 1.96rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.contacto-title {
    font-family: var(--font-body);
    font-size: 3.08rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.contacto-desc {
    font-family: var(--font-body);
    font-size: 1.29rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contacto-line {
    width: 200px;
    height: 1.5px;
    background: #555;
}

.contacto-form-wrap {
    width: 100%;
}

.contacto-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contacto-input,
.contacto-textarea {
    width: 100%;
    background: #8ececa;
    border: none;
    border-radius: 30px;
    padding: 14px 22px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: italic;
    color: #fff;
    outline: none;
    transition: background 0.2s;
}

.contacto-input::placeholder,
.contacto-textarea::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.contacto-input:focus,
.contacto-textarea:focus {
    background: #7bbfbf;
}

.contacto-textarea {
    border-radius: 18px;
    resize: none;
    margin-bottom: 20px;
    display: block;
}

.contacto-btn {
    background: #8ececa;
    border: none;
    border-radius: 30px;
    padding: 13px 32px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.contacto-btn:hover {
    background: #7bbfbf;
    transform: translateY(-1px);
}

/* Pick-Up Point */
.pickup-card {
    background: #f0f4f4;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    gap: 30px;
    overflow: visible;
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.pickup-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.pickup-sup {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: #555;
    margin-bottom: 4px;
}

.pickup-title {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.pickup-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 30px;
}

.pickup-btn {
    display: inline-block;
    border: 1.5px solid #95CFC6;
    border-radius: 30px;
    padding: 11px 26px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #444;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.pickup-btn:hover {
    border-color: #7bbfbf;
    color: #111;
}

.pickup-img {
    flex: 0 0 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-top: -40px;
}

.pickup-badge {
    position: absolute;
    top: 20px;
    left: 38%;
    transform: translateX(-50%);
    background: #7ecece;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 10;
}


.pickup-img img {
    width: 280px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* ============================================
   STYLAGE PAGE STYLES - INDEPENDIENTES
   ============================================ */

/* Fuente Stylage: Helvetica Neue */
.stylage-navbar,
.stylage-navbar *,
.stylage-section,
.vivacy-section,
.bisoft-section,
.relleno-section,
.realce-section,
.restauracion-section,
.stylage-beneficios-section,
.stylage-faq-section {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Navbar - Transparent on top, solid on scroll */
.stylage-navbar.navbar-transparent {
    background: transparent;
    transition: all 0.4s ease;
}

.stylage-navbar.navbar-transparent.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stylage-navbar.navbar-transparent .nav-link {
    color: var(--color-dark) !important;
}

.stylage-navbar.navbar-transparent.scrolled .nav-link {
    color: var(--color-dark) !important;
}

/* Logo styling for transparent navbar */
.stylage-navbar.navbar-transparent .logo-me {
    color: var(--color-dark);
}

.stylage-navbar.navbar-transparent .logo-medicina {
    color: var(--color-dark);
}

/* Hero Section - Image with Logo */
.stylage-hero {
    width: 100%;
    height: 60vh;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
}

.stylage-hero-logo {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 500px;
    max-width: 90%;
}

.stylage-hero-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    min-width: 400px;
}

.stylage-hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.stylage-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   VIVACY SECTION STYLES
   ============================================ */
.vivacy-section {
    padding: 80px 0;
    background: var(--color-white);
}

.vivacy-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.vivacy-description p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-dark);
}

.vivacy-benefits {
    text-align: center;
}

.vivacy-item {
    padding: 20px;
}

.vivacy-image {
    margin-bottom: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vivacy-image img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

.vivacy-logo {
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vivacy-logo img {
    max-width: 120px;
    height: auto;
}

.bisoft-text {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.05em;
}

.bisoft-text sup {
    font-size: 0.6em;
}

.bisoft-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-gray);
    letter-spacing: 0.1em;
}

.vivacy-security-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.1em;
}

.vivacy-security-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray);
    letter-spacing: 0.15em;
}

.vivacy-title {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    color: #2B3C7E;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 20px;
}

.vivacy-image img {
    max-width: 100%;
    height: auto;
    max-height: clamp(180px, 20vw, 260px);
    object-fit: contain;
}

/* ============================================
   STYLAGE BENEFICIOS SECTION
   ============================================ */
.stylage-beneficios-section {
    padding: 40px 0;
    background: var(--color-white);
}

.stylage-beneficios-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stylage-beneficios-image img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
}

.stylage-beneficios-content {
    padding-left: 40px;
    text-align: left;
}

.stylage-beneficios-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 10px;
    position: relative;
    display: block;
    padding-left: 25px;
}

.stylage-beneficios-title strong {
    font-weight: 500;
}

.stylage-beneficios-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 50px;
    background: #2B3C7E;
}

.stylage-beneficios-title sup {
    font-size: 0.5em;
    top: -0.8em;
}

.stylage-beneficios-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.stylage-beneficios-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 30px;
    display: block;
    text-align: left;
}

.stylage-beneficios-list li {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bullet {
    display: inline-block;
    width: 4px;
    height: 20px;
    border-radius: 2px;
    flex-shrink: 0;
}

.bullet-purple {
    background: #8D4F83;
}

.bullet-pink {
    background: #B64C6E;
}

.bullet-green {
    background: #82A55F;
}

.bullet-blue {
    background: #0076AA;
}

/* ============================================
   RELLENO SECTION
   ============================================ */
.relleno-section {
    padding: 40px 0;
    background: var(--color-white);
}

.relleno-header {
    text-align: left;
    margin-bottom: 40px;
}

.relleno-header .relleno-indicaciones-title,
.relleno-header .relleno-indicaciones-desc {
    text-align: center;
}

.relleno-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.relleno-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #2B3C7E;
}

.relleno-indicaciones-title {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 500;
    color: #2B3C7E;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
}

.relleno-indicaciones-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-gray);
}

.relleno-products-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.relleno-product-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    min-width: 240px;
}

.relleno-product-image {
    flex-shrink: 0;
    width: 260px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.relleno-product-image img {
    max-width: 100%;
    height: auto;
    max-height: clamp(320px, 28vw, 440px);
    object-fit: contain;
}

.seccion-imagen-plan {
    position: relative;
}

.plan-overlay {
    text-align: center;
    padding: 20px 0 10px;
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}

.relleno-plan {
    text-align: center;
    padding: 20px 0 10px;
}

.relleno-plan-divider {
    width: 50px;
    height: 3px;
    background: #2B3C7E;
    margin: 0 auto 20px;
}

.relleno-plan-title {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #2B3C7E;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.relleno-plan-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.6;
}

.relleno-prospecto {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--color-gray);
    text-align: left;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.relleno-product-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.4;
    text-align: left;
    max-width: 200px;
}

/* ============================================
   REALCE SECTION
   ============================================ */
.realce-section {
    padding: 40px 0;
    background: var(--color-white);
}

.realce-header {
    text-align: left;
    margin-bottom: 60px;
}

.realce-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.realce-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #B64C6E;
}

.realce-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 500;
    color: #B64C6E;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.realce-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.realce-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
}

.realce-image {
    flex-shrink: 0;
    max-width: 450px;
    order: 1;
}

.realce-image img {
    width: 100%;
    height: auto;
}

.realce-benefits {
    max-width: 350px;
    order: 2;
}

.realce-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.realce-benefits-list li {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.realce-benefits-list li strong {
    color: #B64C6E;
    font-weight: 500;
}

.plan-line {
    width: 60px;
    height: 3px;
    background: #B64C6E;
    margin: 0 auto 30px;
}

.realce-plan {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.realce-plan-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: #B64C6E;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.realce-plan-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
}

/* ============================================
   RESTAURACIÓN SECTION
   ============================================ */
.restauracion-section {
    padding: 40px 0;
    background: var(--color-white);
}

.restauracion-header {
    text-align: left;
    margin-bottom: 60px;
}

.restauracion-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.restauracion-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #82A55F;
}

.restauracion-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 500;
    color: #82A55F;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.restauracion-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.restauracion-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.restauracion-image {
    flex-shrink: 0;
    max-width: 300px;
}

.restauracion-image img {
    width: 100%;
    height: auto;
}

.restauracion-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.5;
    text-align: left;
}

.restauracion-plan {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.plan-line-green {
    width: 60px;
    height: 3px;
    background: #82A55F;
    margin: 0 auto 30px;
}

.restauracion-plan-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: #82A55F;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.restauracion-plan-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
}

/* ============================================
   HIDRATACIÓN SECTION
   ============================================ */
.hidratacion-section {
    padding: 40px 0;
    background: var(--color-white);
}

.hidratacion-header {
    text-align: left;
    margin-bottom: 60px;
}

.hidratacion-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.hidratacion-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #0076AA;
}

.hidratacion-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 500;
    color: #0076AA;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.hidratacion-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.hidratacion-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.hidratacion-image {
    flex-shrink: 0;
    max-width: 300px;
}

.hidratacion-image img {
    width: 100%;
    height: auto;
}

.hidratacion-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.5;
}

.hidratacion-plan {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.plan-line-blue {
    width: 60px;
    height: 3px;
    background: #0076AA;
    margin: 0 auto 30px;
}

.hidratacion-plan-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: #0076AA;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hidratacion-plan-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
}

/* ============================================
   NUESTROS PRODUCTOS PAGE
   ============================================ */
.productos-hero-section {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Producto Individual Hero */
.producto-hero-section {
    padding: 120px 0 60px;
    background: var(--color-white);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.producto-hero-title {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aqualift-page .producto-hero-title {
    font-family: 'SignPainter', cursive;
    text-transform: none;
}

/* Hero Logo Styles */
.hero-logo-me {
    margin-bottom: 20px;
}

.hero-logo-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: var(--color-dark);
    letter-spacing: 0.1em;
}

.hero-logo-amp {
    color: var(--color-primary);
    font-style: italic;
}

.hero-logo-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 10px;
}

.productos-hero-title {
    font-family: var(--font-body);
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--color-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
}

.productos-hero-title-bold {
    font-weight: 800;
    font-size: 0.9em;
}

.productos-hero-desc {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.7;
    max-width: 450px;
}

.productos-hero-image-wrapper {
    width: 100%;
}

.productos-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.productos-grid-section {
    padding: 80px 0;
    background: var(--color-white);
}

.productos-header {
    text-align: center;
    margin-bottom: 60px;
}

.productos-page-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.productos-page-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.productos-grid {
    display: flex;
    flex-wrap: wrap;
}

.producto-card {
    text-align: center;
    margin-bottom: 40px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.producto-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.producto-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.producto-link:hover {
    color: inherit;
}

.producto-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.producto-link:hover::after {
    width: 80%;
}

.producto-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    transition: box-shadow 0.4s ease;
}

.producto-card:hover .producto-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.producto-image>img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.producto-card:hover .producto-image>img {
    transform: scale(1.05);
}

.producto-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.producto-card:hover .producto-logo {
    top: 15px;
    transform: translateX(-50%) scale(1.1);
}

.producto-logo img {
    width: 200px;
    height: 55px;
    display: block;
    object-fit: contain;
    filter: invert(1) brightness(0.2) contrast(1.2);
}

/* Tamaños específicos para logos */
.producto-logo img.logo-chico {
    width: 260px;
    height: 70px;
}

.producto-logo img.logo-aqulift {
    width: 340px;
    height: 92px;
}

.producto-logo img.logo-xl {
    width: 350px;
    height: 90px;
}

.producto-logo img.logo-stylage {
    width: 380px;
    height: 100px;
    transform: translateY(-17px);
}

.producto-logo img.logo-grande {
    width: 200px;
    height: 55px;
}

.producto-logo img.logo-muy-chico {
    width: 200px;
    height: 55px;
}

.producto-logo img.logo-inbiotec-amber {
    width: 260px;
    height: 72px;
}

.producto-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

/* ============================================
   ANTES/DESPUÉS SECTION
   ============================================ */
.antes-despues-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.antes-despues-header {
    margin-bottom: 60px;
}

.antes-despues-title {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    padding-top: 20px;
    margin: 0;
}

.antes-despues-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 2px;
    background: #aaa;
}

.antes-despues-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.antes-despues-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.4;
}

.antes-despues-item .antes-despues-label:last-of-type {
    margin-bottom: 12px;
}

.antes-despues-label sup {
    font-size: 0.6em;
}

.antes-despues-highlight {
    color: #2B3C7E;
}

.antes-despues-images-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.antes-despues-images {
    display: flex;
    gap: 6px;
    flex: 1;
}

.antes-despues-images img {
    width: calc(50% - 3px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.antes-despues-copy {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.6rem;
    color: #999;
    white-space: nowrap;
    padding-left: 6px;
    align-self: center;
    letter-spacing: 0.03em;
}

/* ============================================
   EVERLINE PAGE
   ============================================ */

.everline-hero-section,
.everline-cannula-section,
.everline-beneficios-section,
.everline-procedimiento-section {
    --color-primary: #2ea7ae;
}

.everline-hero-section {
    position: relative;
    width: 100%;
    height: 66vh;
    min-height: 432px;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 100vw;
}

.everline-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.everline-hero-container {
    position: relative;
    z-index: 2;
}

.everline-hero-content {
    padding-top: 120px;
}

.everline-hero-logo {
    height: 140px;
    width: auto;
    display: block;
    filter: invert(1);
    opacity: 0.6;
}

.everline-hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    color: #1D1D1B;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1;
}

/* Everline Cannula Section */
.everline-cannula-section {
    padding: 80px 0;
    background: #fff;
}

.everline-cannula-wrapper {
    width: 100%;
    padding: 0 60px 0 0;
    font-size: 0;
}

.everline-cannula-texto {
    display: inline-block;
    vertical-align: middle;
    width: 45%;
    padding-left: 200px;
    font-size: 1rem;
}

.everline-cannula-imagen {
    display: inline-block;
    vertical-align: middle;
    width: 45%;
    text-align: center;
    padding-right: 200px;
    font-size: 1rem;
}

.everline-cannula-row {
    display: flex;
    align-items: center;
}

.everline-cannula-info {
    flex: 1;
}

.everline-cannula-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.everline-cannula-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #626366;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
}

.everline-cannula-medidas {
    margin-top: 10px;
}

.everline-medidas-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #1D1D1B;
    margin-bottom: 14px;
}

.everline-medidas-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px 20px;
    justify-content: start;
}

.everline-medidas-grid span {
    font-family: var(--font-body);
    font-size: 1.24rem;
    color: #626366;
}

.everline-cannula-img-placeholder {
    flex: 0 0 320px;
    height: 300px;
}

.everline-cannula-img {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.everline-cannula-img img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.everline-cannula-img-bs {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

/* Everline Beneficios */
.everline-beneficios-section {
    background: #fff;
    padding-bottom: 80px;
}

.everline-beneficios-header {
    background: linear-gradient(to right,
            white 0px, white 5px,
            var(--color-primary) 5px, var(--color-primary) 12px,
            white 12px, white 17px,
            var(--color-primary) 17px);
    padding: 18px 24px 18px 32px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.everline-header-bars {
    display: none;
}

.everline-beneficios-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.03em;
}

.everline-beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
}

.everline-beneficio-item {
    padding-left: 20px;
    position: relative;
}

.everline-beneficio-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.everline-beneficio-item p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #626366;
    line-height: 1.7;
    margin: 0;
}

/* Everline Procedimiento */
.everline-procedimiento-section {
    background: #fff;
    padding-bottom: 80px;
}

.everline-procedimiento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
}

.everline-paso img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: 16px;
}

.everline-paso-texto {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #626366;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   EXOSLIM PAGE
   ============================================ */

.exoslim-hero-section {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 100vw;
}

.exoslim-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.exoslim-hero-container {
    position: relative;
    z-index: 2;
}

.exoslim-hero-content {
    padding-top: 60px;
}

.exoslim-hero-logo {
    width: 280px;
    height: auto;
}

.exoslim-hero-producto {
    position: absolute;
    inset: 0;
    margin: auto;
    height: 90%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    display: block;
}

/* ExoSlim Sistema */
.exoslim-sistema-section {
    padding: 60px 0;
    background: #fff;
}


.exoslim-sistema-intro {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #000;
    line-height: 1.9;
    margin-bottom: 40px;
}


.exoslim-box {
    flex: 1;
    padding: 24px 36px;
    border-radius: 12px;
    border: 4px solid #C9962A;
}

.exoslim-box:first-child {
    border-radius: 30px 0 30px 30px;
}

.exoslim-box:last-child {
    border-radius: 0 0 30px 0;
}

.exoslim-box-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
    color: #C9962A;
    margin-bottom: 14px;
    line-height: 1.3;
    text-transform: uppercase;
}

.exoslim-box-title span {
    display: block;
}

.exoslim-box-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #000;
    line-height: 1.7;
    margin: 0;
}


/* ExoSlim Productos */
.exoslim-productos-section {
    padding: 80px 0 180px;
    background: #fff;
}


.exoslim-producto-card {
    position: relative;
    border: none;
    border-radius: 100px 0 100px 100px;
    padding: 150px 32px 36px;
    background: #fff;
    overflow: visible;
    margin-top: 60px;
    isolation: isolate;
}

.exoslim-producto-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: linear-gradient(to right, #8B6419, #C9962A, #E8C244, #F2E090, #E8C244, #C9962A, #8B6419);
    z-index: -1;
}

.exoslim-producto-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #fff;
    z-index: -1;
}

.exoslim-producto-card:last-child {
    border-radius: 100px 0 100px 100px;
}

.exoslim-producto-num {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 13rem;
    font-weight: 300;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(to bottom, #8B6419 0%, #E8C244 40%, #F2E090 60%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exoslim-producto-img {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
}

.exoslim-producto-img img {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.exoslim-producto-body {
    position: relative;
    z-index: 2;
}

.exoslim-producto-texto {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #000;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
}

.exoslim-producto-hr {
    border: none;
    border-top: 1px solid #D5AA44;
    margin: 18px 0;
}

/* ExoSlim Ingredientes */
.exoslim-ingredientes-section {
    padding: 0 0 100px;
    background: #fff;
    overflow: visible;
    margin-top: 0;
}

.exoslim-ingredientes-grid-offset {
    margin-top: 100px;
}

.exoslim-ing-card {
    border: 2px solid #C9962A;
    border-radius: 0 0 20px 20px;
    overflow: visible;
    position: relative;
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

.exoslim-ing-img-wrap {
    width: 169px;
    height: 169px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid #C9962A;
    margin: -85px auto 20px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.exoslim-ing-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exoslim-ing-body {
    padding: 24px 24px 28px;
    text-align: center;
}

.exoslim-ing-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    color: #C9962A;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.exoslim-ing-texto {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #000;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
}

.exoslim-ing-hr {
    border: none;
    border-top: 2px solid #222;
    margin: 14px 0;
}

/* ExoSlim Protocolo */
.exoslim-protocolo-section {
    padding: 80px 0 100px;
    background: #fff;
}


.exoslim-protocolo-title {
    font-family: var(--font-body);
    font-size: 3.2rem;
    font-weight: 800;
    color: #C9962A;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.exoslim-protocolo-pasos {
    display: flex;
    align-items: center;
    gap: 0;
}

.exoslim-paso-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 18px 36px 18px 44px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 15% 50%);
    margin-left: -4px;
    letter-spacing: 0.05em;
}

.exoslim-paso-arrow:first-child {
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    margin-left: 0;
    background: #8B6419;
    color: #fff;
}

.exoslim-paso-arrow:nth-child(2) {
    background: linear-gradient(to right, #8B6419, #C9962A, #E8C244);
}

.exoslim-paso-arrow:nth-child(3) {
    background: linear-gradient(to right, #E8C244, #F2E090);
    color: #fff;
}

.exoslim-paso-arrow:nth-child(4) {
    background: linear-gradient(to right, #F2E090, #C9962A, #8B6419);
    color: #fff;
}


.exoslim-protocolo-col {
    position: relative;
}

.exoslim-protocolo-box {
    background: linear-gradient(to right, #8B6419, #C9962A, #E8C244, #C9962A, #8B6419);
    border-radius: 8px 8px 80px 8px;
    padding: 24px 24px 24px 28px;
    display: inline-block;
    max-width: 100%;
    position: relative;
}



.exoslim-protocolo-sesion-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.exoslim-protocolo-sesion-texto {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.65;
    margin: 0;
}

.exoslim-protocolo-img {
    position: absolute;
    right: -30px;
    bottom: -114px;
    width: 260px;
    z-index: 2;
}

.exoslim-protocolo-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ExoSlim Antes y Después */
.exoslim-antesdespues-section {
    padding: 80px 0 100px;
    background: #fff;
}

.exoslim-antesdespues-title {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 800;
    color: #C9962A;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.exoslim-antesdespues-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 50px;
}


.exoslim-ad-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exoslim-ad-img-wrap {
    position: relative;
    width: 100%;
    border: 1.5px solid #C9962A;
    overflow: hidden;
}

.exoslim-ad-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.exoslim-ad-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #C9962A;
    transform: translateX(-50%);
}

.exoslim-ad-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.exoslim-ad-labels span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.08em;
}

/* ExoSlim FAQ */
.exoslim-faq-section {
    padding: 80px 0 100px;
    background: #fafafa;
}


.exoslim-faq-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(to right, #8B6419, #C9962A, #E8C244, #F2E090, #E8C244, #C9962A, #8B6419);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.06em;
    margin-bottom: 30px;
}

.exoslim-faq-item {
    border: 3px solid #C9962A;
    border-radius: 30px;
    margin-bottom: 14px;
    overflow: hidden;
}

.exoslim-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: #555;
    text-align: left;
    gap: 12px;
}

.exoslim-faq-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #C9962A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.exoslim-faq-icon::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #C9962A;
    border-bottom: 2px solid #C9962A;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
}

.exoslim-faq-icon.open::before {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.exoslim-faq-answer {
    display: none;
    padding: 0 24px 18px;
}

.exoslim-faq-answer p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #777;
    line-height: 1.75;
    margin: 0;
}

.exoslim-faq-item.active .exoslim-faq-answer {
    display: block;
}

.exoslim-faq-imgs {
    flex: 0 0 380px;
    position: relative;
    height: 480px;
}

.exoslim-faq-img {
    position: absolute;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.exoslim-faq-img-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 20px;
    z-index: 3;
}

.exoslim-faq-img-2 {
    width: 180px;
    height: 180px;
    top: 140px;
    right: 0;
    z-index: 2;
}

.exoslim-faq-img-3 {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: 60px;
    z-index: 1;
}

/* ============================================
   INBIOTEC PAGE
   ============================================ */

/* Fuente Inbiotec: Roboto Slab */
.inbiotec-tratamientos-section,
.inbiotec-producto-nombre,
.inbiotec-producto-desc,
.inbiotec-producto-detalle,
.inbiotec-section-title-top,
.inbiotec-section-title-bottom {
    font-family: 'Roboto Slab', serif;
}

.inbiotec-hero-section {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 100vw;
}

.inbiotec-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.inbiotec-hero-container {
    position: relative;
    z-index: 2;
}

.inbiotec-hero-content {
    padding-top: 60px;
}

.inbiotec-hero-logo {
    width: 260px;
    height: auto;
    filter: brightness(0) saturate(100%);
}

/* Tratamientos Section */
.inbiotec-tratamientos-section {
    padding: 0 0 60px;
    background: #fff;
    overflow-x: clip;
}

.inbiotec-section-header {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #1D1D1B;
    color: #fff;
    padding: 14px 24px;
    margin-bottom: 60px;
    margin-left: 0;
}

.inbiotec-section-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.inbiotec-icon-frasco {
    width: 48px;
    height: auto;
    display: block;
}

.inbiotec-section-title-top {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.2;
}

.inbiotec-section-title-bottom {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.2;
}

/* Producto Row */
.inbiotec-productos-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.inbiotec-producto-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 50px 0;
    border-bottom: 1px solid #EFEFEF;
}

.inbiotec-producto-row:last-child {
    border-bottom: none;
}

.inbiotec-producto-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inbiotec-img-pack {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

.inbiotec-img-main {
    width: 100%;
    height: auto;
    display: block;
}

.inbiotec-img-frasco {
    position: absolute;
    bottom: -7px;
    right: -30px;
    width: 265px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.inbiotec-producto-info {
    flex: 1;
}

.inbiotec-producto-nombre {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 300;
    color: #1D1D1B;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.inbiotec-nombre-sub {
    font-size: 1.4rem;
    font-weight: 300;
    color: #6F6F6E;
}

.inbiotec-producto-divider {
    width: 100%;
    height: 2px;
    background: #EFEFEF;
    margin-bottom: 18px;
}

.inbiotec-producto-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #1C1E1C;
    line-height: 1.8;
    margin-bottom: 20px;
}

.inbiotec-producto-detalle {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: #1C1E1C;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ============================================
   INBIOTEC AMBER PAGE
   ============================================ */

.amber-hero-section {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 100vw;
    background: #EFEFF0;
}

.amber-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.amber-hero-container {
    position: relative;
    z-index: 2;
}

.amber-hero-content {
    padding-top: 60px;
}

.amber-hero-logo {
    width: 420px;
    height: auto;
    filter: brightness(0) saturate(100%);
}

/* Intro Section */
.amber-intro-section {
    padding: 50px 0 40px;
    background: #EFEFF0;
}

.amber-main-title {
    font-family: var(--font-amber);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #CD651D;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.amber-main-title strong {
    font-weight: 700;
}

.amber-main-subtitle {
    font-family: var(--font-amber);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #1D1D1B;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.amber-main-subtitle strong {
    font-weight: 700;
}

.amber-main-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #1D1D1B;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    background: none;
}

.amber-tag-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #CD651D;
    flex-shrink: 0;
}

.amber-card-box {
    background: #E8E8E8;
    border-radius: 20px;
    padding: 28px 26px;
    height: 100%;
}

.amber-card-title {
    font-family: var(--font-amber);
    font-size: 1.4rem;
    font-weight: 700;
    color: #CD651D;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.amber-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #575756;
    line-height: 1.75;
    margin-bottom: 12px;
}

.amber-benefit-box {
    background: #E8E8E8;
    border-radius: 18px;
    padding: 14px 20px;
}

.amber-benefit-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #1D1D1B;
    line-height: 1.6;
    margin: 0;
}

.amber-note-box {
    border-left: 3px solid #CD651D;
    padding: 14px 20px;
    background: none;
    border-radius: 0;
}

.amber-note-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #575756;
    line-height: 1.7;
    margin: 0;
}

/* Beneficios Section */
.amber-beneficios-section {
    padding: 80px 0 100px;
    background: #EFEFF0;
}

.amber-beneficios-title {
    font-family: var(--font-amber);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #CD651D;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.amber-beneficios-title strong {
    font-weight: 700;
}

.amber-beneficios-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #1D1D1B;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.amber-beneficio-card {
    background: #E8E8E8;
    border-radius: 20px;
    padding: 26px 22px;
    height: 100%;
}

.amber-beneficio-card-title {
    font-family: var(--font-amber);
    font-size: 1rem;
    font-weight: 700;
    color: #CD651D;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.amber-beneficio-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #575756;
    line-height: 1.65;
    margin: 0;
}

/* Caso Práctico Section */
.amber-caso-section {
    padding: 60px 0 80px;
    background: #EFEFF0;
}

.amber-caso-title {
    font-family: var(--font-amber);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #CD651D;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.amber-caso-subtitle-inline {
    font-size: 0.80em;
    font-weight: 700;
    color: #CD651D;
    letter-spacing: 0.08em;
}

.amber-caso-doctor-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 12px;
}

.amber-caso-doctor-col .amber-caso-img-wrap {
    flex: 1 1 0;
    min-width: 0;
}

.amber-caso-doctor-col .amber-caso-img-wrap img {
    width: 100%;
    height: 140px;
    display: block;
    object-fit: cover;
}


.amber-caso-doctor {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1D1D1B;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.amber-caso-img-wrap {
    display: flex;
    flex-direction: column;
}

.amber-caso-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.amber-caso-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: #1D1D1B;
    margin-top: 4px;
    font-style: italic;
}

.amber-caso-desc-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: #868686;
    line-height: 1.4;
    margin-top: 2px;
}

/* ============================================
   CUSTOM FONTS
   ============================================ */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../tipografia/HelveticaNeue.ttc') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SignPainter';
    src: url('../tipografia/SignPainter HouseScript Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ============================================
   PIEL SANA — FONT
   ============================================ */
@font-face {
    font-family: 'BlissPro';
    src: url('../tipografia/BlissPro - Bliss Pro - Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ============================================
   PIEL SANA
   ============================================ */

/* Navbar - logo y links en oscuro sobre fondo beige/claro */
.pielsana-navbar.navbar-transparent .logo-me {
    color: #1D1D1B;
}

.pielsana-navbar.navbar-transparent .logo-amp {
    color: #ffffff;
    font-style: italic;
}

.pielsana-navbar.navbar-transparent .logo-medicina,
.pielsana-navbar.navbar-transparent .logo-distribuidora {
    color: #1D1D1B;
}

.pielsana-navbar.navbar-transparent .nav-link {
    color: #1D1D1B !important;
}

.pielsana-navbar.navbar-transparent .navbar-toggler-icon,
.pielsana-navbar.navbar-transparent .navbar-toggler-icon::before,
.pielsana-navbar.navbar-transparent .navbar-toggler-icon::after {
    background: #1D1D1B;
}

/* Colores específicos por categoría */
.pielsana-categoria-limpieza {
    --cat-color: #DDD1B9;
    --cat-text: #ffffff;
}

.pielsana-categoria-mascaras {
    --cat-color: #89887C;
    --cat-text: #89887C;
}

.pielsana-categoria-blanqueadores {
    --cat-color: #876f68;
    --cat-text: #876f68;
}

.pielsana-categoria-hidratantes {
    --cat-color: #bb9890;
    --cat-text: #bb9890;
}

.pielsana-categoria-antiage {
    --cat-color: #d2867f;
    --cat-text: #d2867f;
}

.pielsana-categoria-tensora {
    --cat-color: #ac655a;
    --cat-text: #ac655a;
}

.pielsana-categoria-orthomolecular {
    --cat-color: #b68883;
    --cat-text: #b68883;
}

.pielsana-categoria-limpieza .pielsana-producto-nombre,
.pielsana-categoria-mascaras .pielsana-producto-nombre,
.pielsana-categoria-blanqueadores .pielsana-producto-nombre,
.pielsana-categoria-hidratantes .pielsana-producto-nombre,
.pielsana-categoria-antiage .pielsana-producto-nombre,
.pielsana-categoria-tensora .pielsana-producto-nombre,
.pielsana-categoria-orthomolecular .pielsana-producto-nombre {
    color: var(--cat-text);
}

/* Hero */
.pielsana-hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 360px;
    overflow: hidden;
    line-height: 0;
}

.pielsana-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.pielsana-hero-logo {
    position: absolute;
    bottom: 20%;
    left: 7%;
    z-index: 2;
}

.pielsana-logo-img {
    width: 400px;
    height: auto;
}

/* Flip Card */
.pielsana-producto-card {
    perspective: 1000px;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    transform-style: preserve-3d;
    width: 280px;
    height: 420px;
    flex-shrink: 0;
}

.pielsana-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
}

.pielsana-producto-card.flipped .pielsana-card-inner {
    transform: rotateY(180deg) translateZ(0);
}

.pielsana-card-front,
.pielsana-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 4px;
    overflow: hidden;
}

.pielsana-card-front {
    border: 1.5px solid var(--cat-color, #DDD1B9);
    background: #ffffff;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pielsana-card-icono {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.pielsana-card-icono-single {
    width: 22px;
}

.pielsana-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 16px 14px;
    overflow: hidden;
}

.pielsana-back-titulo {
    font-family: 'BlissPro', sans-serif;
    font-size: 0.72rem;
    font-weight: normal;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 10px;
    flex-shrink: 0;
    text-align: center;
}

.pielsana-back-desc {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    flex: 1;
    overflow: hidden;
}

.pielsana-back-composicion {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    padding: 7px 10px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.4;
    margin-top: 10px;
    flex-shrink: 0;
}

/* Productos Section */
.pielsana-productos-section {
    background: #ffffff;
    padding: 0 0 80px;
}

.pielsana-categoria {
    margin-bottom: 60px;
}

.pielsana-categoria-header {
    padding: 18px 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pielsana-categoria-icono {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.pielsana-header-limpieza {
    background: #DDD1B9;
}

.pielsana-header-mascaras {
    background: #89887C;
}

.pielsana-header-blanqueadores {
    background: #AE907D;
}

.pielsana-header-hidratantes {
    background: #BB9890;
}

.pielsana-header-antiage {
    background: #D2867F;
}

.pielsana-header-tensora {
    background: #AC655A;
}

.pielsana-header-orthomolecular {
    background: #BB9890;
}

.pielsana-grid-orthomolecular .pielsana-producto-card {
    border-color: #BB9890;
}

.pielsana-grid-tensora .pielsana-producto-card {
    border-color: #AC655A;
}

.pielsana-categoria-titulo {
    font-family: 'BlissPro', sans-serif;
    font-size: 2.8rem;
    font-weight: normal;
    letter-spacing: 0.18em;
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.pielsana-productos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    max-width: 968px;
    margin: 0 auto;
}


.pielsana-producto-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.pielsana-img-right {
    object-position: right center;
}

.pielsana-img-left {
    object-position: left center;
}

/* Las imágenes cubren toda la tarjeta - object-fit: cover en .pielsana-producto-img */

/* Fondo específico para tarjetas de Hidratantes */
.pielsana-categoria-hidratantes .pielsana-card-front {
    background: #f8efe9;
}

/* Fondo específico para tarjetas de Blanqueadores */
.pielsana-categoria-blanqueadores .pielsana-card-front {
    background: #f9f1ed;
}

/* Fondo específico para tarjetas de Máscaras */
.pielsana-categoria-mascaras .pielsana-card-front {
    background: #f8efe9;
}

/* Fondo específico para tarjetas de Limpieza */
.pielsana-categoria-limpieza .pielsana-card-front {
    background: #DDD1B9;
    border: 2px solid #DDD1B9;
}

/* Fondo específico para tarjetas de Máscaras */
.pielsana-categoria-mascaras .pielsana-card-front {
    background: #f8efe9;
    border: 2px solid #F7EAE7;
}

/* Fondo específico para tarjetas de Blanqueadores */
.pielsana-categoria-blanqueadores .pielsana-card-front {
    background: #f9f1ed;
    border: 2px solid #F7EAE7;
}

/* Fondo específico para tarjetas de Hidratantes */
.pielsana-categoria-hidratantes .pielsana-card-front {
    background: #f8efe9;
    border: 2px solid #F7EAE7;
}

/* Fondo específico para tarjetas de Antiage */
.pielsana-categoria-antiage .pielsana-card-front {
    background: #F7EAE7;
    border: 2px solid #d2867f;
}

/* Fondo específico para tarjetas de Tensoras */
.pielsana-categoria-tensora .pielsana-card-front {
    background: #F7EAE7;
    border: 2px solid #ac655a;
}

/* Fondo específico para tarjetas de Orthomolecular */
.pielsana-categoria-orthomolecular .pielsana-card-front {
    background: #F7EAE7;
    border: 2px solid #b68883;
}

/* Serum Multicontrol - centrado y ajustado */
.pielsana-item-serum-niacinamida .pielsana-producto-img {
    width: 105%;
    height: 89%;
    top: 68%;
    left: 41%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center center;
}

/* Limpieza - Jabón y Scrub */
.pielsana-item-jabon-detox .pielsana-producto-img,
.pielsana-item-scrub .pielsana-producto-img {
    width: 240px;
    height: 305px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

/* Blanqueadores - Emulgel - CLASE PROPIA agrandado 40% */
.pielsana-item-emulgel-orquideas .pielsana-producto-img {
    width: 294px;
    height: 294px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

/* Blanqueadores - Suero Antox */
.pielsana-item-suero-antox .pielsana-producto-img {
    width: 210px;
    height: 210px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

/* Hidratantes - Suero B5 y Línea Hialucross */
.pielsana-item-suero-b5 .pielsana-producto-img,
.pielsana-item-hialucross .pielsana-producto-img {
    width: 463px;
    height: 265px;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

/* Vitacross - imagen como fondo de la tarjeta */
.pielsana-item-vitacross .pielsana-producto-img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Ajustar título de Vitacross para que se vea sobre la imagen */
.pielsana-item-vitacross .pielsana-producto-nombre {
    top: 12px;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Ajustar icono de Vitacross */
.pielsana-item-vitacross .pielsana-card-icono {
    z-index: 2;
}

/* Orthomolecular */
.pielsana-item-ortho-crema .pielsana-producto-img,
.pielsana-item-ortho-gel .pielsana-producto-img {
    width: 240px;
    height: 240px;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

/* BTX Serum */
.pielsana-item-btx .pielsana-producto-img {
    width: 210px;
    height: 210px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

/* Línea Berry */
.pielsana-item-berry .pielsana-producto-img {
    width: 380px;
    height: 255px;
    top: 55%;
    left: 47%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

/* Productos varios */
.pielsana-item-dmae .pielsana-producto-img,
.pielsana-item-gel-ah-vitc .pielsana-producto-img,
.pielsana-item-h-extreme .pielsana-producto-img,
.pielsana-item-mascara-carbon .pielsana-producto-img,
.pielsana-item-mascara-oro .pielsana-producto-img {
    width: 210px;
    height: 210px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.pielsana-img-top {
    object-position: center top;
}

.pielsana-img-bottom {
    object-position: center bottom;
}

.pielsana-img-0 {
    object-position: 0% center;
}

.pielsana-img-10 {
    object-position: 10% center;
}

.pielsana-img-20 {
    object-position: 20% center;
}

.pielsana-img-30 {
    object-position: 30% center;
}

.pielsana-img-40 {
    object-position: 40% center;
}

.pielsana-img-50 {
    object-position: 50% center;
}

.pielsana-img-60 {
    object-position: 60% center;
}

.pielsana-img-70 {
    object-position: 70% center;
}

.pielsana-img-80 {
    object-position: 80% center;
}

.pielsana-img-90 {
    object-position: 90% center;
}

.pielsana-producto-nombre {
    font-family: 'BlissPro', sans-serif;
    font-size: 0.85rem;
    font-weight: normal;
    letter-spacing: 0.12em;
    color: #4a3f35;
    text-transform: uppercase;
    padding: 10px 16px;
    line-height: 1.5;
    text-align: center;
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 2;
}

/* ============================================
   V-HACKER — FONT
   ============================================ */

.vhacker-hero-section,
.vhacker-seccion,
.vhacker-beneficios-section,
.vhacker-resultados-section,
.vhacker-faq-section {
    font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ============================================
   V-HACKER — HERO
   ============================================ */
.vhacker-hero-section {
    position: relative;
    min-height: 60vh;
    background: url('../img/vhacker/hero/hero-bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vhacker-hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.vhacker-hero-logo {
    position: absolute;
    left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vhacker-logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.vhacker-hero-product {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.vhacker-product-img {
    max-width: 80%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.vhacker-hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vhacker-title-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 2px #2c3e50;
    paint-order: stroke fill;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
}

/* ============================================
   V-HACKER — CÓDIGO SECTION
   ============================================ */
.vhacker-codigo-section {
    position: relative;
    min-height: 100vh;
    background: #333333 url('../img/vhacker/vhacker/codigo.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vhacker-codigo-container {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.vhacker-detalle {
    position: absolute;
    top: 120px;
    left: 80px;
    z-index: 2;
}

.vhacker-detalle-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transform: rotate(-8deg);
}

.vhacker-frasco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.vhacker-frasco-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
}

/* ============================================
   V-HACKER — BIOMARKING SECTION
   ============================================ */
.vhacker-biomarking-section {
    padding: 100px 0;
    background: #ffffff;
}

.vhacker-biomarking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vhacker-biomarking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.vhacker-biomarking-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0;
}

/* ============================================
   V-HACKER — FRASCO DETALLES SECTION
   ============================================ */
.vhacker-frasco-detalles-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.vhacker-frasco-detalles-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.vhacker-detalle-izquierdo,
.vhacker-detalle-derecho {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vhacker-detalle-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vhacker-detalle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vhacker-detalle-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.vhacker-detalle-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.vhacker-frasco-central {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vhacker-frasco-central-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

/* ============================================
   V-HACKER — SECCIÓN
   ============================================ */
.vhacker-seccion {
    padding: 80px 0;
    background: #1a1f2e;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    border-top: none;
    outline: none;
}

.vhacker-seccion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/vhacker/vhacker/codigo.png') center center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.vhacker-seccion-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 60vh;
}

/* Detalle esquina arriba izquierda */
.vhacker-detalle-esquina {
    position: absolute;
    top: -46px;
    left: -23px;
    z-index: 2;
}

.vhacker-detalle-esquina-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2));
    transform: rotate(90deg);
}

/* Frasco grande */
.vhacker-frasco-grande {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.vhacker-frasco-grande-img {
    max-width: 170px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* Texto principal */
.vhacker-texto-principal {
    position: relative;
    z-index: 1;
}


.vhacker-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vhacker-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: none;
    position: relative;
    padding-left: 15px;
}

.vhacker-subtitulo-1 .vhacker-chevron-inline,
.vhacker-parrafo-acidos .vhacker-chevron-inline,
.vhacker-subtitulo-3 .vhacker-chevron-inline {
    color: #00d4ff;
}

.vhacker-subtitulo-1::before,
.vhacker-parrafo-acidos::before,
.vhacker-subtitulo-3::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 8px;
    width: 80px;
    height: 2px;
    background: #00d4ff;
    z-index: 0;
}

.vhacker-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.vhacker-lista li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 5px;
    padding-left: 10px;
}

.vhacker-parrafo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Protocolo */
.vhacker-protocolo {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.vhacker-protocolo-info {
    display: flex;
    flex-direction: column;
}

.vhacker-protocolo-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vhacker-chevron {
    color: #00d4ff;
    font-size: 1.8rem;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

.vhacker-label {
    color: #00d4ff;
    font-weight: 700;
}

.vhacker-protocolo-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.vhacker-rombos {
    display: flex;
    gap: 40px;
    margin-top: 10px;
    margin-left: 0;
    position: relative;
    align-items: center;
}

.vhacker-rombos::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    right: 25px;
    height: 2px;
    background: #00d4ff;
    z-index: 0;
}

.vhacker-rombo {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #1e4d8c 0%, #3a9bbf 60%, #7ecfdf 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    position: relative;
    z-index: 1;
    border: none;
}

.vhacker-rombo:nth-child(2) {
    background: linear-gradient(135deg, #3a9bbf 0%, #7ecfdf 50%, #3a9bbf 100%);
}

.vhacker-rombo:nth-child(3) {
    background: linear-gradient(to left, #1e4d8c 0%, #3a9bbf 60%, #7ecfdf 100%);
}

.vhacker-rombo span {
    transform: rotate(-45deg);
    display: block;
}

/* Texto redondeado */
.vhacker-texto-redondeado {
    position: relative;
    z-index: 1;
}

.vhacker-texto-curvo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    padding: 20px 25px;
    border: 2px solid #00d4ff;
    border-radius: 30px;
    background: rgba(26, 31, 46, 0.6);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15), 0 0 15px rgba(0, 212, 255, 0.4);
}




/* ============================================
   V-HACKER — BENEFICIOS
   ============================================ */
.vhacker-beneficios-section {
    background: #1a1f2e;
    padding: 80px 0;
    position: relative;
}

.vhacker-beneficios-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vhacker-beneficios-header {
    margin-bottom: 40px;
}

.vhacker-beneficios-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.vhacker-beneficios-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.15em;
}

.vhacker-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vhacker-accordion-item {
    border: 1.5px solid #00d4ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.35), 0 0 25px rgba(0, 212, 255, 0.4);
}

.vhacker-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.vhacker-accordion-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d4ff;
    letter-spacing: 0.1em;
}

.vhacker-accordion-icon {
    width: 32px;
    height: 32px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.vhacker-accordion-icon::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #00d4ff;
    border-bottom: 2px solid #00d4ff;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
}

.vhacker-accordion-icon.open::before {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.vhacker-accordion-body {
    padding: 0 30px 25px;
}

.vhacker-accordion-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #cccccc;
}

.vhacker-accordion-body strong {
    color: #ffffff;
    font-weight: 700;
}

.vhacker-beneficios-detalle {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.vhacker-beneficios-detalle-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    opacity: 0.25;
}

/* ============================================
   V-HACKER — RESULTADOS
   ============================================ */
.vhacker-resultados-section {
    background: #1a1f2e;
    padding: 80px 0;
}

.vhacker-resultados-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vhacker-resultados-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 50px;
}

.vhacker-resultados-titulo strong {
    font-weight: 700;
    font-style: italic;
}

.vhacker-resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.vhacker-resultado-par {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vhacker-resultado-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
}

.vhacker-resultado-labels {
    display: flex;
    justify-content: space-around;
}

.vhacker-resultado-labels span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #aaaaaa;
    letter-spacing: 0.15em;
}

/* ============================================
   V-HACKER — FAQ
   ============================================ */
.vhacker-faq-section {
    background: #1a1f2e;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vhacker-faq-detalle {
    position: absolute;
    top: 0;
    right: -5%;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 0;
}

.vhacker-faq-detalle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    opacity: 0.2;
}

.vhacker-faq-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto 0 15%;
    padding: 0 60px;
}

.vhacker-faq-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 35px;
}

.vhacker-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
}

.vhacker-faq-item {
    border-radius: 30px;
    overflow: hidden;
    border: 1.5px solid #00d4ff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.35), 0 0 25px rgba(0, 212, 255, 0.4);
}

.vhacker-faq-item.active .vhacker-faq-header {
    background: linear-gradient(90deg, #0056ff, #00d4ff);
}

.vhacker-faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.vhacker-faq-header span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    letter-spacing: 0.05em;
}

.vhacker-faq-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.vhacker-faq-icon::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #00d4ff;
    border-bottom: 2px solid #00d4ff;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
}

.vhacker-faq-icon.open::before {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.vhacker-faq-item.active .vhacker-faq-icon {
    border-color: #ffffff;
}

.vhacker-faq-item.active .vhacker-faq-icon::before {
    border-color: #ffffff;
}

.vhacker-faq-body {
    padding: 15px 25px 20px;
    background: #ffffff;
}

.vhacker-faq-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #1a1f2e;
    margin: 0;
}





/* ============================================
   V-TECH — NAVBAR
   ============================================ */
.vtech-navbar.stylage-navbar.navbar-transparent .nav-link {
    color: #ffffff !important;
}

.vtech-navbar.stylage-navbar.navbar-transparent.scrolled .nav-link {
    color: var(--color-dark) !important;
}

.vtech-navbar.stylage-navbar.navbar-transparent .nav-link:hover {
    color: #aaaaaa !important;
}

.vtech-navbar.stylage-navbar.navbar-transparent.scrolled .nav-link:hover {
    color: var(--color-dark) !important;
    opacity: 0.7;
}

.vtech-navbar.stylage-navbar.navbar-transparent .logo-me,
.vtech-navbar.stylage-navbar.navbar-transparent .logo-medicina {
    color: #ffffff;
}

.vtech-navbar.stylage-navbar.navbar-transparent.scrolled .logo-me,
.vtech-navbar.stylage-navbar.navbar-transparent.scrolled .logo-medicina {
    color: var(--color-dark);
}

/* ============================================
   V-HACKER — NAVBAR
   ============================================ */
.vhacker-navbar.stylage-navbar.navbar-transparent .nav-link {
    color: #ffffff !important;
}

.vhacker-navbar.stylage-navbar.navbar-transparent.scrolled .nav-link {
    color: var(--color-dark) !important;
}

.vhacker-navbar.stylage-navbar.navbar-transparent .nav-link:hover {
    color: #aaaaaa !important;
}

.vhacker-navbar.stylage-navbar.navbar-transparent.scrolled .nav-link:hover {
    color: var(--color-dark) !important;
    opacity: 0.7;
}

.vhacker-navbar.stylage-navbar.navbar-transparent .logo-me,
.vhacker-navbar.stylage-navbar.navbar-transparent .logo-medicina {
    color: #ffffff;
}

.vhacker-navbar.stylage-navbar.navbar-transparent.scrolled .logo-me,
.vhacker-navbar.stylage-navbar.navbar-transparent.scrolled .logo-medicina {
    color: var(--color-dark);
}

/* ============================================
   V-TECH — HERO
   ============================================ */
.vtech-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 60%, #111 100%);
    min-height: 55vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 90px 80px 0;
}

.vtech-v-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
}

.vtech-v-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.vtech-hero-logo {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.vtech-hero-logo-img {
    width: 260px;
    filter: invert(1) brightness(2);
}

.vtech-hero-product {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    z-index: 2;
}

.vtech-hero-product-img {
    max-height: 320px;
    width: auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
    transform: rotate(18deg);
}

/* ============================================
   V-TECH — PRODUCTOS + COMPARATIVA
   ============================================ */
.vtech-productos-section {
    background: #ffffff;
    padding: 80px 0 100px;
}

.vtech-productos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cards productos */
.vtech-productos-section .row.justify-content-center {
    align-items: stretch;
}

.vtech-productos-section .col-md-5 {
    display: flex;
    align-items: stretch;
}

.vtech-producto-card {
    position: relative;
    border: none;
    border-radius: 100px 0 100px 100px;
    padding: 150px 32px 20px;
    background: #fff;
    overflow: visible;
    margin-top: 60px;
    width: 100%;
}

.vtech-producto-card--right {
    padding-bottom: 40px;
}

.vtech-producto-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 4px;
    background: linear-gradient(135deg, #DAA520, #D4AF37, #F0E68C, #D4AF37, #DAA520);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.vtech-producto-card--right {
    border-radius: 0 100px 0 0;
}

.vtech-producto-num {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 16rem;
    font-weight: 800;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(to bottom, #DAA520 0%, #F0E68C 50%, rgba(218, 165, 32, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vtech-producto-img-top {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
}

.vtech-producto-img-top img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.vtech-producto-body {
    position: relative;
    z-index: 2;
}

.vtech-producto-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
}

.vtech-card-hr {
    border: none;
    border-top: 1px solid #DAA520;
    margin: 12px 0;
}

/* Tabla comparativa */
.vtech-comparativa {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.vtech-comp-col {
    background: #f5f5f5;
    border-radius: 30px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}


.vtech-comp-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 10px 16px;
    border: 2px solid #DAA520;
    border-radius: 0;
    display: table;
    width: auto;
    margin: 0 auto;
}

.vtech-comp-col:nth-child(1) .vtech-comp-titulo {
    border-radius: 20px 0 0 0;
}

.vtech-comp-col:nth-child(2) .vtech-comp-titulo {
    border-radius: 0 20px 0 0;
}

.vtech-comp-col:nth-child(3) .vtech-comp-titulo {
    border-radius: 0 0 0 20px;
}

.vtech-comp-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.vtech-comp-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    text-transform: uppercase;
}

.vtech-comp-row p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* ============================================
   V-TECH — CASOS DE ÉXITO
   ============================================ */
.vtech-casos-section {
    background: #ffffff;
    padding: 80px 0 100px;
}

.vtech-casos-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.vtech-casos-titulo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #DAA520;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.vtech-casos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.vtech-caso-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vtech-caso-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 100px 0 0 0;
    border: none;
    width: 100%;
}

.vtech-caso-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.vtech-caso-wrap--despues {
    border-radius: 0 0 100px 0;
}

.vtech-caso-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(135deg, #DAA520, #D4AF37, #F0E68C, #D4AF37, #DAA520);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.vtech-caso-label {
    position: absolute;
    top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-transform: uppercase;
    background: linear-gradient(to right, #DAA520, #D4AF37, #F0E68C, #D4AF37, #DAA520);
    padding: 4px 10px;
    z-index: 3;
}

.vtech-caso-label--antes {
    right: 8px;
}

.vtech-caso-label--despues {
    left: 8px;
}

.vtech-caso-badge {
    position: absolute;
    top: 10px;
    background: #DAA520;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    padding: 3px 8px;
}

.vtech-caso-antes {
    left: 8px;
}

.vtech-caso-despues {
    left: calc(50% + 8px);
}

/* ============================================
   V-TECH — PROTOCOLO DE APLICACIÓN
   ============================================ */
.vtech-protocolo-section {
    background: #ffffff;
    padding: 70px 0 90px;
}

.vtech-protocolo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.vtech-protocolo-titulo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    background: linear-gradient(to right, #DAA520 0%, #D4AF37 25%, #F0E68C 50%, #D4AF37 75%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.vtech-protocolo-boxes {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.vtech-protocolo-box {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.vtech-protocolo-box:first-child {
    flex: 1.2;
}

.vtech-protocolo-box:last-child {
    flex: 1;
    align-items: center;
    justify-content: center;
}

.vtech-protocolo-fase {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.vtech-fase-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to bottom, #DAA520 0%, #D4AF37 25%, #F0E68C 50%, #D4AF37 75%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vtech-fase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 4px;
}

.vtech-fase-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.vtech-fase-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    align-self: center;
}

.vtech-protocolo-desc-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: #444444;
    margin: 0;
}

/* ============================================
   V-TECH — EXOSOMAS SINTÉTICOS
   ============================================ */
.vtech-sinteticos-section {
    background: #ffffff;
    padding: 80px 0;
}

.vtech-sinteticos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.vtech-sinteticos-header {
    text-align: center;
    margin-bottom: 50px;
}

.vtech-sinteticos-titulo {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    background: linear-gradient(to right, #DAA520, #D4AF37, #F0E68C, #D4AF37, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    display: block;
}

.vtech-sinteticos-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #333333;
    letter-spacing: 0.05em;
}

.vtech-sinteticos-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vtech-sinteticos-texto p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: #333333;
    margin: 0;
}

.vtech-sinteticos-card {
    background: #f2f2f2;
    border-radius: 40px;
    padding: 30px 35px;
}

.vtech-sinteticos-card-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444444;
    margin-bottom: 18px;
}

.vtech-sinteticos-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vtech-sinteticos-lista li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333333;
    padding-left: 20px;
    position: relative;
}

.vtech-sinteticos-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #F0E68C 0%, #DAA520 50%, #D4AF37 100%);
    box-shadow: 0 0 4px rgba(218, 165, 32, 0.8);
}

/* ============================================
   V-TECH — EXOSOMAS
   ============================================ */
.vtech-exosomas-section {
    background: #ffffff;
    padding: 80px 0;
}

.vtech-exosomas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.vtech-exosomas-titulo {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 35px;
    background: linear-gradient(to right, #DAA520, #D4AF37, #F0E68C, #D4AF37, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    display: block;
}

.vtech-exosomas-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333333;
    margin: 0;
}

.vtech-exosomas-texto strong {
    font-weight: 700;
    color: #1a1a1a;
}