/* =========================================================
   PUBLICLIC
   STYLES.CSS COMPLETO
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --pink: #ec008c;
    --blue: #159bd3;
    --turquoise: #079da5;

    --dark: #222b33;
    --text: #465563;
    --muted: #74818c;

    --white: #ffffff;
    --soft: #f5fbfc;

    --border: #dfe8eb;

    --shadow:
        0 12px 35px rgba(30, 45, 55, 0.08);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--white);

    color:
        var(--text);

    line-height:
        1.6;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    height: auto;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font-family:
        inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width:
        min(1180px, 92%);

    margin:
        0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    background:
        #ffffff;

    border-bottom:
        1px solid
        var(--border);

    position:
        sticky;

    top:
        0;

    z-index:
        1000;

}


.header-inner {

    min-height:
        105px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo-link {

    display:
        inline-flex;

    align-items:
        center;

    flex-shrink:
        0;

}


.logo-img {

    height:
        82px;

    width:
        auto;

    object-fit:
        contain;

}


/* =========================================================
   NAV
========================================================= */

.main-nav {

    display:
        flex;

    align-items:
        center;

    justify-content:
        flex-end;

    gap:
        5px;

    flex-wrap:
        wrap;

}


.main-nav > a,
.dropdown > button {

    border:
        0;

    background:
        transparent;

    color:
        var(--dark);

    font-size:
        15px;

    font-weight:
        600;

    padding:
        14px 12px;

    cursor:
        pointer;

    transition:
        color 0.2s ease;

}


.main-nav > a:hover,
.dropdown > button:hover,
.main-nav > a.active {

    color:
        var(--pink);

}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown {

    position:
        relative;

}


.dropdown > button {

    display:
        flex;

    align-items:
        center;

    gap:
        5px;

}


.dropdown-menu {

    position:
        absolute;

    top:
        calc(100% + 1px);

    right:
        0;

    width:
        285px;

    background:
        #ffffff;

    border-top:
        3px solid
        var(--pink);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);

    display:
        none;

    padding:
        8px 0;

}


.dropdown:hover .dropdown-menu {

    display:
        block;

}


.dropdown-menu a {

    display:
        block;

    padding:
        13px 18px;

    color:
        var(--dark);

    font-size:
        14px;

}


.dropdown-menu a:hover {

    background:
        var(--soft);

    color:
        var(--pink);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #ffffff 52%,
            #f1fbfc 100%
        );

    padding:
        28px 0 60px;

}


.shipping-bar {

    display:
        flex;

    justify-content:
        flex-end;

    margin-bottom:
        28px;

}


.shipping-badge {

    display:
        inline-flex;

    align-items:
        center;

    background:
        var(--pink);

    color:
        #ffffff;

    padding:
        14px 25px;

    border-radius:
        8px;

    font-size:
        17px;

    font-weight:
        800;

    box-shadow:
        0 8px 22px
        rgba(236, 0, 140, 0.20);

}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {

    display:
        grid;

    grid-template-columns:
        1.02fr 0.98fr;

    gap:
        48px;

    align-items:
        center;

}


/* =========================================================
   HERO TEXTO
========================================================= */

.hero-content {

    max-width:
        680px;

}


.brand-title {

    font-size:
        clamp(60px, 7vw, 94px);

    line-height:
        0.95;

    font-weight:
        900;

    letter-spacing:
        -5px;

    margin-bottom:
        12px;

}


.brand-title .pink {

    color:
        var(--pink);

}


.brand-title .blue {

    color:
        var(--blue);

}


.brand-subtitle {

    color:
        #47515b;

    font-size:
        17px;

    letter-spacing:
        7px;

    margin-bottom:
        18px;

}


.hero-content h2 {

    color:
        var(--pink);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height:
        1.12;

    margin-bottom:
        24px;

    font-weight:
        800;

}


.hero-content h2 span {

    color:
        var(--blue);

}


.hero-content p {

    color:
        #526575;

    font-size:
        17px;

    line-height:
        1.75;

    margin-bottom:
        15px;

}


/* =========================================================
   BOTONES
========================================================= */

.hero-buttons {

    display:
        flex;

    gap:
        13px;

    flex-wrap:
        wrap;

    margin-top:
        25px;

}


.btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        48px;

    padding:
        12px 22px;

    border-radius:
        7px;

    font-size:
        15px;

    font-weight:
        700;

    border:
        2px solid
        transparent;

    transition:
        all 0.2s ease;

}


.btn:hover {

    transform:
        translateY(-2px);

}


.btn-primary {

    background:
        var(--pink);

    color:
        #ffffff;

    border-color:
        var(--pink);

}


.btn-primary:hover {

    background:
        #c70076;

    border-color:
        #c70076;

}


.btn-secondary {

    background:
        transparent;

    color:
        var(--blue);

    border-color:
        var(--blue);

}


.btn-secondary:hover {

    background:
        var(--blue);

    color:
        #ffffff;

}


.btn-white {

    background:
        #ffffff;

    color:
        var(--dark);

    border-color:
        #ffffff;

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {

    width:
        100%;

    overflow:
        hidden;

    border-radius:
        4px;

}


.hero-image img {

    width:
        100%;

    height:
        100%;

    min-height:
        390px;

    max-height:
        520px;

    object-fit:
        cover;

    border-radius:
        4px;

    box-shadow:
        0 20px 45px
        rgba(25, 40, 50, 0.10);

}


/* =========================================================
   QUICK CATEGORIES
========================================================= */

.quick-categories {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        20px;

    margin-top:
        42px;

    border-top:
        1px solid
        var(--border);

    padding-top:
        32px;

}


.quick-category {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    padding:
        17px 10px;

    border-radius:
        12px;

    transition:
        all 0.2s ease;

}


.quick-category:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,0.06);

}


.category-icon {

    width:
        66px;

    height:
        66px;

    border-radius:
        50%;

    display:
        grid;

    place-items:
        center;

    background:
        #ffe4f2;

    font-size:
        29px;

    margin-bottom:
        12px;

}


.quick-category strong {

    color:
        var(--dark);

    font-size:
        13px;

    line-height:
        1.25;

}


/* =========================================================
   SECCIONES
========================================================= */

.section {

    padding:
        90px 0;

}


.search-section {

    padding:
        95px 0;

    background:
        linear-gradient(
            135deg,
            #f8fdfe 0%,
            #ffffff 50%,
            #fff5fb 100%
        );

}


.about-section {

    padding:
        90px 0;

    background:
        #ffffff;

}


.cta-section {

    padding:
        0 0 90px;

}


.section-title {

    max-width:
        800px;

    margin:
        0 auto 42px;

    text-align:
        center;

}


.eyebrow {

    color:
        var(--turquoise);

    font-size:
        12px;

    font-weight:
        900;

    letter-spacing:
        3px;

    margin-bottom:
        12px;

}


.section-title h2 {

    color:
        var(--dark);

    font-size:
        clamp(31px, 4vw, 48px);

    line-height:
        1.1;

    margin-bottom:
        14px;

}


.section-title p {

    color:
        var(--muted);

    font-size:
        17px;

}


/* =========================================================
   BUSCADOR
========================================================= */

