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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #F5F7FA;
    color: #222;
    line-height: 1.6;
}

a {
    color: #0B4F6C;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section .btn {
    margin-top: 0.75rem;
}

.section--light {
    background-color: #fff;
}

.section--dark {
    background-color: #0B4F6C;
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--spaced {
    margin-top: 1rem;
}

.btn-primary {
    background-color: #0B4F6C;
    color: #fff;
}

.btn-secondary {
    background-color: #FFB400;
    color: #222;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #0b3319;
}

.btn-whatsapp:hover {
    background-color: #1ebe5a;
    color: #072813;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.site-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B4F6C;
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: #0B4F6C;
    color: #fff;
    border: none;
    padding: 0.65rem 1rem;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav-menu a.active {
    font-weight: 600;
}

.nav-group {
    position: relative;
}

.nav-group > span {
    font-weight: 500;
}

.nav-group ul {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(11, 79, 108, 0.15);
    display: none;
    min-width: 200px;
    align-items: flex-start;
}

.nav-group:hover ul,
.nav-group:focus-within ul {
    display: flex;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta .phone {
    font-weight: 600;
    color: #0B4F6C;
}

.hero {
    background: linear-gradient(120deg, rgba(11, 79, 108, 0.07), rgba(255, 180, 0, 0.15));
    padding: 4.5rem 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    min-height: 420px;
}

.hero-inner > div {
    align-self: center;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(11, 79, 108, 0.15);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    color: #0B4F6C;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 1rem 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.badge-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.badge-list li {
    background: rgba(11, 79, 108, 0.1);
    color: #0B4F6C;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    margin: 1rem 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-list li::before {
    content: "-";
    color: #0B4F6C;
    font-weight: 700;
    margin-right: 0.1rem;
}

.note {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(11, 79, 108, 0.08);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.comparison-grid article {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 12px 25px rgba(11, 79, 108, 0.08);
}

.comparison-grid h3 {
    margin-bottom: 1rem;
}

.cross-list {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.cross-list li::before {
    content: "-";
    color: #FF4C4C;
    font-weight: 700;
    margin-right: 0.1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.stats-panel {
    background: #0B4F6C;
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    box-shadow: 0 20px 35px rgba(11, 79, 108, 0.2);
}

.bullet-list {
    list-style: disc;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.steps ol {
    list-style: decimal;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.steps li {
    padding-left: 0.5rem;
}

.steps h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: #0B4F6C;
}

.cta-inline {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid rgba(11, 79, 108, 0.15);
    border-radius: 12px;
    background: #fff;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.step-grid article {
    background: #fff;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(11, 79, 108, 0.08);
}

.step-count {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #0B4F6C;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats {
    background: #0B4F6C;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.cta {
    text-align: center;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0;
}

.tag-list li {
    background: #fff;
    border: 1px solid rgba(11, 79, 108, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
}

.situations-list {
    list-style: disc;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.6rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.faq-grid article {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(11, 79, 108, 0.08);
}

.faq-grid h3 {
    margin-bottom: 0.35rem;
    color: #0B4F6C;
}

.inventory-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.inventory-header .btn {
    margin-top: 0.5rem;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.inventory-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(11, 79, 108, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inventory-card-image-wrapper {
    position: relative;
    padding-top: 60%;
    background: #f2f4f7;
}

.inventory-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inventory-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inventory-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.inventory-card-meta span:first-child {
    font-weight: 700;
    color: #0B4F6C;
}

.inventory-card-button {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    border-radius: 6px;
    background: #0B4F6C;
    color: #fff;
    font-weight: 600;
}

.inventory-card-button:hover {
    text-decoration: none;
    background: #083349;
}

.inventory-state {
    text-align: center;
    margin-top: 1.5rem;
    color: #4a4a4a;
}

.inventory-state--error {
    color: #c53030;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.testimonial-stack {
    display: grid;
    gap: 1rem;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(11, 79, 108, 0.12);
    font-style: italic;
}

.testimonial-card span {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 600;
    color: #0B4F6C;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(11, 79, 108, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form--compact {
    padding: 1.5rem;
}

.local-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.local-contact-grid .contact-cta-actions {
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

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

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

.form-field label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    border: 1px solid rgba(11, 79, 108, 0.2);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-field textarea {
    resize: vertical;
}

.form-field--consent {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.form-field--consent input[type="checkbox"] {
    margin-top: 0.3rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.consent-banner {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    max-width: 360px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(11, 79, 108, 0.2);
    border: 1px solid rgba(11, 79, 108, 0.15);
    z-index: 1000;
}

.consent-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.consent-content h3 {
    margin: 0;
}

.consent-content p {
    font-size: 0.95rem;
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.consent-actions a {
    font-size: 0.85rem;
    color: #0B4F6C;
}

.consent-actions [data-consent="accept"] {
    background-color: #0B4F6C;
    color: #fff;
}

.consent-actions [data-consent="decline"] {
    background-color: #111;
    color: #fff;
}

.consent-actions [data-consent="decline"]:hover {
    background-color: #000;
}

@media (max-width: 600px) {
    .consent-banner {
        left: 1rem;
        right: 1rem;
    }
}

.contact-cta {
    background: linear-gradient(120deg, rgba(11, 79, 108, 0.08), rgba(255, 180, 0, 0.2));
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.breadcrumbs {
    background: #eef4f7;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(11, 79, 108, 0.08);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #0B4F6C;
    font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
    content: ">";
    margin: 0 0.35rem;
    color: #4a5568;
    font-weight: 500;
}

.breadcrumbs a {
    color: #0B4F6C;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: rgba(11, 79, 108, 0.92);
    color: #fff;
    padding: 0.55rem 0.9rem;
    box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.12);
}

.mobile-cta-bar .mobile-cta-text {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.mobile-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mobile-cta-actions .btn {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
}

.site-footer {
    background: #0B4F6C;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.site-footer a {
    color: #FFB400;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        right: 0;
        top: 120%;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-group ul {
        position: static;
        box-shadow: none;
        padding: 0.5rem 0;
    }

    .header-cta {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .cta-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-cta-bar {
        display: block;
    }

    .hero {
        padding: 3.5rem 0;
    }

    .hero-inner {
        min-height: 360px;
    }

    .hero-image img {
        max-width: 100%;
    }
}
