:root {
    --bg: #f4f1eb;
    --surface: #ffffff;
    --ink: #101827;
    --muted: #4f5b6d;
    --brand: #0f172a;
    --accent: #bf8640;
    --accent-strong: #8f5f24;
    --line: #d8dde5;
    --ok: #1f9b49;
    --danger: #b42318;
    --radius: 16px;
    --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.1);
    --container: min(1140px, 92vw);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Sora", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: radial-gradient(circle at top right, #efe4d4 0%, #f8f7f3 45%, #f2efe8 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3 {
    margin: 0 0 0.55rem;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.04em;
    line-height: 1.05;
    font-weight: 400;
}

p {
    margin: 0 0 1rem;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--brand);
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    left: 1rem;
}

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

.show-mobile {
    display: block !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 76px;
    padding: 0.55rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 52px;
    object-fit: contain;
}

.brand-fallback {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    color: var(--brand);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    font-size: 0.84rem;
    font-weight: 500;
    scrollbar-width: thin;
}

.main-nav a {
    white-space: nowrap;
    color: #1a2438;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--accent-strong);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.72rem 1.05rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #daaa6a 100%);
    color: #1f1910;
    box-shadow: 0 8px 24px rgba(191, 134, 64, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cb9150 0%, #e2b97e 100%);
}

.btn-secondary {
    background: var(--brand);
    color: #fff;
}

.btn-secondary:hover {
    background: #111f3f;
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: rgba(15, 23, 42, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-strong);
    color: var(--accent-strong);
}

.hero {
    padding: 1rem 0 0;
}

.hero-swiper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: relative;
    min-height: 62vh;
}

.hero-slide > img {
    width: 100%;
    height: 62vh;
    min-height: 420px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 18, 36, 0.84) 0%, rgba(11, 18, 36, 0.5) 46%, rgba(11, 18, 36, 0.28) 100%);
}

.hero-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding-bottom: 2.3rem;
    color: #fff;
}

.hero-content h1,
.hero-content h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.2rem, 7vw, 4rem);
    line-height: 0.98;
    max-width: 780px;
}

.hero-content p {
    max-width: 700px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-pagination {
    position: absolute;
    z-index: 5;
    left: 0 !important;
    right: 0;
    bottom: 1rem !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.9);
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    color: var(--brand);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.hero-prev {
    left: 0.8rem;
}

.hero-next {
    right: 0.8rem;
}

.hero-keywords-wrap {
    margin-top: 1rem;
}

.hero-keywords {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-keywords li {
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    padding: 0.48rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    color: #16233d;
}

section {
    padding: 4rem 0;
}

section > .container > h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: #131f35;
}

section > .container > p {
    color: var(--muted);
    max-width: 780px;
}

.trust {
    padding-top: 3rem;
}

.trust-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.3rem;
}

.trust-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.05rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.trust-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(31, 155, 73, 0.12);
    color: #0f7030;
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.trust-card h3 {
    font-size: 1.55rem;
    margin-bottom: 0.15rem;
}

.trust-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.94rem;
}

.catalog-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1.2rem;
}

.catalog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.catalog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.catalog-body {
    padding: 1rem;
}

.catalog-body h3 {
    font-size: 1.6rem;
}

.catalog-body p {
    font-size: 0.93rem;
    color: var(--muted);
}

.types-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 1rem;
}

.type-card {
    padding: 1rem 1rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
}

.type-card h3 {
    font-size: 1.6rem;
}

.type-card p {
    color: var(--muted);
    font-size: 0.94rem;
    margin: 0;
}

.benefits {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(239, 232, 219, 0.6));
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.benefits-grid {
    display: grid;
    gap: 1.4rem;
}

.benefits-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.55rem;
}

.benefits-list li {
    position: relative;
    padding-left: 1.2rem;
    color: #213047;
    font-weight: 500;
}

.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.testimonials {
    display: grid;
    gap: 0.85rem;
}

.testimonial-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.95rem 1rem;
}

.testimonial-card h3 {
    font-size: 1.5rem;
}

.testimonial-card p {
    margin: 0;
    color: var(--muted);
}

.faq-list {
    margin-top: 1.15rem;
    display: grid;
    gap: 0.65rem;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0.2rem 0.9rem;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #0f1e37;
    padding: 0.8rem 0;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    color: var(--muted);
    margin: 0 0 0.9rem;
}

.contact-grid {
    display: grid;
    gap: 1.2rem;
    align-items: start;
}

.contact-info {
    background: #13213e;
    color: #fff;
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
}

.contact-info h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field label {
    font-size: 0.89rem;
    font-weight: 600;
    color: #1b2a44;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #c8d0dc;
    border-radius: 10px;
    padding: 0.68rem 0.75rem;
    font: inherit;
    color: #101827;
    background: #fff;
}

.field textarea {
    resize: vertical;
    min-height: 140px;
}

.field-full {
    grid-column: 1 / -1;
}

.hp-wrapper {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}

.field-error {
    min-height: 1.1em;
    font-size: 0.8rem;
    color: var(--danger);
}

.form-feedback {
    margin: 0;
    min-height: 1.2rem;
    font-weight: 600;
    font-size: 0.88rem;
}

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

.form-feedback.error {
    color: var(--danger);
}

.privacy {
    margin: 0;
    color: var(--muted);
    font-size: 0.83rem;
}

.site-footer {
    margin-top: 2rem;
    padding-top: 2.2rem;
    background: #0f172a;
    color: #d8e3f2;
}

.footer-grid {
    display: grid;
    gap: 1.1rem;
}

.site-footer h3 {
    color: #fff;
    font-size: 1.65rem;
    margin-bottom: 0.4rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: #d8e3f2;
    font-size: 0.92rem;
}

.site-footer ul {
    display: grid;
    gap: 0.35rem;
}

.site-footer a:hover {
    color: #f6c37f;
}

.footer-logos {
    margin: 1.5rem auto 0;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(216, 227, 242, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logos img {
    width: auto;
    max-height: 56px;
    object-fit: contain;
    filter: brightness(1.06);
}

.subfooter {
    margin-top: 1.2rem;
    border-top: 1px solid rgba(216, 227, 242, 0.18);
    padding: 0.9rem 0 1.1rem;
    text-align: center;
    font-size: 0.84rem;
    color: #c1d0e2;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.noscript-note {
    margin: 1rem auto 2rem;
    width: var(--container);
    padding: 0.8rem 1rem;
    border: 1px solid #f6cd9b;
    background: #fff4e6;
    border-radius: 10px;
    color: #7a4b15;
    font-size: 0.9rem;
}

.reveal {
    animation: fadeUp 0.75s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 561px) {
    .hide-mobile {
        display: inline-flex !important;
    }

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

@media (min-width: 700px) {
    .hero-keywords {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

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

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

@media (min-width: 900px) {
    .main-nav {
        width: auto;
        order: 0;
        overflow: visible;
        font-size: 0.92rem;
    }

    .hero-slide > img {
        height: 70vh;
        min-height: 500px;
    }

    .benefits-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }

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

@media (min-width: 1100px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