.search-heading {

    max-width:
        850px;

    margin:
        0 auto 38px;

    text-align:
        center;

}


.search-eyebrow {

    color:
        var(--pink);

    font-size:
        13px;

    font-weight:
        900;

    letter-spacing:
        3px;

    margin-bottom:
        12px;

}


.search-heading h2 {

    color:
        var(--dark);

    font-size:
        clamp(34px, 4vw, 50px);

    line-height:
        1.1;

    margin-bottom:
        14px;

}


.search-heading p {

    color:
        var(--muted);

    font-size:
        17px;

    max-width:
        650px;

    margin:
        0 auto;

}


/* CAJA */

.search-main-box {

    max-width:
        950px;

    margin:
        0 auto 22px;

}


.search-input-wrapper {

    display:
        flex;

    align-items:
        center;

    background:
        #ffffff;

    border:
        2px solid
        #d9e8eb;

    border-radius:
        14px;

    padding:
        7px;

    box-shadow:
        0 15px 40px
        rgba(35,50,60,0.10);

    transition:
        all 0.2s ease;

}


.search-input-wrapper:focus-within {

    border-color:
        var(--pink);

    box-shadow:
        0 15px 45px
        rgba(236,0,140,0.14);

}


.search-icon {

    width:
        55px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        22px;

}


.search-input-wrapper input {

    flex:
        1;

    min-width:
        0;

    border:
        0;

    outline:
        0;

    background:
        transparent;

    color:
        var(--dark);

    font-size:
        17px;

    padding:
        16px 10px;

}


.search-input-wrapper input::placeholder {

    color:
        #9ba8b1;

}


.search-button {

    border:
        0;

    background:
        var(--pink);

    color:
        #ffffff;

    font-size:
        15px;

    font-weight:
        800;

    padding:
        15px 28px;

    border-radius:
        9px;

    cursor:
        pointer;

    transition:
        all 0.2s ease;

}


.search-button:hover {

    background:
        #c90076;

    transform:
        translateY(-1px);

}


/* =========================================================
   FILTROS
========================================================= */

.search-popular {

    max-width:
        950px;

    margin:
        0 auto;

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    flex-wrap:
        wrap;

}


.search-popular > span {

    color:
        var(--dark);

    font-size:
        13px;

    font-weight:
        800;

}


.search-filters {

    display:
        flex;

    gap:
        9px;

    flex-wrap:
        wrap;

}


.filter {

    border:
        1px solid
        var(--turquoise);

    background:
        rgba(255,255,255,0.95);

    color:
        var(--turquoise);

    border-radius:
        30px;

    padding:
        10px 16px;

    font-size:
        13px;

    font-weight:
        800;

    cursor:
        pointer;

    transition:
        all 0.2s ease;

}


.filter:hover {

    background:
        var(--turquoise);

    color:
        #ffffff;

    transform:
        translateY(-2px);

}


.filter.active {

    background:
        var(--turquoise);

    color:
        #ffffff;

}


/* =========================================================
   INFO DEL CATÁLOGO
========================================================= */

.catalog-info {

    max-width:
        950px;

    margin:
        27px auto 18px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    font-size:
        14px;

}


.catalog-info span {

    color:
        var(--muted);

}


.catalog-info a {

    color:
        var(--pink);

    font-weight:
        700;

}


.catalog-info a:hover {

    text-decoration:
        underline;

}


/* =========================================================
   PRODUCTOS
========================================================= */

.product-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        20px;

}


.product-card {

    overflow:
        hidden;

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        14px;

    transition:
        all 0.2s ease;

}


.product-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);

}

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(
        135deg,
        #edfafd,
        #fff0f8
    );
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    display:
        block;

}


.product-info {

    padding:
        18px;

}


.product-category {

    color:
        var(--turquoise);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

}


.product-info h3 {

    color:
        var(--dark);

    font-size:
        19px;

    margin:
        7px 0 8px;

}


.product-info p {

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.55;

    min-height:
        65px;

    margin-bottom:
        15px;

}


.product-bottom {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        10px;

}


.product-bottom strong {

    color:
        var(--pink);

    font-size:
        15px;

}


.product-card-price {

    color:
        var(--pink);

    font-size:
        18px;

    font-weight:
        800;

    line-height:
        1.3;

    margin:
        4px 0 15px;

}


.product-card-price-consultar {

    color:
        var(--muted);

    font-size:
        14px;

    font-weight:
        700;

}


.mini-btn {

    background:
        var(--blue);

    color:
        #ffffff;

    padding:
        9px 13px;

    border-radius:
        6px;

    font-size:
        13px;

    font-weight:
        700;

}


.mini-btn:hover {

    background:
        #0c7fae;

}


.no-results {

    max-width:
        800px;

    margin:
        35px auto 0;

    padding:
        25px;

    text-align:
        center;

    color:
        var(--muted);

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        12px;

}


.no-results a {

    color:
        var(--pink);

    font-weight:
        700;

}


/* =========================================================
   FEATURES
========================================================= */

.features {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        20px;

}


.feature {

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius:
        14px;

    padding:
        26px;

    transition:
        all 0.2s ease;

}


.feature:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow);

}


.feature-icon {

    width:
        60px;

    height:
        60px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        #ffe4f2;

    font-size:
        28px;

    margin-bottom:
        14px;

}


.feature h3 {

    color:
        var(--dark);

    font-size:
        19px;

    margin-bottom:
        8px;

}


.feature p {

    color:
        var(--muted);

    font-size:
        14px;

}


/* =========================================================
   NOSOTROS
========================================================= */

.about-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        60px;

    align-items:
        center;

}


.about-grid h2 {

    color:
        var(--dark);

    font-size:
        clamp(34px,4vw,50px);

    line-height:
        1.1;

    margin-bottom:
        20px;

}


.about-grid > div:first-child p {

    color:
        var(--muted);

    font-size:
        17px;

    margin-bottom:
        18px;

}


.process-box {

    background:
        var(--dark);

    color:
        #ffffff;

    border-radius:
        18px;

    padding:
        34px;

}


.process-box h3 {

    color:
        #ffffff;

    font-size:
        29px;

    margin-bottom:
        22px;

}


.process-box p {

    margin-bottom:
        12px;

    padding:
        13px 15px;

    border-left:
        3px solid
        var(--pink);

    background:
        rgba(255,255,255,0.04);

}


/* =========================================================
   CTA
========================================================= */

.cta-box {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    padding:
        45px;

    border-radius:
        20px;

    color:
        #ffffff;

    background:
        linear-gradient(
            115deg,
            var(--dark),
            #086679
        );

}


.cta-box h2 {

    color:
        #ffffff;

    font-size:
        clamp(30px,4vw,44px);

    margin-bottom:
        10px;

}


.cta-box p {

    color:
        #d7edf0;

}


.eyebrow.light {

    color:
        #8aecef;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        var(--dark);

    color:
        #ffffff;

    padding:
        48px 0 20px;

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1fr;

    gap:
        35px;

    padding-bottom:
        35px;

}


.footer-logo {

    height:
        65px;

    width:
        auto;

    object-fit:
        contain;

    margin-bottom:
        12px;

}


