:root {
    --blue: #0aa9e8;
    --blue-dark: #087ca8;
    --pink: #d94f91;
    --yellow: #ffc42e;
    --green: #5ca47d;
    --whatsapp: #1da851;
    --whatsapp-dark: #147d3c;
    --ink: #18333f;
    --muted: #627984;
    --surface: #ffffff;
    --surface-soft: #f4fbfd;
    --line: #dcecf1;
    --shadow: 0 20px 55px rgba(22, 93, 119, 0.12);
    --radius: 24px;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 999;
    padding: 12px 18px;
    border-radius: 12px;
    color: #fff;
    background: var(--ink);
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(220, 236, 241, 0.85);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner,
.section-inner {
    width: min(calc(100% - 40px), var(--content));
    margin-inline: auto;
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand img {
    width: 150px;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-navigation > a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-navigation > a:hover {
    color: var(--blue-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--surface-soft);
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.section {
    padding: 86px 0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 86px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 196, 46, 0.2), transparent 26%),
        radial-gradient(circle at 90% 12%, rgba(10, 169, 232, 0.18), transparent 30%),
        linear-gradient(135deg, #fffdf7 0%, #effcff 58%, #fff5fa 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    align-items: center;
    gap: 62px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--yellow));
    content: "";
}

.hero h1,
.section-heading h2,
.newsletter-copy h2,
.about-copy h2,
.custom-request-card h2,
.maintenance-card h1 {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.hero-copy > p {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    border-radius: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.category-chip:focus-visible,
.interest-toggle:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(10, 169, 232, 0.28);
    outline-offset: 3px;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #008fc9);
    box-shadow: 0 13px 25px rgba(10, 169, 232, 0.25);
}

.button-whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #23ba5b, var(--whatsapp));
    box-shadow: 0 13px 25px rgba(29, 168, 81, 0.22);
}

.button-whatsapp:hover {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
}

.button-secondary {
    color: var(--blue-dark);
    border: 1px solid var(--line);
    background: #fff;
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 13px;
    font-size: 0.9rem;
}

.button-full {
    width: 100%;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-trust span {
    position: relative;
    padding-left: 19px;
}

.hero-trust span::before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    content: "";
}

.hero-visual {
    position: relative;
}

.hero-visual > img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    border: 9px solid rgba(255, 255, 255, 0.86);
    border-radius: 44px 44px 110px 44px;
    box-shadow: var(--shadow);
}

