/* =========================================================
   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:
        185px;

    display:
        grid;

    place-items:
        center;

    font-size:
        72px;

    background:
        linear-gradient(
            135deg,
            #edfafd,
            #fff0f8
        );

}


.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;

}


.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;
    }

}