* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Outfit';
    src: url('assets/fonts/Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sklow';
    src: url('assets/fonts/Sklow.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sklow Light';
    src: url('assets/fonts/Sklow-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --header-offset: 100px;
    --cosmetec-turquoise: #2c9199;
    --cosmetec-preload-bg: #00B7BE;
    --menu-border: rgba(255, 255, 255, 0.35);
}

body.is-loading {
    overflow: hidden;
}

.page-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cosmetec-preload-bg);
    z-index: 20000;
    transform: translateY(0);
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1), visibility 0s linear 0.9s;
    will-change: transform;
}

.page-preloader.is-hidden {
    transform: translateY(-100%);
    visibility: hidden;
}

.page-preloader__logo {
    width: clamp(180px, 22vw, 320px);
    max-width: 72vw;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.page-preloader.is-hidden .page-preloader__logo {
    transform: translateY(-18px) scale(0.94);
    opacity: 0;
}

/* Header y navegación */
.header {
    background-color: var(--cosmetec-turquoise);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}
.nav-container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 40px;
    background-color: var(--cosmetec-turquoise);
    border-radius: 53px;
    transition: all 0.3s ease;
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.logo img {
    height: 30px;
    width: auto;
    margin-right: 10px;
}
body {
    font-family: 'Outfit', 'Montserrat-Variable', sans-serif;
    line-height: 1.6;
    font-weight: bold;
    overflow-x: hidden;
    padding-top: var(--header-offset); /* Espacio exacto para el header fijo */
}

img {
    width: auto;
    height: auto;
    display: flex;
    z-index: inherit;
}

/* Navegación principal */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    margin-right: 18px;
}

.hamburger {
    display: none;
}
.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-link--button {
    appearance: none;
}

.nav-item--has-submenu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    width: min(980px, calc(100vw - 80px));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: flex;
    min-height: 180px;
    border: 1px solid var(--menu-border);
    background-color: var(--cosmetec-turquoise);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.mega-menu-categories {
    width: 240px;
    border-right: 1px solid var(--menu-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 16px 10px;
}

.mega-category {
    border: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.08;
    padding: 8px 12px;
    cursor: pointer;
    opacity: 0.88;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-category:hover,
.mega-category.is-active {
    opacity: 1;
    transform: translateX(4px);
}

.mega-menu-products {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
}

.product-card {
    width: 170px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e9fcfd;
    text-align: center;
    padding: 10px 16px;
}

.product-card.with-divider {
    border-right: 1px solid var(--menu-border);
}

.product-card--link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card--link:hover {
    opacity: 0.82;
    transform: translateY(-3px);
}

.product-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.2));
}