.hero-card {
    position: absolute;
    left: -32px;
    bottom: 26px;
    max-width: 285px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-card strong,
.hero-card span {
    display: block;
}

.hero-card strong {
    margin-bottom: 4px;
    font-size: 1.08rem;
}

.hero-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-decoration-one {
    width: 80px;
    height: 80px;
    right: 4%;
    bottom: 10%;
    border: 13px solid rgba(217, 79, 145, 0.17);
}

.hero-decoration-two {
    width: 30px;
    height: 30px;
    left: 4%;
    top: 15%;
    background: rgba(255, 196, 46, 0.36);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-heading h2,
.newsletter-copy h2,
.about-copy h2,
.custom-request-card h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p,
.newsletter-copy p,
.about-copy p,
.custom-request-card p {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.text-link {
    color: var(--blue-dark);
    font-weight: 800;
    text-underline-offset: 4px;
}

.categories-section {
    padding: 68px 0;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.category-chip {
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.category-chip:hover,
.category-chip.active {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 10px 20px rgba(10, 169, 232, 0.2);
}

.featured-section,
.newsletter-section {
    background: var(--surface-soft);
}

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

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 34px rgba(22, 93, 119, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.product-card.selected-product {
    border-color: rgba(10, 169, 232, 0.48);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card.selected-product {
    animation: selected-pulse 1.7s ease 2;
}

@keyframes selected-pulse {
    50% { box-shadow: 0 0 0 7px rgba(10, 169, 232, 0.13), var(--shadow); }
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f1fcff, #fff7fb);
}

.product-image-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap > img {
    transform: scale(1.035);
}

.product-badge {
    position: absolute;
    z-index: 2;
    left: 14px;
    top: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #6b4b00;
    background: var(--yellow);
    font-size: 0.75rem;
    font-weight: 900;
}

.interest-toggle {
    position: absolute;
    z-index: 2;
    right: 14px;
    top: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--pink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 20px rgba(24, 51, 63, 0.14);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.interest-toggle.active {
    color: #fff;
    background: var(--pink);
}

.product-content {
    padding: 22px;
}

.product-category {
    color: var(--blue-dark);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 5px 0 8px;
    font-size: 1.3rem;
    line-height: 1.25;
}

.product-description {
    min-height: 50px;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    margin: 16px 0 0;
    font-size: 0.84rem;
}

.product-details div {
    display: flex;
    gap: 5px;
}

.product-details dt {
    color: var(--muted);
}

.product-details dd {
    margin: 0;
    font-weight: 800;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 16px;
}

.product-price del {
    color: var(--muted);
    font-size: 0.9rem;
}

.product-price strong {
    color: var(--pink);
    font-size: 1.35rem;
}

.availability {
    margin: 17px 0;
    padding: 11px 13px;
    border-radius: 12px;
    color: #43626e;
    background: #f1f9f5;
    font-size: 0.83rem;
    font-weight: 750;
}

.product-content .button + .button {
    margin-top: 10px;
}

.catalog-heading {
    align-items: center;
}

.search-field input {
    width: min(330px, 100%);
    min-height: 50px;
    padding: 12px 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    color: var(--ink);
    background: #fff;
}

.empty-state,
.empty-catalog {
    text-align: center;
}

.empty-state {
    padding: 40px;
    color: var(--muted);
}

.empty-catalog {
    max-width: 600px;
    margin: 0 auto;
    padding: 42px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.empty-catalog img {
    width: 90px;
    margin: 0 auto 14px;
}

.empty-catalog h3 {
    margin: 0;
    font-size: 1.5rem;
}

.empty-catalog p {
    color: var(--muted);
}

.custom-request-section {
    padding-top: 30px;
}

.custom-request-card {
    display: grid;
    grid-template-columns: 100px 1fr auto 100px;
    align-items: center;
    gap: 30px;
    padding: 36px 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 10% 30%, rgba(255, 196, 46, 0.3), transparent 25%),
        linear-gradient(135deg, #eafaff, #fff7dc 62%, #fff1f8);
    box-shadow: var(--shadow);
}

.custom-character {
    max-height: 105px;
    margin: auto;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.newsletter-form {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 800;
}

.newsletter-form label > span {
    display: block;
    margin-bottom: 6px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="tel"],
.newsletter-form input[type="email"] {
    width: 100%;
    min-height: 49px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
}

.consent-field {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted) !important;
    font-weight: 600 !important;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--blue);
}

.consent-field span {
    margin: 0 !important;
}

.form-feedback {
    min-height: 24px;
    margin: 12px 0 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-feedback.success {
    color: var(--whatsapp-dark);
}

.form-feedback.error {
    color: #b62843;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
    align-items: center;
    gap: 70px;
}

.about-visual {
    padding: 34px;
    border-radius: 42px 42px 100px 42px;
    background: linear-gradient(135deg, #e7fbff, #fff6d9);
}

.about-visual img {
    width: 100%;
}

.about-copy p {
    margin-bottom: 28px;
}

.interest-bar {
    position: fixed;
    z-index: 120;
    left: 50%;
    bottom: 18px;
    width: min(calc(100% - 36px), 760px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 16px 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    color: #fff;
    background: rgba(24, 51, 63, 0.94);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.interest-clear {
    display: block;
    padding: 2px 0;
    border: 0;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    font-size: 0.78rem;
    text-decoration: underline;
    cursor: pointer;
}

.interest-bar .button {
    min-height: 46px;
}

.floating-whatsapp {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;
    min-height: 52px;
    padding: 0 19px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--whatsapp);
    box-shadow: 0 13px 30px rgba(20, 125, 60, 0.34);
    font-weight: 850;
    cursor: pointer;
}

.floating-whatsapp::before {
    content: "●";
    margin-right: 8px;
}

.interest-bar:not([hidden]) ~ .floating-whatsapp {
    bottom: 105px;
}

.site-footer {
    padding: 64px 0 24px;
    color: #dbe8ec;
    background: #17333e;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.7fr;
    gap: 60px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-grid img {
    width: 160px;
    margin-bottom: 8px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.footer-grid p,
.footer-grid span {
    margin: 0;
    color: #a9c0c8;
}

.footer-grid a,
.footer-link {
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.footer-grid a:hover,
.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    width: min(calc(100% - 40px), var(--content));
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 44px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #91abb4;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: #91abb4;
}

.maintenance-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 196, 46, 0.42), transparent 30%),
        radial-gradient(circle at 87% 14%, rgba(10, 169, 232, 0.34), transparent 32%),
        radial-gradient(circle at 80% 90%, rgba(217, 79, 145, 0.25), transparent 30%),
        #f8fdff;
}

.maintenance-card {
    width: min(100%, 680px);
    padding: clamp(32px, 7vw, 70px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    text-align: center;
}

.maintenance-logo {
    width: min(100%, 370px);
    margin: 0 auto 32px;
}

.maintenance-card h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.maintenance-card p {
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.maintenance-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.maintenance-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
    animation: dot-bounce 1s ease-in-out infinite alternate;
}

.maintenance-dots span:nth-child(2) {
    background: var(--pink);
    animation-delay: 0.18s;
}

.maintenance-dots span:nth-child(3) {
    background: var(--yellow);
    animation-delay: 0.36s;
}

@keyframes dot-bounce {
    to { transform: translateY(-8px); }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 68px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-navigation.open {
        display: flex;
    }

    .main-navigation > a {
        padding: 12px;
    }

    .hero-grid,
    .newsletter-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 720px;
    }

    .hero-card {
        left: 20px;
    }

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

    .custom-request-card {
        grid-template-columns: 76px 1fr;
    }

    .custom-request-card .button {
        grid-column: 2;
        justify-self: start;
    }

    .custom-request-card .custom-character:last-child {
        display: none;
    }
}

@media (max-width: 680px) {
    .header-inner,
    .section-inner,
    .footer-bottom {
        width: min(calc(100% - 28px), var(--content));
    }

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

    .brand img {
        width: 126px;
    }

    .section {
        padding: 62px 0;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-visual > img {
        min-height: 300px;
        border-radius: 30px 30px 68px 30px;
    }

    .hero-card {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: none;
        margin: -28px 16px 0;
    }

    .section-heading,
    .catalog-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .search-field input {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-description {
        min-height: 0;
    }

    .custom-request-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        text-align: center;
    }

    .custom-request-card .custom-character {
        width: 76px;
    }

    .custom-request-card .button {
        grid-column: auto;
        justify-self: stretch;
    }

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

    .newsletter-form {
        padding: 22px;
    }

    .interest-bar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        text-align: center;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }

    .interest-bar:not([hidden]) ~ .floating-whatsapp {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