.footer-grid p {

    color:
        #c7d1d7;

    font-size:
        14px;

}


.footer h4 {

    color:
        #ffffff;

    margin-bottom:
        13px;

}


.footer-grid a {

    display:
        block;

    color:
        #c7d1d7;

    font-size:
        14px;

    margin-bottom:
        8px;

}


.footer-grid a:hover {

    color:
        #ffffff;

}


.copyright {

    border-top:
        1px solid
        rgba(255,255,255,0.10);

    padding-top:
        20px;

    color:
        #94a4ad;

    font-size:
        13px;

    text-align:
        center;

}


/* =========================================================
   CATALOG HEADER
========================================================= */

.catalog-header {

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5fbfc 100%
        );

    padding:
        64px 0 48px;

    border-bottom:
        1px solid
        var(--border);

}


.catalog-header .container {

    max-width:
        900px;

}


.catalog-header .eyebrow {

    color:
        var(--blue);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        2.5px;

    text-transform:
        uppercase;

    margin-bottom:
        16px;

}


.catalog-header h1 {

    color:
        var(--pink);

    font-size:
        clamp(42px, 5vw, 58px);

    font-weight:
        900;

    line-height:
        1.1;

    margin-bottom:
        16px;

}


.catalog-header p {

    color:
        var(--text);

    font-size:
        18px;

    line-height:
        1.7;

    max-width:
        700px;

}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {

    padding:
        64px 0;

}


.contact-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        52px;

    align-items:
        start;

}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {

    padding-right:
        20px;

}


.contact-card .eyebrow {

    color:
        var(--blue);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        2.5px;

    text-transform:
        uppercase;

    margin-bottom:
        24px;

}


.contact-card h2 {

    color:
        var(--pink);

    font-size:
        clamp(32px, 4vw, 42px);

    font-weight:
        900;

    margin-bottom:
        16px;

    line-height:
        1.15;

}


.contact-card > p {

    color:
        var(--text);

    font-size:
        16px;

    line-height:
        1.7;

    margin-bottom:
        32px;

}


/* =========================================================
   CONTACT ROWS
========================================================= */

.contact-row {

    display:
        flex;

    flex-direction:
        column;

    margin-bottom:
        24px;


}


.contact-row strong {

    color:
        var(--dark);

    font-size:
        14px;

    font-weight:
        700;

    margin-bottom:
        6px;

}


.contact-row a,
.contact-row span {

    color:
        var(--text);

    font-size:
        16px;

    text-decoration:
        none;

}


.contact-row a:hover {

    color:
        var(--blue);

    transition:
        color 0.2s ease;

}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {

    display:
        flex;

    flex-direction:
        column;

}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {

    display:
        flex;

    flex-direction:
        column;

}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        24px;

    margin-bottom:
        24px;

}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {

    display:
        flex;

    flex-direction:
        column;

}


.form-group label {

    color:
        var(--dark);

    font-size:
        14px;

    font-weight:
        700;

    margin-bottom:
        8px;

}


.form-group input,
.form-group textarea,
.form-group select {

    padding:
        12px 16px;

    border:
        1px solid
        var(--border);

    border-radius:
        6px;

    font-size:
        15px;

    color:
        var(--text);

    background:
        #ffffff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    font-family:
        inherit;

    width: 100%;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    outline:
        none;

    border-color:
        var(--pink);

    box-shadow:
        0 0 0 3px
        rgba(236, 0, 140, 0.08);

}


.form-group input::placeholder {

    color:
        #a0aab5;

}


.form-group textarea {

    min-height:
        140px;

    resize:
        vertical;

}


/* =========================================================
   FORM MESSAGE
========================================================= */

.form-message {

    margin-top:
        16px;

    padding:
        12px 16px;

    border-radius:
        6px;

    font-size:
        14px;

    display:
        none;

}


.form-message.success {

    background:
        rgba(76, 175, 80, 0.1);

    color:
        #2e7d32;

    display:
        block;

}


.form-message.error {

    background:
        rgba(244, 67, 54, 0.1);

    color:
        #c62828;

    display:
        block;

}


/* =========================================================
   CONTACT WHATSAPP
========================================================= */

.contact-whatsapp {

    background:
        linear-gradient(
            120deg,
            var(--dark) 0%,
            #086679 100%
        );

    padding:
        52px 0;

}


.whatsapp-box {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        40px;

}


.whatsapp-box > div {

    flex:
        1;

}


.whatsapp-box .eyebrow {

    color:
        #7ee9ff;

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        2.5px;

    text-transform:
        uppercase;

    margin-bottom:
        12px;

}


.whatsapp-box h2 {

    color:
        #ffffff;

    font-size:
        clamp(28px, 4vw, 38px);

    font-weight:
        900;

    margin-bottom:
        12px;

    line-height:
        1.15;

}


.whatsapp-box p {

    color:
        #b8e6eb;

    font-size:
        16px;

    line-height:
        1.6;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .header-inner {
        min-height: 90px;
    }

    .logo-img {
        height: 68px;
    }

    .main-nav > a,
    .dropdown > button {
        padding:
            10px 7px;

        font-size:
            13px;
    }

    .hero-grid {
        gap:
            35px;
    }

    .brand-title {
        font-size:
            64px;
    }

    .product-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .features {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .quick-categories {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }

    .contact-card {
        padding-right:
            0;
    }

    .form-row {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 800px) {

    .header-inner {
        min-height:
            80px;

        flex-direction:
            column;

        align-items:
            center;

        padding:
            15px 0;
    }

    .logo-img {
        height:
            60px;
    }

    .main-nav {
        width:
            100%;

        justify-content:
            center;

        gap:
            2px;
    }

    .main-nav > a,
    .dropdown > button {
        font-size:
            12px;

        padding:
            8px 6px;
    }

    .dropdown-menu {
        width:
            240px;
    }

    .hero {
        padding-top:
            25px;
    }

    .shipping-bar {
        justify-content:
            center;
    }

    .shipping-badge {
        text-align:
            center;

        font-size:
            13px;

        padding:
            12px 16px;

        max-width:
            100%;
    }

    .hero-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }

    .hero-content {
        text-align:
            center;

        max-width:
            none;
    }

    .hero-buttons {
        justify-content:
            center;
    }

    .brand-title {
        font-size:
            57px;

        letter-spacing:
            -4px;

        word-break:
            break-word;
    }

    .brand-subtitle {
        font-size:
            13px;

        letter-spacing:
            4px;
    }

    .hero-content h2 {
        font-size:
            33px;
    }

    .hero-content p {
        font-size:
            16px;
    }

    .hero-image img {
        min-height:
            auto;

        max-height:
            390px;
    }

    .quick-categories {
        grid-template-columns:
            repeat(2,1fr);

        gap:
            8px;
    }

    .section,
    .search-section,
    .about-section {
        padding:
            65px 0;
    }

    .product-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .about-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }

    .cta-box {
        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            32px;
    }

    .catalog-header {
        padding:
            48px 0 35px;
    }

    .catalog-header h1 {
        font-size:
            36px;
    }

    .contact-section {
        padding:
            48px 0;
    }

    .contact-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }

    .contact-card {
        padding-right:
            0;
    }

    .form-row {
        grid-template-columns:
            1fr;
    }

    .whatsapp-box {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            25px;
    }

}