.product-name {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .mega-menu {
        width: min(95vw, 680px);
        right: -130px;
    }

    .mega-category {
        font-size: 22px;
    }

    .product-card {
        width: 138px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 14px;
    }

    .nav-container {
        position: relative;
        padding: 0 18px;
        height: 56px;
        border-radius: 28px;
    }

    .logo img {
        height: 26px;
        margin-right: 0;
    }

    .hamburger {
        display: inline-flex;
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: #ffffff;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 12px 18px 18px;
        background: var(--cosmetec-turquoise);
        border-radius: 28px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        font-size: 20px;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
        transform: none;
    }

    .mega-menu {
        position: static;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 4px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .mega-menu.is-open {
        display: block;
    }

    .mega-menu-inner {
        display: block;
        min-height: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: none;
    }

    .mega-menu-categories {
        width: 100%;
        border-right: 0;
        padding: 0;
    }

    .mega-category {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        font-size: 18px;
        opacity: 1;
    }

    .mega-category:hover,
    .mega-category.is-active {
        transform: none;
    }

    .mega-category::after {
        content: '+';
        font-size: 24px;
        font-weight: 300;
        line-height: 1;
    }

    .mega-category.is-active::after {
        content: '-';
    }

    .mega-menu-products {
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        background: rgba(255, 255, 255, 0.02);
    }

    .mega-menu-products.is-open {
        display: flex;
    }

    .product-card {
        width: 100%;
        min-height: 0;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 18px;
        border-top: 1px solid var(--menu-border);
    }

    .product-card.with-divider {
        border-right: 0;
    }

    .product-card--link:hover {
        opacity: 1;
        transform: none;
    }

    .product-image {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .product-name {
        font-size: 16px;
        font-weight: 700;
        text-align: left;
    }
}
/* Banner Principal pages */

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-banner--home .hero-background {
    min-height: 520px;
}

.hero-banner--home .hero-bg-img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.home-hero-copy {
    position: absolute;
    top: 50%;
    left: clamp(28px, 8vw, 78px);
    transform: translateY(-50%);
    z-index: 2;
}

.home-hero-title {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
}

.home-hero-text {
    margin: 0;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.25;
    color: #ffffff;
}

.about-banner-section {
    position: relative;
    width: 100%;
    height: 412px;
    margin-top: 36px;
    overflow: hidden;
}

.about-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-banner-copy {
    position: absolute;
    top: 50%;
    left: clamp(24px, 6vw, 78px);
    transform: translateY(-50%);
    width: min(760px, 62vw);
    z-index: 2;
}

.about-banner-text {
    margin: 0 0 20px;
    font-family: 'Sklow', 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.25;
    color: #00B7BE;
    font-weight: 400;
}

.about-banner-text:last-child {
    margin-bottom: 0;
}

.about-banner-text strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.about-banner-text--lead {
    margin-bottom: 26px;
}

.care-section {
    width: 100%;
    padding: 62px 24px 72px;
}

.care-section-inner {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}

.care-title {
    margin: 0 0 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    color: #00B7BE;
}

.care-subtitle {
    margin: 0 auto 42px;
    max-width: 720px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 300;
    color: #202020;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.care-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.care-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.care-item-title {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: #00B7BE;
}

.body-lines-section {
    width: 100%;
    background: #ffffff;
    padding: 56px 0 0;
}

.body-lines-intro {
    max-width: 920px;
    margin: 0 auto 18px;
    padding: 0 24px;
    text-align: center;
}

.body-lines-title {
    margin: 0 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 700;
    color: #00B7BE;
}

.body-lines-description {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 300;
    color: #2a2a2a;
}

.body-lines-showcase {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: clamp(18px, 2.2vw, 34px);
    align-items: center;
    padding: 34px clamp(22px, 4.5vw, 42px);
    background: linear-gradient(120deg, #07b3bd 0%, #0ebfc8 52%, #1ac8cf 100%);
    overflow: hidden;
}

.body-lines-showcase--corporal {
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.body-lines-left,
.body-lines-right {
    color: #ffffff;
    z-index: 1;
}

.body-lines-showcase-title {
    margin: 0 0 22px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.92;
    font-weight: 800;
}

.body-lines-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(10, 122, 127, 0.38);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.body-lines-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 16px;
    line-height: 1.15;
    max-width: 160px;
}

.body-lines-benefit-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.body-lines-products {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    width: 100%;
    min-height: 320px;
}

.body-lines-products--single {
    align-items: center;
}

.body-lines-product {
    position: relative;
    display: block;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.22));
}

.body-lines-product--combo {
    width: min(500px, 52vw);
    max-width: 100%;
    transform: translateY(8px);
}

.body-lines-product--crema {
    width: min(200px, 24vw);
    transform: rotate(10deg) translateY(10px);
    z-index: 2;
}

.body-lines-showcase--corporal .body-lines-product--crema {
    width: min(215px, 28vw);
    margin-right: -76px;
    transform: translateY(18px);
    z-index: 3;
}

.body-lines-product--jabon {
    width: min(205px, 26vw);
    transform: rotate(8deg);
}

.body-lines-product--duo {
    width: min(360px, 42vw);
    max-width: 100%;
    transform: translateX(-8px);
}

.body-lines-showcase--corporal .body-lines-product--duo {
    width: min(430px, 47vw);
    margin-left: -18px;
    transform: translateY(2px);
    z-index: 1;
}

.body-lines-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.body-lines-card h4 {
    margin: 0 0 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
}

.body-lines-card p {
    margin: 0;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
}

.body-lines-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #00AEB8;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    margin-top: 12px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.body-lines-bar:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.hero-banner--contact .hero-background {
    min-height: 540px;
}

.hero-banner--contact .hero-bg-img {
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: center;
}

.contact-hero-copy {
    position: absolute;
    top: 50%;
    left: clamp(24px, 6vw, 86px);
    transform: translateY(-50%);
    width: min(860px, 58vw);
    max-width: min(860px, 58vw);
    padding: clamp(20px, 2.5vw, 32px);
    backdrop-filter: blur(3px);
    z-index: 2;
}

.contact-hero-title {
    margin: 0 0 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #00B7BE;
}

.contact-hero-text {
    margin: 0;
    max-width: 780px;
    font-family: 'Sklow', 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
}

.contact-form-section {
    width: 100%;
    background: #ffffff;
    padding: 54px 0 86px;
}

.contact-form-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 52px;
}

.contact-form-title {
    margin: 0 0 54px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1;
    font-weight: 700;
    color: #00B7BE;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 56px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-label {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #00B7BE;
}

.contact-input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #7f7f7f;
    background: transparent;
    padding: 0 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #202020;
    outline: none;
}

.contact-input:focus {
    border-bottom-color: #00B7BE;
}

.contact-input--textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 0;
}

.contact-submit {
    align-self: flex-start;
    min-width: 104px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #3fc9d3 0%, #20b5c6 100%);
    color: #ffffff;
    padding: 14px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

@media (max-width: 900px) {
    .hero-banner--home .hero-background,
    .hero-banner--home .hero-bg-img {
        min-height: 420px;
    }

    .home-hero-title {
        font-size: 40px;
    }

    .home-hero-text {
        font-size: 21px;
    }

    .about-banner-section {
        height: 320px;
        margin-top: 28px;
    }

    .about-banner-copy {
        width: min(86vw, 620px);
    }

    .about-banner-text {
        font-size: 19px;
        line-height: 1.2;
    }

    .care-section {
        padding: 52px 20px 58px;
    }

    .care-title {
        font-size: 42px;
    }

    .care-subtitle {
        font-size: 18px;
        margin-bottom: 34px;
    }

    .care-grid {
        gap: 24px;
    }

    .care-item-title {
        font-size: 20px;
    }

    .body-lines-section {
        padding-top: 46px;
    }

    .body-lines-title {
        font-size: 40px;
    }

    .body-lines-description {
        font-size: 18px;
    }

    .body-lines-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px 36px;
    }

    .body-lines-left,
    .body-lines-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .body-lines-benefit {
        justify-content: center;
        max-width: none;
    }

    .body-lines-right {
        gap: 18px;
    }

    .body-lines-product--combo {
        width: min(390px, 68vw);
        transform: none;
    }

    .hero-banner--contact .hero-background,
    .hero-banner--contact .hero-bg-img {
        min-height: 460px;
    }

    .contact-hero-copy {
        width: min(88vw, 640px);
        max-width: min(88vw, 640px);
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-hero-text {
        font-size: 19px;
    }

    .contact-form-container {
        padding: 0 28px;
    }

    .contact-form-grid {
        gap: 32px 34px;
    }

    .contact-label {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .hero-banner--home .hero-background {
        min-height: 0;
        display: flex;
        align-items: stretch;
    }

    .hero-banner--home .hero-bg-img {
        min-height: 0;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .home-hero-copy {
        top: 46%;
        left: 16px;
        right: 16px;
    }

    .home-hero-title {
        font-size: 32px;
    }

    .home-hero-text {
        font-size: 18px;
    }

    .about-banner-section {
        height: auto;
        min-height: 0;
        margin-top: 22px;
        padding: 28px 16px;
        background: #ffffff;
    }

    .about-banner-image {
        display: none;
    }

    .about-banner-copy {
        position: static;
        top: auto;
        left: 16px;
        right: 16px;
        width: auto;
        transform: none;
    }

    .about-banner-text {
        font-size: 15px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .care-section {
        padding: 40px 16px 46px;
    }

    .care-title {
        font-size: 32px;
    }

    .care-subtitle {
        font-size: 16px;
        line-height: 1.35;
        margin-bottom: 28px;
    }

    .care-subtitle br {
        display: none;
    }

    .care-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .care-icon {
        width: 64px;
        height: 64px;
    }

    .care-item-title {
        font-size: 18px;
    }

    .body-lines-section {
        padding-top: 38px;
    }

    .body-lines-intro {
        padding: 0 16px;
    }

    .body-lines-title {
        font-size: 32px;
    }

    .body-lines-description {
        font-size: 16px;
        line-height: 1.35;
    }

    .body-lines-showcase {
        padding: 24px 16px 28px;
    }

    .body-lines-showcase-title {
        font-size: 32px;
    }

    .body-lines-products {
        gap: 8px;
    }

    .body-lines-product--combo {
        width: min(290px, 84vw);
        transform: none;
    }

    .body-lines-card h4 {
        font-size: 20px;
    }

    .body-lines-card p {
        font-size: 16px;
    }

    .hero-banner--contact .hero-background {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-banner--contact .hero-bg-img {
        min-height: 0;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .contact-hero-copy {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: auto;
        max-width: none;
        padding: 18px 16px 0;
        background: #ffffff;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-text {
        font-size: 16px;
        line-height: 1.4;
    }

    .contact-form-section {
        padding: 40px 0 54px;
    }

    .contact-form-container {
        padding: 0 16px;
    }

    .contact-form-title {
        font-size: 34px;
        margin-bottom: 34px;
    }

    .contact-form {
        gap: 28px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-field {
        gap: 16px;
    }

    .contact-label {
        font-size: 18px;
    }

    .contact-input {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .contact-input--textarea {
        min-height: 110px;
    }

    .contact-submit {
        align-self: flex-start;
        font-size: 16px;
        padding: 12px 22px;
    }
}

.ingredients-tabs-section {
    width: 100%;
    background:
        radial-gradient(circle at top left, rgba(0, 183, 190, 0.08) 0, rgba(0, 183, 190, 0) 26%),
        linear-gradient(180deg, #ffffff 0%, #f4f8f8 100%);
    padding: 68px 0 82px;
}

.ingredients-tabs-shell {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

.ingredients-tabs-intro {
    max-width: 760px;
    margin-bottom: 42px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(15, 94, 100, 0.12);
}

.ingredients-tabs-kicker {
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f5e64;
}

.ingredients-tabs-title {
    margin: 0 0 16px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    font-weight: 700;
    color: #00B7BE;
}

.ingredients-tabs-copy {
    margin: 0;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 21px;
    line-height: 1.34;
    font-weight: 300;
    color: #314446;
}

.ingredients-tabs-layout {
    display: grid;
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    gap: clamp(34px, 4.4vw, 74px);
    align-items: start;
}

.ingredients-tabs-list {
    margin: 0;
    padding: 8px 0 8px 30px;
}

.ingredients-tabs-item {
    margin-bottom: 14px;
    color: #0f5e64;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.ingredients-tabs-item::marker {
    font-weight: 700;
}

.ingredients-tab-button {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #184e53;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ingredients-tab-button:hover,
.ingredients-tab-button:focus-visible {
    background: transparent;
    color: #29BFC5;
    transform: translateX(3px);
    outline: none;
}

.ingredients-tab-button.is-active {
    background: transparent;
    color: #29BFC5;
    box-shadow: none;
}

.ingredients-tabs-panels {
    min-width: 0;
}

.ingredient-detail-panel {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    border: 1px solid rgba(15, 94, 100, 0.12);
    border-radius: 30px;
    padding: clamp(28px, 3vw, 42px);
    box-shadow: 0 24px 46px rgba(20, 74, 78, 0.1);
    overflow: hidden;
}

.ingredient-detail-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #29BFC5 0%, #00B7BE 100%);
}

.ingredient-detail-eyebrow {
    margin: 0 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #29BFC5;
}

.ingredient-detail-title {
    margin: 0 0 20px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 700;
    color: #29BFC5;
}

.ingredient-detail-text {
    margin: 0 0 16px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    font-weight: 300;
    color: #304244;
}

.ingredient-detail-text--lead {
    margin-bottom: 24px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(15, 94, 100, 0.1);
}

.ingredient-detail-section-title {
    margin: 26px 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #00B7BE;
}

.ingredient-detail-text:last-of-type {
    margin-bottom: 20px;
}

.ingredient-detail-list {
    margin: 0;
    padding-left: 22px;
}

.ingredient-detail-list li {
    margin-bottom: 11px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 17px;
    line-height: 1.42;
    font-weight: 500;
    color: #284447;
}

.ingredient-detail-list li::marker {
    color: #00B7BE;
}

.ingredient-detail-list--skin-types {
    margin-top: 0;
}

.skin-tips-hero {
    width: 100%;
    padding: 0;
    background: #ffffff;
}

.skin-tips-hero-shell {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    height: clamp(430px, 39vw, 650px);
    position: relative;
    display: grid;
    grid-template-columns: 61.5% 38.5%;
    overflow: hidden;
    box-shadow: none;
}

.skin-tips-hero-media {
    position: relative;
    height: 100%;
    z-index: 1;
}

.skin-tips-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.skin-tips-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    display: block;
}

.skin-tips-hero-accent {
    grid-column: 2;
    background: #2bbcc3;
}

.skin-tips-active-card {
    position: absolute;
    top: clamp(56px, 5vw, 96px);
    right: clamp(42px, 5vw, 94px);
    width: min(470px, 33vw);
    background: #f5f5f5;
    padding: clamp(26px, 2.4vw, 36px);
    box-shadow: 0 22px 40px rgba(11, 61, 66, 0.2);
    z-index: 3;
    animation: skinTipsCardReveal 700ms ease forwards;
}

.skin-tips-active-title {
    margin: 0 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 2.9vw, 56px);
    line-height: 0.93;
    font-weight: 700;
    color: #00B7BE;
}

.skin-tips-active-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding-bottom: 11px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(0, 183, 190, 0.4);
}

.skin-tips-active-meta span {
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.1;
    font-weight: 300;
    color: #2b3d3f;
}

.skin-tips-active-text {
    margin: 0;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: clamp(24px, 1.55vw, 30px);
    line-height: 1.18;
    font-weight: 300;
    color: #2f3f42;
}

.skin-tips-active-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    border-radius: 999px;
    background: #26bdc6;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    padding: 14px 26px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.skin-tips-active-link:hover {
    transform: translateY(-2px);
    opacity: 0.94;
}

@keyframes skinTipsCardReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .skin-tips-hero-shell {
        height: 520px;
        grid-template-columns: 59% 41%;
    }

    .skin-tips-hero-image {
        height: 100%;
    }

    .skin-tips-active-card {
        width: min(430px, 39vw);
        right: clamp(24px, 3.2vw, 36px);
        top: clamp(44px, 6vw, 72px);
    }

    .skin-tips-active-title {
        font-size: clamp(32px, 4.2vw, 46px);
    }

    .skin-tips-active-text {
        font-size: clamp(18px, 2.2vw, 24px);
    }

    .skin-tips-active-link {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .skin-tips-hero {
        padding: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f2f5f5 100%);
    }

    .skin-tips-hero-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        overflow: visible;
        box-shadow: none;
    }

    .skin-tips-hero-media {
        min-height: 320px;
    }

    .skin-tips-hero-image {
        min-height: 320px;
        object-position: center 42%;
    }

    .skin-tips-hero-accent {
        height: 200px;
        grid-column: auto;
    }

    .skin-tips-active-card {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 32px);
        margin: -154px auto 0;
        padding: 22px 20px;
        box-shadow: 0 14px 30px rgba(10, 58, 62, 0.18);
    }

    .skin-tips-active-title {
        font-size: 40px;
        line-height: 0.95;
    }

    .skin-tips-active-meta span {
        font-size: 15px;
    }

    .skin-tips-active-text {
        font-size: 22px;
        line-height: 1.2;
    }

    .skin-tips-active-link {
        font-size: 24px;
        padding: 12px 24px;
    }
}

@media (max-width: 520px) {
    .skin-tips-hero-media,
    .skin-tips-hero-image {
        min-height: 280px;
    }

    .skin-tips-active-card {
        margin-top: -136px;
    }

    .skin-tips-active-title {
        font-size: 32px;
    }

    .skin-tips-active-text {
        font-size: 18px;
    }

    .skin-tips-active-link {
        font-size: 19px;
    }
}

.skin-tips-recent {
    width: 100%;
    background: #ffffff;
    padding: 38px 0 70px;
}

.skin-tips-recent-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.skin-tips-recent-title {
    margin: 0 0 22px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    font-weight: 700;
    color: #00B7BE;
}

.skin-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.skin-tip-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #a8a8a8;
    padding: 0 0 12px;
}

.skin-tip-card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.skin-tip-card-title {
    margin: 0;
    padding: 8px 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    background: #20bec6;
}

.skin-tip-card-meta {
    margin: 10px 12px 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 183, 190, 0.45);
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.skin-tip-card-meta span {
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 14px;
    line-height: 1.1;
    color: #1f2c2e;
}

.skin-tip-card-text {
    margin: 0 12px 12px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: #223032;
}

.skin-tip-card-link {
    margin: auto 12px 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 98px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #20bec6;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.skin-tip-card-link:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

@media (max-width: 1024px) {
    .skin-tips-recent {
        padding: 34px 0 56px;
    }

    .skin-tips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .skin-tips-recent {
        padding: 28px 0 42px;
    }

    .skin-tips-recent-shell {
        padding: 0 12px;
    }

    .skin-tips-recent-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .skin-tips-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .skin-tip-card-image {
        height: 210px;
    }

    .skin-tip-card-title {
        font-size: 16px;
    }

    .skin-tip-card-link {
        font-size: 16px;
    }
}

.skin-tip-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 34, 37, 0.62);
    z-index: 12500;
}

.skin-tip-modal.is-open {
    display: flex;
}

.skin-tip-modal-content {
    width: min(940px, 92vw);
    max-height: 88vh;
    overflow: hidden;
    background: #f7f7f7;
    display: grid;
    grid-template-columns: 46% 54%;
    border-radius: 14px;
    box-shadow: 0 24px 46px rgba(7, 38, 42, 0.28);
    position: relative;
}

.skin-tip-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #109ca4;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.skin-tip-modal-media {
    min-height: 100%;
    overflow: hidden;
}