/* =========================================================
   TELÉFONO
========================================================= */

@media (max-width: 560px) {

    .container {
        width: 94%;
    }

    .header-inner {
        align-items:
            center;

        gap:
            15px;
    }

    .main-nav {
        flex-direction:
            row;

        flex-wrap:
            wrap;

        width:
            100%;

        justify-content:
            center;
    }

    .main-nav > a,
    .dropdown > button {
        width:
            auto;

        text-align:
            center;

        font-size:
            13px;

        padding:
            8px 10px;
    }

    .dropdown {
        position:
            relative;

        width:
            auto;
    }

    .dropdown-menu {
        position:
            absolute;

        top:
            100%;

        left:
            50%;

        transform:
            translateX(-50%);

        width:
            220px;

        box-shadow:
            0 10px 25px rgba(0,0,0,0.15);

        border-top:
            3px solid var(--pink);

        border-bottom:
            0;

        z-index:
            1005;
    }

    .hero {
        padding-bottom:
            45px;
    }

    .brand-title {
        font-size:
            clamp(38px, 11vw, 45px);

        letter-spacing:
            -2px;
    }

    .brand-subtitle {
        font-size:
            11px;

        letter-spacing:
            2px;

        line-height:
            1.4;
    }

    .hero-content h2 {
        font-size:
            26px;
    }

    .hero-content p {
        font-size:
            15px;
    }

    .hero-buttons {
        flex-direction:
            column;

        width:
            100%;
    }

    .hero-buttons .btn {
        width:
            100%;
    }

    .hero-image img {
        min-height:
            auto;

        height:
            auto;
    }

    .shipping-badge {
        font-size:
            11px;

        width:
            100%;

        justify-content:
            center;
    }

    .quick-categories {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            10px;

        margin-top:
            28px;
    }

    .category-icon {
        width:
            55px;

        height:
            55px;

        font-size:
            24px;
    }

    .quick-category strong {
        font-size:
            11px;
    }

    .section-title h2,
    .search-heading h2 {
        font-size:
            28px;
    }


    /* BUSCADOR EN MÓVIL */

    .search-input-wrapper {

        flex-wrap:
            wrap;

        padding:
            6px;

    }

    .search-icon {

        width:
            40px;

    }

    .search-input-wrapper input {

        width:
            calc(100% - 40px);

        font-size:
            15px;

    }

    .search-button {

        width:
            100%;

        margin-top:
            5px;

    }

    .search-popular {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            10px;

    }

    .search-filters {

        width:
            100%;

    }


    .catalog-info {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .product-grid {

        grid-template-columns:
            1fr;

    }


    .features {

        grid-template-columns:
            1fr;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            28px;

    }


    .cta-box {

        padding:
            25px;

    }


    .cta-box h2 {

        font-size:
            28px;

    }

    .cta-box .btn {

        width:
            100%;

    }

    .catalog-header h1 {

        font-size:
            32px;

    }

    .catalog-header p {

        font-size:
            15px;

    }

    .contact-card h2 {

        font-size:
            28px;

    }

    .contact-card > p {

        font-size:
            14px;

    }

    .contact-row {

        margin-bottom:
            18px;

    }

    .form-group input,
    .form-group textarea,
    .form-group select {

        font-size:
            14px;

    }

    .whatsapp-box h2 {

        font-size:
            28px;

    }

    .whatsapp-box p {

        font-size:
            14px;

    }

    .whatsapp-box .btn {

        width:
            100%;

    }

}


/* =========================================================
   NUEVO: SERVICE DETAIL SECTION - PARA SERVICIOS CON IMÁGENES
========================================================= */

.service-detail-section {

    padding:
        72px 0;

    border-bottom:
        1px solid
        var(--border);

}


.service-soft {

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            var(--soft) 100%
        );

}


.service-detail-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        60px;

    align-items:
        center;

}


/* =========================================================
   NUEVO: SERVICE VISUAL (IMAGEN)
========================================================= */

.service-visual {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        380px;

    background:
        linear-gradient(
            135deg,
            #f5fbfc 0%,
            #e8f5f7 100%
        );

    border-radius:
        12px;

    overflow:
        hidden;

    box-shadow:
        0 12px 35px rgba(30, 45, 55, 0.08);

}


.service-visual img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    display:
        block;

}


.service-icon {

    font-size:
        120px;

    text-align:
        center;

    opacity:
        0.85;

    transition:
        transform 0.3s ease;

}


.service-detail-section:hover .service-icon {

    transform:
        scale(1.1);

}


.service-visual::before {

    content:
        '';

    position:
        absolute;

    top:
        0;

    left:
        0;

    right:
        0;

    bottom:
        0;

    background:
        linear-gradient(
            135deg,
            rgba(236, 0, 140, 0.08) 0%,
            rgba(21, 155, 211, 0.08) 100%
        );

    pointer-events:
        none;

    opacity:
        0;

    transition:
        opacity 0.3s ease;

}


.service-detail-section:hover .service-visual::before {

    opacity:
        1;

}


/* =========================================================
   NUEVO: SERVICE CONTENT
========================================================= */

.service-content {

    padding:
        0 12px;

}


.service-content .eyebrow {

    color:
        var(--pink);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        2.5px;

    text-transform:
        uppercase;

    margin-bottom:
        12px;

    display:
        block;

}


.service-content h2 {

    color:
        var(--dark);

    font-size:
        clamp(28px, 4vw, 42px);

    font-weight:
        900;

    line-height:
        1.15;

    margin-bottom:
        18px;

}


.service-content > p {

    color:
        var(--text);

    font-size:
        16px;

    line-height:
        1.75;

    margin-bottom:
        24px;

}


.service-content ul {

    list-style:
        none;

    margin-bottom:
        28px;

}


.service-content li {

    color:
        var(--text);

    font-size:
        15px;

    padding:
        10px 0 10px 28px;

    position:
        relative;

    line-height:
        1.6;

}


.service-content li::before {

    content:
        '✓';

    position:
        absolute;

    left:
        0;

    color:
        var(--pink);

    font-weight:
        bold;

    font-size:
        18px;

}


/* =========================================================
   NUEVO: SERVICE CTA SECTION
========================================================= */

.service-cta {

    background:
        linear-gradient(
            120deg,
            var(--pink) 0%,
            #d7007d 100%
        );

    padding:
        72px 0;

}


.service-cta-box {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        40px;

}


.service-cta-box > div {

    flex:
        1;

}


.service-cta .eyebrow.light {

    color:
        #ff69c4;

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        2.5px;

    text-transform:
        uppercase;

    margin-bottom:
        12px;

}


.service-cta h2 {

    color:
        #ffffff;

    font-size:
        clamp(28px, 4vw, 42px);

    font-weight:
        900;

    line-height:
        1.15;

    margin-bottom:
        12px;

}


.service-cta p {

    color:
        rgba(255, 255, 255, 0.95);

    font-size:
        16px;

    line-height:
        1.7;

}


/* =========================================================
   RESPONSIVE - SERVICE SECTIONS
========================================================= */