.skin-tip-modal-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 88vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.skin-tip-modal-body {
    padding: 34px 30px 28px;
    overflow-y: auto;
    max-height: 88vh;
}

.skin-tip-modal-title {
    margin: 0 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 0.95;
    font-weight: 700;
    color: #00B7BE;
}

.skin-tip-modal-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 183, 190, 0.35);
    margin-bottom: 14px;
    padding-bottom: 10px;
}

.skin-tip-modal-meta span {
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 16px;
    line-height: 1.1;
    color: #2d3d3f;
}

.skin-tip-modal-text {
    margin: 0;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 16px;
    line-height: 1.38;
    color: #2a3a3d;
}

.skin-tip-modal-text h4 {
    margin: 16px 0 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
    color: #00B7BE;
}

.skin-tip-modal-text p {
    margin: 0 0 10px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 16px;
    line-height: 1.38;
    color: #2a3a3d;
}

.skin-tip-modal-text p:last-child {
    margin-bottom: 0;
}

.skin-tip-modal-text ul,
.skin-tip-modal-text ol {
    margin: 0 0 10px;
    padding-left: 22px;
}

.skin-tip-modal-text li {
    margin-bottom: 6px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 15px;
    line-height: 1.38;
    color: #2a3a3d;
}

.skin-tip-modal-text li::marker {
    color: #00B7BE;
}