@media (max-width: 1050px) {

    .service-detail-grid {
        gap:
            40px;
    }

    .service-visual {
        min-height:
            320px;
    }

    .service-icon {
        font-size:
            100px;
    }

    .service-cta-box {
        gap:
            30px;
    }

}


@media (max-width: 800px) {

    .service-detail-section {
        padding:
            48px 0;
    }

    .service-detail-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }

    .service-visual {
        min-height:
            280px;
    }

    .service-icon {
        font-size:
            80px;
    }

    .service-content {
        padding:
            0;
    }

    .service-content h2 {
        font-size:
            28px;
    }

    .service-content > p {
        font-size:
            15px;
    }

    .service-content li {
        font-size:
            14px;

        padding:
            8px 0 8px 24px;
    }

    .service-cta {
        padding:
            48px 0;
    }

    .service-cta-box {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            25px;
    }

    .service-cta h2 {
        font-size:
            28px;
    }

    .service-cta p {
        font-size:
            14px;
    }

    .service-cta .btn {
        width:
            100%;
    }

}


@media (max-width: 560px) {

    .service-detail-section {
        padding:
            35px 0;

        border-bottom:
            1px solid
            var(--border);
    }

    .service-detail-grid {
        gap:
            25px;
    }

    .service-visual {
        min-height:
            240px;
    }

    .service-icon {
        font-size:
            70px;
    }

    .service-content h2 {
        font-size:
            24px;

        margin-bottom:
            12px;
    }

    .service-content .eyebrow {
        margin-bottom:
            8px;

        font-size:
            10px;
    }

    .service-content > p {
        font-size:
            14px;

        margin-bottom:
            16px;
    }

    .service-content ul {
        margin-bottom:
            20px;
    }

    .service-content li {
        font-size:
            13px;

        padding:
            6px 0 6px 22px;
    }

    .service-content li::before {
        font-size:
            16px;
    }

    .btn {
        min-height:
            44px;

        padding:
            10px 24px;

        font-size:
            14px;
    }

    .service-cta {
        padding:
            35px 0;
    }

    .service-cta-box {
        gap:
            20px;
    }

    .service-cta .eyebrow.light {
        font-size:
            10px;
    }

    .service-cta h2 {
        font-size:
            24px;

        margin-bottom:
            8px;
    }

    .service-cta p {
        font-size:
            13px;
    }

}
/* =====================================================
   MENÚ MÓVIL — NAVEGACIÓN DIRECTA
===================================================== */

/*
   En móvil no se utiliza botón hamburguesa.
   La navegación permanece visible directamente debajo del logo.
*/

.mobile-menu {
    display: none !important;
}

@media (max-width: 900px) {

    .mobile-menu {
        display: none !important;
    }

    .header-inner {
        flex-direction: column !important;
        gap: 4px !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .main-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        max-width: 100%;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .main-nav > a,
    .main-nav .dropdown > button {
        display: inline-flex !important;
        width: auto !important;
        flex: 0 0 auto !important;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        font-size: 15px !important;
        line-height: 1.2;
        padding: 6px 6px !important;
        margin: 0 !important;
    }

    .main-nav .dropdown {
        display: block !important;
        width: auto !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

}

@media (max-width: 560px) {

    .header-inner {
        gap: 3px !important;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo-img {
        height: 56px !important;
    }

    .main-nav {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        row-gap: 1px !important;
        column-gap: 0 !important;
    }

    .main-nav > a,
    .main-nav .dropdown > button {
        display: inline-flex !important;
        width: auto !important;
        flex: 0 0 auto !important;
        font-size: 15px !important;
        padding: 6px 6px !important;
        line-height: 1.15;
    }

}


/* =====================================================
   TALLAS SIN BOTONES
===================================================== */

.product-sizes-section {
    margin-top: 22px;
}


.product-sizes-text {
    margin: 0;
    color: #526170;
    font-size: 16px;
    line-height: 1.7;
}


.product-size-text {
    font-weight: 700;
    color: #172033;
}


.product-size-separator {
    margin: 0 5px;
    color: #159bd3;
    font-weight: 700;
}


/* =====================================================
   COLORES
===================================================== */

.product-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.product-color-option {
    background: #ffffff;
    color: #293746;
    border: 1px solid #d4dfe4;
    border-radius: 7px;
    padding: 9px 13px;
    font-size: 13px;
    line-height: 1.25;
}


.product-color-option:hover {
    border-color: #159bd3;
    color: #159bd3;
}


.product-color-option.selected {
    background: #159bd3;
    border-color: #159bd3;
    color: #ffffff;
}

/* =========================================================
   PUBLICLIC — PREMIUM DARK
   Portada de alto impacto
   ========================================================= */

.premium-home {
    --premium-ink: #07111f;
    --premium-surface: #0d1c2e;
    --premium-surface-2: #12263b;
    --premium-text: #f4f8fc;
    --premium-muted: #a9bacb;
    --premium-pink: #ff2d95;
    --premium-cyan: #42e8e0;
    --premium-line: rgba(180, 213, 231, 0.17);
    background: var(--premium-ink);
    color: var(--premium-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.premium-home a {
    color: inherit;
}

.premium-home .header {
    background: #f8fbff;
    border-bottom: 1px solid #dce7ed;
    color: #122337;
}

.premium-home .header-inner {
    min-height: 82px;
}

.premium-home .logo-img {
    height: 58px;
}

.premium-home .main-nav > a,
.premium-home .dropdown > button {
    color: #122337;
}

.premium-home .main-nav > a:hover,
.premium-home .dropdown > button:hover,
.premium-home .main-nav > a.active {
    color: var(--premium-pink);
}

.premium-home .dropdown-menu {
    background: #ffffff;
    border-top-color: var(--premium-pink);
}

.premium-home .dropdown-menu a {
    color: #122337;
}

.premium-home .dropdown-menu a:hover {
    background: #fff4fa;
    color: #d60073;
}

.premium-home .premium-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 74px 0 56px;
    background:
        radial-gradient(circle at 76% 28%, rgba(66, 232, 224, 0.15), transparent 25%),
        radial-gradient(circle at 18% 82%, rgba(255, 45, 149, 0.17), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #0a1a2c 52%, #10253a 100%);
}

.premium-home .premium-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(146, 203, 224, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 203, 224, 0.08) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

.premium-home .premium-hero::after {
    content: '';
    position: absolute;
    top: 14%;
    right: 10%;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(66, 232, 224, 0.32);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(66, 232, 224, 0.14);
    pointer-events: none;
}

.premium-home .premium-hero > .container {
    position: relative;
    z-index: 1;
}

.premium-home .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: var(--premium-cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.8px;
}

.premium-home .signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--premium-pink);
    box-shadow: 0 0 0 6px rgba(255, 45, 149, 0.14), 0 0 22px rgba(255, 45, 149, 0.8);
}

.premium-home .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: center;
}

.premium-home .hero-content {
    max-width: 720px;
}

.premium-home .hero-brand {
    margin-bottom: 14px;
    color: rgba(244, 248, 252, 0.58);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 5px;
}

.premium-home .hero-title {
    max-width: 760px;
    margin: 0 0 26px;
    color: var(--premium-text);
    font-size: clamp(58px, 8vw, 112px);
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 0.94;
}

.premium-home .hero-title span {
    display: block;
    background: linear-gradient(100deg, var(--premium-pink) 8%, #ff72bc 48%, var(--premium-cyan) 96%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.premium-home .hero-statement {
    display: inline-block;
    margin: 0 0 16px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 45, 149, 0.45);
    border-radius: 999px;
    background: rgba(255, 45, 149, 0.09);
    color: #ffb0d8;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.premium-home .hero-lead {
    max-width: 590px;
    margin: 0;
    color: var(--premium-muted);
    font-size: 19px;
    line-height: 1.7;
}

.premium-home .hero-buttons {
    gap: 14px;
    margin-top: 34px;
}

.premium-home .hero-buttons .btn {
    min-height: 56px;
    padding: 15px 27px;
    border-radius: 8px;
    font-size: 15px;
}

.premium-home .hero-buttons .btn-primary {
    background: var(--premium-pink);
    border-color: var(--premium-pink);
    box-shadow: 0 12px 28px rgba(255, 45, 149, 0.25);
    color: #ffffff;
}

.premium-home .hero-buttons .btn-primary:hover {
    background: #ff55aa;
    border-color: #ff55aa;
    transform: translateY(-3px);
}

.premium-home .hero-buttons .btn-secondary {
    background: transparent;
    border-color: rgba(244, 248, 252, 0.45);
    color: var(--premium-text);
}

.premium-home .hero-buttons .btn-secondary:hover {
    background: var(--premium-text);
    border-color: var(--premium-text);
    color: var(--premium-ink);
}

.premium-home .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 620px;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid var(--premium-line);
}

.premium-home .hero-proof div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.premium-home .hero-proof strong {
    color: var(--premium-cyan);
    font-size: 12px;
    letter-spacing: 2px;
}

.premium-home .hero-proof span {
    color: var(--premium-muted);
    font-size: 12px;
    line-height: 1.4;
}

.premium-home .premium-visual {
    position: relative;
    min-height: 540px;
    overflow: visible;
    border-radius: 0;
}

.premium-home .premium-visual::before {
    content: '';
    position: absolute;
    inset: 7% -8% -8% 8%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(66, 232, 224, 0.26), rgba(255, 45, 149, 0.28));
    filter: blur(34px);
}