.skin-tip-modal-text strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #22bbc4;
}

.skin-tip-modal-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    padding: 13px 24px;
    border-radius: 999px;
    background: #22bbc4;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.skin-tip-modal-link:hover {
    opacity: 0.92;
}

@media (max-width: 768px) {
    .skin-tip-modal {
        padding: 14px;
    }

    .skin-tip-modal-content {
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .skin-tip-modal-image {
        min-height: 220px;
        max-height: 280px;
    }

    .skin-tip-modal-body {
        padding: 22px 18px 20px;
    }

    .skin-tip-modal-title {
        font-size: 36px;
    }

    .skin-tip-modal-text {
        font-size: 20px;
    }

    .skin-tip-modal-link {
        font-size: 18px;
    }
}

.partners-section {
    width: 100%;
    padding: 54px 0 62px;
    background: #ffffff;
}

.partners-shell {
    width: min(1080px, 92vw);
    margin: 0 auto;
}

.partners-title {
    margin: 0 0 22px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.03;
    font-weight: 700;
    color: #00B7BE;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(36px, 7vw, 140px);
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    min-width: min(42vw, 420px);
    border-radius: 0;
    text-decoration: none;
    padding: 18px 26px;
    background: transparent;
    box-shadow: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
    opacity: 0.8;
}

.partner-card--amazon {
    background: transparent;
}

.partner-card--ml {
    background: transparent;
}

.partner-label {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1;
    font-weight: 800;
}

.partner-logo {
    display: block;
    width: min(100%, 460px);
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.partner-logo--amazon {
    width: min(100%, 300px);
}

.partner-logo--ml {
    width: min(100%, 320px);
}

.partner-cta {
    margin-top: 10px;
    font-family: 'Sklow', 'Outfit', sans-serif;
    font-size: clamp(17px, 2vw, 24px);
    line-height: 1.12;
    font-weight: 400;
    opacity: 0.96;
}

@media (max-width: 640px) {
    .partners-section {
        padding: 38px 0 42px;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-card {
        min-height: 110px;
        min-width: 100%;
        border-radius: 0;
        padding: 14px 18px;
    }

    .partner-logo {
        width: min(92%, 360px);
    }

    .partner-logo--amazon {
        width: min(90%, 300px);
    }

    .partner-logo--ml {
        width: min(90%, 320px);
    }
}

.online-store-section {
    width: 100%;
    background: #ffffff;
    padding: 6px 0 64px;
}

.online-store-shell {
    width: min(1080px, 92vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.online-store-title {
    margin: 0 0 20px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.04;
    font-weight: 700;
    color: #00B7BE;
}

.online-store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(90vw, 680px);
    padding: 14px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: none;
    text-decoration: none;
    box-shadow: none;
    opacity: 0;
    transform: translateY(14px);
    animation: onlineStoreReveal 650ms ease-out 90ms forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.online-store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 121, 127, 0.16);
}

.online-store-logo {
    display: block;
    width: min(86vw, 560px);
    height: auto;
    object-fit: contain;
}

@keyframes onlineStoreReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .online-store-section {
        padding: 2px 0 44px;
    }

    .online-store-title {
        margin-bottom: 14px;
    }

    .online-store-button {
        width: min(94vw, 560px);
        padding: 12px 12px;
    }

    .online-store-logo {
        width: min(90vw, 430px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .online-store-button {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ======= MAIN FOOTER ======= */
.main-footer {
    background: #00B7BE;
    color: white;
    padding: 60px 0 40px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.main-footer,
.main-footer a,
.main-footer p,
.main-footer li,
.main-footer span {
    font-family: 'Outfit', sans-serif;
    font-synthesis: none;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Columna izquierda - Enlaces */
.footer-links .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links .footer-menu li {
    margin: 8px 0;
}

.footer-links .footer-menu li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.08;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}
/* Columna central - Políticas y Redes */
.footer-center {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
}

    .footer-policies {
        width: 100%;
        max-width: 320px;
    }

.footer-policies {
    margin-bottom: 30px;
}

.footer-policies p {
    margin: 8px 0;
    text-align: left;
}

.footer-policies a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.08;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
    display: block;
    text-align: left;
}

.footer-policies a:hover {
    color: #f0f0f0;
}
/* Redes sociales del footer */
.footer-social {
    display: flex;
    justify-content: left;
    gap: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Columna derecha - Logo */
.footer-logo {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}
.footer-credit {
    margin: 30px auto 0;
    padding: 10px 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-credit-logo {
    height: 38px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.product-info-section {
    width: 100%;
    background: #ffffff;
    padding: 34px 0 48px;
}

.product-info-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(380px, 520px) 1fr;
    gap: clamp(32px, 4.5vw, 76px);
    align-items: start;
}

.product-info-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 520px;
}

.product-info-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 12px;
    background: #00B7BE;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.product-info-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding-top: 64px;
}

.product-info-image {
    width: 112%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    margin-left: -18px;
}

.product-info-content {
    max-width: 720px;
}

.product-info-lead {
    margin: 0 0 22px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 300;
    color: #222222;
}

.product-info-lead strong {
    font-family: 'Outfit', sans-serif;
    color: #00B7BE;
    font-weight: 700;
}

.product-info-title {
    margin: 28px 0 18px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 4vw, 62px);
    line-height: 1;
    font-weight: 700;
    color: #00B7BE;
}

.product-info-list {
    margin: 0;
    padding-left: 24px;
}

.product-info-list li {
    margin-bottom: 20px;
    color: #222222;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 300;
}

.product-info-list li::marker {
    color: #00B7BE;
}

.product-info-list strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #00B7BE;
}

.product-info-list span {
    display: block;
}

.product-gallery {
    margin-top: 34px;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-gallery-item {
    position: relative;
    border: 0;
    padding: 0;
    background: #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.product-gallery-item::after {
    content: '＋';
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 183, 190, 0.9);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.product-gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.product-gallery-item:hover .product-gallery-thumb {
    transform: scale(1.03);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.62);
    z-index: 12000;
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-modal-content {
    max-width: min(860px, 90vw);
    max-height: 86vh;
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-modal-image {
    display: block;
    max-width: 100%;
    max-height: calc(86vh - 24px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-modal-close,
.gallery-modal-nav {
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #00AEB8;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.gallery-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 28px;
    line-height: 1;
}

.gallery-modal-nav {
    width: 48px;
    height: 48px;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

body.modal-open {
    overflow: hidden;
}

.usage-benefits-section {
    width: 100%;
    background: #ffffff;
    padding: 46px 0 56px;
}

.usage-benefits-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: clamp(28px, 4vw, 80px);
    align-items: start;
}

.usage-benefits-heading {
    margin: 0 0 26px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 4vw, 56px);
    line-height: 1;
    font-weight: 700;
    color: #00B7BE;
}

.usage-icons-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.usage-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.usage-icon {
    width: 104px;
    height: 104px;
    object-fit: contain;
    margin-bottom: 10px;
}

.usage-icon-label {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 700;
    color: #00B7BE;
}

.benefits-list {
    margin: 0;
    padding-left: 22px;
    columns: 2;
    column-gap: 48px;
}

.benefits-list li {
    break-inside: avoid;
    margin: 0 0 24px;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 300;
    color: #202020;
}

.usage-gallery-section {
    width: 100%;
    background: #ffffff;
    padding: 18px 0 56px;
}

.usage-gallery-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
}

.usage-gallery-title {
    margin: 0 0 18px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1;
    font-weight: 700;
    color: #00B7BE;
}

.usage-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    justify-content: center;
    gap: 22px;
}

.usage-gallery-item {
    aspect-ratio: auto;
    background: transparent;
    border-radius: 0;
    width: 100%;
}

.usage-gallery-item::after {
    display: none;
}

.usage-gallery-item .product-gallery-thumb {
    width: 100%;
    aspect-ratio: 4 / 2.45;
    object-fit: cover;
}

.usage-gallery-caption {
    display: block;
    padding: 10px 14px;
    background: #3c9ea5;
    color: #ffffff;
    font-family: 'Sklow Light', 'Sklow', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
}

.usage-gallery-caption strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ── Product CTA Banner ─────────────────────────────────────── */
.product-cta-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-cta-banner__bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-cta-banner__background {
    display: block;
}

.product-cta-banner--split {
    min-height: clamp(360px, 40vw, 640px);
}

.product-cta-banner--split .product-cta-banner__background,
.product-cta-banner--split .product-cta-banner__bg {
    width: 100%;
    height: 100%;
}

.product-cta-banner--split .product-cta-banner__bg {
    object-fit: cover;
    object-position: center 58%;
}

.product-cta-banner__product {
    position: absolute;
    right: clamp(16px, 4.8vw, 92px);
    bottom: clamp(16px, 2.2vw, 30px);
    width: min(50vw, 760px);
    max-width: 56%;
    height: auto;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.product-cta-banner__overlay {
    position: absolute;
    top: 54%;
    left: clamp(24px, 4.6vw, 72px);
    transform: translateY(-50%);
    border-radius: 0;
    padding: clamp(14px, 2.2vw, 28px) clamp(14px, 2.4vw, 30px);
    max-width: min(700px, 54vw);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.6vw, 22px);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
}

.product-cta-banner__intro {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-cta-banner__eyebrow {
    font-size: clamp(14px, 1.6vw, 26px);
    font-weight: 300;
    letter-spacing: 0.06em;
    opacity: 0.96;
    margin: 0 0 clamp(2px, 0.4vw, 5px) 0;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.product-cta-banner__headline {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 1.4vw, 22px);
    line-height: 1;
}

.product-cta-banner__number {
    font-size: clamp(130px, 17vw, 260px);
    font-weight: 300;
    color: rgba(210, 247, 250, 0.62);
    line-height: 0.82;
    margin-top: clamp(10px, 2vw, 32px);
    align-self: flex-end;
}

.product-cta-banner__headline-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 0.5vw, 8px);
    padding-top: 0;
    align-self: flex-end;
    padding-bottom: clamp(4px, 0.5vw, 8px);
}

.product-cta-banner__pasos {
    font-size: clamp(44px, 6.2vw, 96px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.01em;
}

.product-cta-banner__sub {
    font-size: clamp(18px, 2.4vw, 38px);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    opacity: 0.96;
}

.product-cta-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 121, 131, 0.82);
    border-radius: 100px;
    padding: clamp(9px, 1vw, 12px) clamp(18px, 2vw, 26px);
    width: fit-content;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.product-cta-banner__badge-icons {
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1;
    letter-spacing: 0.08em;
}

.product-cta-banner__badge-text {
    font-size: clamp(15px, 1.55vw, 19px);
    font-weight: 700;
    line-height: 1;
}

.product-cta-banner__step {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 1.1vw, 16px);
    margin-top: clamp(2px, 0.5vw, 8px);
}

.product-cta-banner__step-num {
    font-size: clamp(56px, 5.8vw, 88px);
    font-weight: 300;
    color: rgba(255,255,255,0.42);
    line-height: 0.9;
    flex-shrink: 0;
}

.product-cta-banner__step-copy {
    padding-top: clamp(6px, 0.9vw, 12px);
}

.product-cta-banner__step strong {
    font-size: clamp(19px, 1.95vw, 31px);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.product-cta-banner__step p {
    font-size: clamp(18px, 1.85vw, 28px);
    font-weight: 400;
    margin: clamp(6px, 0.6vw, 10px) 0 0;
    opacity: 0.96;
    line-height: 1.02;
}

.product-cta-banner__btn {
    display: inline-block;
    margin-top: clamp(2px, 0.6vw, 8px);
    background: #0d8c95;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(19px, 1.95vw, 30px);
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    padding: clamp(10px, 1.1vw, 16px) clamp(34px, 4vw, 54px);
    width: fit-content;
    transition: background 0.2s;
    line-height: 1;
}

.product-cta-banner__btn:hover {
    background: #0b7a82;
}

.product-cta-banner--detached-intro .product-cta-banner__overlay {
    gap: clamp(22px, 2.6vw, 34px);
}

.product-cta-banner--detached-intro .product-cta-banner__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(14px, 1.8vw, 22px);
    width: 100%;
    padding: clamp(18px, 2.4vw, 28px) clamp(18px, 2.6vw, 30px);
}

@media (max-width: 900px) {
    .ingredients-tabs-section {
        padding: 48px 0 56px;
    }

    .ingredients-tabs-copy,
    .ingredient-detail-text {
        font-size: 19px;
    }

    .ingredient-detail-section-title {
        font-size: 20px;
    }

    .ingredients-tabs-layout {
        grid-template-columns: 1fr;
    }

    .ingredients-tabs-list {
        padding: 6px 0 6px 24px;
    }

    .product-info-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-info-visual {
        align-items: center;
        margin: 0 auto;
        max-width: 460px;
    }

    .product-info-content {
        max-width: 100%;
    }

    .product-info-title {
        font-size: 44px;
    }

    .product-info-lead,
    .product-info-list li {
        font-size: 18px;
    }

    .product-info-image {
        width: 100%;
        margin-left: 0;
    }

    .usage-benefits-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .benefits-list {
        columns: 1;
    }

    .usage-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .product-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ingredients-tabs-section {
        padding: 36px 0 42px;
    }

    .ingredients-tabs-shell {
        padding: 0 16px;
    }

    .ingredients-tabs-intro {
        margin-bottom: 24px;
        padding-bottom: 18px;
    }

    .ingredients-tabs-title {
        font-size: 34px;
    }

    .ingredients-tabs-copy,
    .ingredient-detail-text {
        font-size: 16px;
        line-height: 1.35;
    }

    .ingredient-detail-section-title {
        font-size: 18px;
        margin: 18px 0 8px;
    }

    .ingredients-tabs-list {
        padding: 4px 0 4px 22px;
    }

    .ingredients-tabs-item {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .ingredients-tab-button {
        font-size: 18px;
        padding: 8px 0;
    }

    .ingredient-detail-panel {
        border-radius: 20px;
        padding: 22px 18px;
    }

    .ingredient-detail-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .ingredient-detail-list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .product-info-section {
        padding: 24px 0 36px;
    }

    .product-info-inner {
        padding: 0 16px;
    }

    .product-info-pill {
        top: 10px;
        left: 10px;
        font-size: 16px;
        padding: 9px 14px;
    }

    .product-info-lead {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .product-info-title {
        font-size: 32px;
        margin: 20px 0 14px;
    }

    .product-info-list {
        padding-left: 18px;
    }

    .product-info-list li,
    .product-info-list strong {
        font-size: 16px;
    }

    .usage-benefits-section {
        padding: 34px 0 40px;
    }

    .usage-gallery-section {
        padding: 8px 0 40px;
    }

    .usage-gallery-inner,
    .usage-benefits-inner {
        padding: 0 16px;
    }

    .usage-benefits-heading {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .usage-icons-grid {
        gap: 20px;
        justify-content: center;
    }

    .usage-icon {
        width: 86px;
        height: 86px;
    }

    .usage-icon-label {
        font-size: 22px;
    }

    .benefits-list li {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .usage-gallery-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .usage-gallery-grid {
        grid-template-columns: 1fr;
    }

    .usage-gallery-item .product-gallery-thumb {
        aspect-ratio: 4 / 2.6;
    }

    .usage-gallery-caption {
        font-size: 14px;
        padding: 9px 10px;
    }

    .product-cta-banner__overlay {
        max-width: clamp(180px, 42vw, 340px);
        padding: clamp(14px, 2.5vw, 28px) clamp(14px, 2.5vw, 32px);
        gap: 7px;
    }

    .product-cta-banner--detached-intro .product-cta-banner__card {
        padding: 16px 16px 18px;
    }
}

@media (max-width: 640px) {
    .product-cta-banner--split {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 18px 12px 24px;
    }

    .product-cta-banner--split .product-cta-banner__background {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .product-cta-banner__product {
        position: relative;
        right: auto;
        bottom: auto;
        display: block;
        order: 2;
        width: min(84vw, 340px);
        max-width: 100%;
        margin-top: 10px;
        z-index: 1;
    }

    .product-cta-banner__overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: 1;
        width: min(100%, 360px);
        max-width: 100%;
        padding: 14px 14px 16px;
        gap: 10px;
        border-radius: 14px;
        background: rgba(0, 119, 126, 0.18);
        align-items: center;
        text-align: center;
        z-index: 2;
    }

    .product-cta-banner--detached-intro .product-cta-banner__overlay {
        background: transparent;
        padding-bottom: 0;
    }

    .product-cta-banner--detached-intro .product-cta-banner__card {
        align-items: center;
        text-align: center;
        padding: 14px 14px 16px;
        border-radius: 14px;
        background: rgba(0, 119, 126, 0.18);
    }

    .product-cta-banner__eyebrow {
        font-size: 8px;
        margin-left: 0;
        margin-bottom: 2px;
    }

    .product-cta-banner__headline {
        justify-content: center;
    }

    .product-cta-banner__headline-copy,
    .product-cta-banner__step-copy {
        align-items: center;
    }

    .product-cta-banner__step {
        justify-content: center;
    }

    .product-cta-banner__btn {
        align-self: center;
    }

    .product-cta-banner__number {
        font-size: clamp(54px, 16vw, 78px);
    }

    .product-cta-banner__pasos {
        font-size: clamp(28px, 8vw, 40px);
    }

    .product-cta-banner__sub {
        font-size: clamp(13px, 3.8vw, 18px);
    }

    .product-cta-banner__badge {
        gap: 7px;
        padding: 7px 12px;
    }

    .product-cta-banner__badge-icons {
        font-size: 12px;
    }

    .product-cta-banner__badge-text {
        font-size: 12px;
    }

    .product-cta-banner__step-num {
        font-size: clamp(36px, 11vw, 54px);
    }

    .product-cta-banner__step strong {
        font-size: clamp(15px, 4vw, 20px);
    }

    .product-cta-banner__step p {
        font-size: clamp(13px, 3.7vw, 18px);
        margin-top: 4px;
    }

    .product-cta-banner__btn {
        font-size: clamp(15px, 4vw, 20px);
        padding: 8px 24px;
    }
}

@media (max-width: 480px) {
    .product-gallery {
        margin-top: 24px;
    }

    .product-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-modal {
        padding: 12px;
    }

    .gallery-modal-content {
        max-width: 100%;
    }

    .gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 24px;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links .footer-menu li a,
    .footer-policies a {
        justify-content: center;
        text-align: center;
    }

    .footer-policies {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-policies p {
        width: 100%;
        text-align: center;
    }

    .footer-center {
        text-align: center !important;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
        align-items: center;
    }

    .footer-logo-img {
        max-width: 200px;
        margin: 0 auto;
    }

    .footer-credit {
        flex-direction: column;
        gap: 6px;
    }
}