.premium-home .premium-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 540px;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    box-shadow: 28px 32px 0 rgba(66, 232, 224, 0.10), 0 30px 80px rgba(0, 0, 0, 0.36);
    transform: rotate(2.2deg);
}

.premium-home .visual-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 45, 149, 0.65);
    border-radius: 50%;
    pointer-events: none;
}

.premium-home .orbit-one {
    top: 3%;
    right: -9%;
    width: 170px;
    height: 170px;
}

.premium-home .orbit-two {
    bottom: 3%;
    left: -10%;
    width: 95px;
    height: 95px;
    border-color: rgba(66, 232, 224, 0.7);
}

.premium-home .visual-card {
    position: absolute;
    z-index: 2;
    background: rgba(10, 26, 44, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.premium-home .visual-card-top {
    top: 8%;
    left: -7%;
    width: 170px;
    padding: 17px;
    border-radius: 14px;
    transform: rotate(-5deg);
}

.premium-home .visual-card-label {
    display: block;
    margin-bottom: 12px;
    color: var(--premium-cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.premium-home .visual-card strong {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
}

.premium-home .visual-card-bottom {
    right: -6%;
    bottom: 8%;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    border-radius: 999px;
    color: #d9e8f3;
    font-size: 11px;
    transform: rotate(3deg);
}

.premium-home .visual-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--premium-pink);
    box-shadow: 0 0 14px var(--premium-pink);
}

.premium-home .brand-marquee {
    overflow: hidden;
    padding: 17px 0;
    border-top: 1px solid rgba(66, 232, 224, 0.24);
    border-bottom: 1px solid rgba(66, 232, 224, 0.24);
    background: #091827;
}

.premium-home .marquee-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: max-content;
    color: #dcecf5;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.4px;
    white-space: nowrap;
    animation: premium-marquee 28s linear infinite;
}

.premium-home .marquee-track i {
    color: var(--premium-pink);
    font-size: 18px;
    font-style: normal;
}

.premium-home .premium-catalog-section {
    padding: 104px 0 112px;
    background: #0a1929;
}

.premium-home .premium-catalog-section .search-eyebrow {
    color: var(--premium-cyan);
}

.premium-home .premium-catalog-section .search-heading h2 {
    color: var(--premium-text);
}

.premium-home .premium-catalog-section .search-heading p {
    color: var(--premium-muted);
}

.premium-home .premium-catalog-section .search-input-wrapper {
    border-color: rgba(255, 255, 255, 0.16);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.premium-home .premium-catalog-section .search-button {
    background: var(--premium-pink);
}

.premium-home .premium-catalog-section .search-button:hover {
    background: #d9006f;
}

.premium-home .premium-catalog-section .catalog-info {
    color: var(--premium-muted);
}

.premium-home .premium-catalog-section .catalog-info a {
    color: var(--premium-cyan);
}

.premium-home .premium-catalog-section .product-card {
    background: var(--premium-surface);
    border-color: var(--premium-line);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.premium-home .premium-catalog-section .product-image {
    background: linear-gradient(135deg, #102b42, #26152e);
}

.premium-home .premium-catalog-section .product-info h3 {
    color: var(--premium-text);
}

.premium-home .premium-catalog-section .product-info p {
    color: var(--premium-muted);
}

.premium-home .premium-catalog-section .product-category {
    color: var(--premium-cyan);
}

.premium-home .premium-catalog-section .mini-btn {
    background: var(--premium-pink);
}

.premium-home .premium-catalog-section .no-results {
    background: var(--premium-surface);
    border-color: var(--premium-line);
    color: var(--premium-muted);
}

.premium-home .premium-why-section {
    padding: 112px 0;
    background: #f5f8fb;
}

.premium-home .premium-why-section .section-title h2 {
    color: #122337;
}

.premium-home .premium-why-section .section-title p {
    color: #5c6c7b;
}

.premium-home .premium-why-section .eyebrow {
    color: #d60073;
}

.premium-home .premium-why-section .feature {
    background: #ffffff;
    border-color: #dce6ed;
    box-shadow: 0 12px 30px rgba(18, 35, 55, 0.06);
}

.premium-home .premium-why-section .feature h3 {
    color: #122337;
}

.premium-home .premium-why-section .feature p {
    color: #607181;
}

.premium-home .premium-why-section .feature-icon {
    background: #ffe1f0;
}

.premium-home .about-section {
    padding: 112px 0;
    background: #edf3f7;
}

.premium-home .about-section .eyebrow {
    color: #087f86;
}

.premium-home .about-section h2 {
    color: #122337;
}

.premium-home .about-section p {
    color: #5b6c7b;
}

.premium-home .about-section .btn-primary {
    background: #122337;
    border-color: #122337;
}

.premium-home .process-box {
    background: #0a1929;
    box-shadow: 18px 18px 0 rgba(66, 232, 224, 0.18);
}

.premium-home .process-box p {
    color: #d8e8f1;
}

.premium-home .cta-section {
    padding: 0 0 112px;
    background: #edf3f7;
}

.premium-home .cta-box {
    border-radius: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(66, 232, 224, 0.23), transparent 28%),
        linear-gradient(120deg, #ff2d95, #7b1e83 55%, #0b6975);
    box-shadow: 24px 24px 0 rgba(7, 17, 31, 0.12);
}

.premium-home .cta-box .btn-white {
    background: #07111f;
    border-color: #07111f;
    color: #ffffff;
}

.premium-home .footer {
    background: #050c15;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-home .footer-grid a,
.premium-home .footer-grid p {
    color: #a7bac9;
}

.premium-home .footer-grid a:hover {
    color: var(--premium-cyan);
}

.premium-home .whatsapp-float {
    align-items: center;
    background: #25d366;
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    bottom: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    display: flex;
    height: 62px;
    justify-content: center;
    position: fixed;
    right: 22px;
    text-decoration: none;
    width: 62px;
    z-index: 1000;
}

.premium-home .whatsapp-float:hover {
    transform: translateY(-4px);
}

.premium-home :is(a, button, input, textarea, select):focus-visible {
    outline: 3px solid var(--premium-cyan);
    outline-offset: 3px;
}

.premium-home .mobile-menu {
    background: #ffffff;
    border: 1px solid #dce7ed;
    color: #122337;
}

@keyframes premium-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-25%);
    }
}

@media (max-width: 1050px) {
    .premium-home .premium-hero {
        min-height: 0;
    }

    .premium-home .hero-title {
        font-size: clamp(54px, 8vw, 86px);
    }

    .premium-home .premium-visual,
    .premium-home .premium-visual img {
        min-height: 470px;
        height: 470px;
    }
}

@media (max-width: 900px) {
    .premium-home .header-inner {
        align-items: center;
        flex-direction: row !important;
        justify-content: space-between;
        min-height: 0;
        padding: 12px 0;
    }

    .premium-home .logo-img {
        height: 54px !important;
    }

    .premium-home .mobile-menu {
        align-items: center;
        background: #ffffff;
        border: 1px solid #dce7ed;
        border-radius: 10px;
        cursor: pointer;
        display: flex !important;
        font-size: 21px;
        height: 44px;
        justify-content: center;
        width: 44px;
    }

    .premium-home .main-nav {
        background: #ffffff;
        border: 1px solid #dce7ed;
        border-radius: 14px;
        box-shadow: 0 18px 35px rgba(7, 17, 31, 0.16);
        display: none !important;
        flex-direction: column !important;
        gap: 0 !important;
        left: 0;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 8px 16px;
        position: absolute;
        right: 0;
        top: 100%;
        width: 100% !important;
        z-index: 1005;
    }

    .premium-home .main-nav.open {
        display: flex !important;
    }

    .premium-home .main-nav > a,
    .premium-home .main-nav .dropdown > button {
        border-bottom: 1px solid #edf2f4;
        display: flex !important;
        justify-content: space-between;
        padding: 13px 4px !important;
        width: 100% !important;
    }

    .premium-home .dropdown-menu {
        border: 0;
        box-shadow: none;
        display: none !important;
        left: auto;
        padding: 0 0 8px 14px;
        position: static;
        top: auto;
        transform: none;
        width: 100% !important;
    }

    .premium-home .dropdown.open .dropdown-menu {
        display: block !important;
    }

    .premium-home .dropdown-menu a {
        padding: 10px 0;
    }

    .premium-home .premium-hero {
        padding: 56px 0 50px;
    }

    .premium-home .hero-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .premium-home .hero-content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .premium-home .hero-kicker {
        justify-content: center;
    }

    .premium-home .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .premium-home .hero-buttons,
    .premium-home .hero-proof {
        justify-content: center;
    }

    .premium-home .hero-title {
        font-size: clamp(52px, 11vw, 88px);
    }

    .premium-home .premium-visual {
        min-height: 420px;
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }

    .premium-home .premium-visual img {
        height: 420px;
        min-height: 0;
    }

    .premium-home .premium-catalog-section,
    .premium-home .premium-why-section,
    .premium-home .about-section {
        padding: 78px 0;
    }

    .premium-home .cta-section {
        padding-bottom: 78px;
    }
}

@media (max-width: 560px) {
    .premium-home .premium-hero {
        padding-top: 42px;
    }

    .premium-home .hero-kicker {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .premium-home .hero-title {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .premium-home .hero-statement {
        font-size: 12px;
    }

    .premium-home .hero-lead {
        font-size: 16px;
    }

    .premium-home .hero-buttons {
        flex-direction: column;
    }

    .premium-home .hero-buttons .btn {
        width: 100%;
    }

    .premium-home .hero-proof {
        gap: 9px;
        margin-top: 38px;
    }

    .premium-home .hero-proof strong {
        font-size: 10px;
    }

    .premium-home .hero-proof span {
        font-size: 10px;
    }

    .premium-home .premium-visual {
        min-height: 300px;
    }

    .premium-home .premium-visual img {
        height: 300px;
        border-radius: 16px;
    }

    .premium-home .visual-card-top {
        left: -2%;
        top: 2%;
        transform: scale(0.78) rotate(-5deg);
        transform-origin: left top;
    }

    .premium-home .visual-card-bottom {
        bottom: 1%;
        right: -2%;
        transform: scale(0.78) rotate(3deg);
        transform-origin: right bottom;
    }

    .premium-home .marquee-track {
        justify-content: flex-start;
        gap: 18px;
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .premium-home .premium-catalog-section,
    .premium-home .premium-why-section,
    .premium-home .about-section {
        padding: 64px 0;
    }

    .premium-home .search-heading h2 {
        font-size: 31px;
    }

    .premium-home .search-input-wrapper {
        flex-wrap: nowrap;
    }

    .premium-home .search-icon {
        width: 42px;
    }

    .premium-home .search-input-wrapper input {
        font-size: 14px;
        padding: 14px 6px;
        width: auto;
    }

    .premium-home .search-button {
        font-size: 13px;
        padding: 14px 15px;
        width: auto;
    }

    .premium-home .cta-section {
        padding-bottom: 64px;
    }

    .premium-home .cta-box {
        padding: 30px 24px;
        box-shadow: 12px 12px 0 rgba(7, 17, 31, 0.12);
    }

    .premium-home .cta-box .btn {
        width: 100%;
    }

    .premium-home .whatsapp-float {
        bottom: 16px;
        height: 55px;
        right: 16px;
        width: 55px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-home *,
    .premium-home *::before,
    .premium-home *::after {
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ajuste de jerarquía: la frase es el mensaje principal. */
.premium-home .hero-title {
    max-width: 900px;
    font-size: clamp(54px, 7.4vw, 104px);
    letter-spacing: -5px;
}

.premium-home .hero-clock {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 680px;
    margin: 0 0 24px;
    padding: 13px 0 13px 20px;
    border-left: 3px solid var(--premium-cyan);
    color: var(--premium-text);
    font-size: clamp(23px, 3vw, 39px);
    font-weight: 800;
    line-height: 1.08;
}

.premium-home .hero-clock strong {
    color: var(--premium-cyan);
    font-size: 1.08em;
}

.premium-home .hero-lead {
    max-width: 620px;
}

@media (max-width: 900px) {
    .premium-home .hero-title {
        font-size: clamp(50px, 10.5vw, 84px);
    }

    .premium-home .hero-clock {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .premium-home .hero-title {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .premium-home .hero-clock {
        padding-left: 15px;
        font-size: 25px;
    }
}

/* =========================================================
   PUBLICLIC — PREMIUM DARK
   Capa de movimiento, profundidad y detalle
   ========================================================= */

.premium-home .header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.premium-home .header-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 112px;
    padding-left: 14px;
    border-left: 1px solid #cbd8e0;
    color: #0b6b68;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.6px;
    line-height: 1.2;
    text-transform: uppercase;
}

.premium-home .header-tagline strong {
    margin-top: 3px;
    color: #c51c63;
    font-size: 13px;
    letter-spacing: 1.8px;
}

.premium-home .premium-hero {
    --pointer-x: 76%;
    --pointer-y: 28%;
    background:
        radial-gradient(circle 340px at var(--pointer-x) var(--pointer-y), rgba(66,232,224,.19), transparent 68%),
        radial-gradient(circle at 18% 82%, rgba(255,45,149,.17), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #0a1a2c 52%, #10253a 100%);
}

.premium-home .hero-kicker {
    animation: premium-fade-up .8s .05s both;
}

.premium-home .hero-brand {
    animation: premium-fade-up .8s .12s both;
}

.premium-home .hero-title {
    animation: premium-title-in 1s .18s both;
}

.premium-home .hero-title span {
    background-size: 220% 100%;
    animation: premium-gradient-shift 7s ease-in-out infinite;
}

.premium-home .hero-clock {
    animation: premium-fade-up .9s .32s both;
}

.premium-home .hero-lead {
    animation: premium-fade-up .9s .42s both;
}

.premium-home .hero-buttons {
    animation: premium-fade-up .9s .52s both;
}

.premium-home .hero-proof {
    animation: premium-fade-up .9s .62s both;
}

.premium-home .premium-visual {
    animation: premium-visual-in 1.1s .22s both;
}

.premium-home .premium-visual img {
    animation: premium-float 7s 1.3s ease-in-out infinite;
}

.premium-home .visual-card-top {
    animation: premium-card-float 5.5s 1.4s ease-in-out infinite;
}

.premium-home .visual-card-bottom {
    animation: premium-card-float-two 6.5s 1.1s ease-in-out infinite;
}

.premium-home .orbit-one {
    animation: premium-spin 18s linear infinite;
}

.premium-home .orbit-two {
    animation: premium-spin-reverse 13s linear infinite;
}

.premium-home .btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.premium-home .btn::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -150%;
    z-index: -1;
    width: 45%;
    height: 260%;
    background: rgba(255,255,255,.32);
    transform: rotate(24deg);
    transition: left .65s ease;
}

.premium-home .btn:hover::after {
    left: 150%;
}

.premium-home .premium-catalog-section .search-input-wrapper {
    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(110deg, var(--premium-pink), var(--premium-cyan), var(--premium-pink)) border-box;
    background-size: 100% 100%, 220% 100%;
    animation: premium-border-shift 7s linear infinite;
}

.premium-home .premium-catalog-section .product-card,
.premium-home .premium-why-section .feature {
    will-change: transform;
}

.premium-home .premium-catalog-section .product-card:hover {
    transform: translateY(-10px) rotateX(1deg) rotateY(-1deg);
}

.premium-home .premium-why-section .feature:hover {
    transform: translateY(-9px) rotateX(1deg);
}

.premium-home .premium-catalog-section,
.premium-home .premium-why-section,
.premium-home .about-section,
.premium-home .cta-section {
    position: relative;
}

.premium-home .premium-catalog-section::before,
.premium-home .premium-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 8%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(66,232,224,.18), transparent);
    pointer-events: none;
}

.premium-home .premium-why-section::before {
    right: 14%;
    background: linear-gradient(to bottom, transparent, rgba(197,28,99,.18), transparent);
}

.premium-home .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--premium-pink), var(--premium-cyan));
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left center;
}

.premium-home.reveal-enabled .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1);
    transition-delay: var(--reveal-delay, 0ms);
}

.premium-home.reveal-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes premium-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes premium-title-in {
    from { opacity: 0; transform: translateY(32px) scale(.97); clip-path: inset(0 0 100% 0); }
    to { opacity: 1; transform: translateY(0) scale(1); clip-path: inset(0 0 0 0); }
}

@keyframes premium-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes premium-visual-in {
    from { opacity: 0; transform: translateX(42px) scale(.96); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes premium-float {
    0%, 100% { transform: rotate(2.2deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-10px); }
}

@keyframes premium-card-float {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-9px); }
}

@keyframes premium-card-float-two {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(8px); }
}

@keyframes premium-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes premium-spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes premium-border-shift {
    0% { background-position: 0% 0, 0% 50%; }
    100% { background-position: 0% 0, 220% 50%; }
}

@media (max-width: 900px) {
    .premium-home .header-brand {
        gap: 8px;
    }

    .premium-home .header-tagline {
        min-width: 82px;
        padding-left: 8px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .premium-home .header-tagline strong {
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .premium-home .premium-hero {
        --pointer-x: 50%;
        --pointer-y: 18%;
    }
}

@media (max-width: 560px) {
    .premium-home .header-tagline {
        min-width: 75px;
        padding-left: 7px;
    }

    .premium-home .header-tagline strong {
        font-size: 9px;
    }

    .premium-home .hero-title {
        animation-duration: .8s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-home .hero-kicker,
    .premium-home .hero-brand,
    .premium-home .hero-title,
    .premium-home .hero-title span,
    .premium-home .hero-clock,
    .premium-home .hero-lead,
    .premium-home .hero-buttons,
    .premium-home .hero-proof,
    .premium-home .premium-visual,
    .premium-home .premium-visual img,
    .premium-home .visual-card-top,
    .premium-home .visual-card-bottom,
    .premium-home .orbit-one,
    .premium-home .orbit-two,
    .premium-home .marquee-track,
    .premium-home .premium-catalog-section .search-input-wrapper {
        animation: none !important;
    }

    .premium-home.reveal-enabled .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* La frase de marca acompaña al logotipo sin ocupar el hero. */
.premium-home .header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.premium-home .header-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 112px;
    padding-left: 14px;
    border-left: 1px solid #cbd8e0;
    color: #0b6b68;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.6px;
    line-height: 1.2;
    text-transform: uppercase;
}

.premium-home .header-tagline strong {
    margin-top: 3px;
    color: #c51c63;
    font-size: 13px;
    letter-spacing: 1.8px;
}

@media (max-width: 900px) {
    .premium-home .header-brand {
        gap: 8px;
    }

    .premium-home .header-tagline {
        min-width: 82px;
        padding-left: 8px;
        font-size: 7px;
        letter-spacing: 1px;
    }

    .premium-home .header-tagline strong {
        font-size: 10px;
        letter-spacing: 1.1px;
    }
}
