.landing-utm-banner {
    margin: 0 auto 4rem;
    text-align: center;
}

.landing-utm-banner img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 410px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgb(129 124 114 / 22%);
}

.landing-search-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    padding: 1.2rem;
    border-radius: 24px;
    background:#c8bfbf;
    box-shadow: 0 18px 40px rgb(129 124 114 / 28%);
}

.landing-search-wrap {
    max-width: 700px;
}

.landing-search-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.landing-search-form {
    margin: 0;
}

.landing-search-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    color: #98a2b3;
    transform: translateY(-50%);
    pointer-events: none;
}

.landing-search-input {
    min-height: 3.5rem;
    width: 100%;
    padding: 0.95rem 4.6rem 0.95rem 3.25rem;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #334155;
    font-size: 1.125rem;
    outline: none;
}

.landing-search-submit {
    position: absolute;
    top: 50%;
    right: 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 15px;
    background: #989191;
    color: #ffffff;
    transform: translateY(-50%);
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.landing-search-submit svg {
    width: 1.15rem;
    height: 1.15rem;
}

.landing-search-submit:hover {
    background: #857474;
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 10px 20px rgba(133, 116, 116, 0.22);
}

.landing-search-submit:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.35);
    outline-offset: 2px;
}

.landing-search-input::placeholder {
    color: #98a2b3;
    opacity: 1;
}

.landing-search-input:focus {
    box-shadow: inset 0 0 0 2px rgba(255, 165, 0, 0.25);
}

.landing-faqs {
    color: #334155;
}

.landing-faqs section {
    margin: 0;
}

.landing-faqs .mb-8 {
    margin-bottom: 2.25rem;
}

.landing-faqs .landing-faq-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.landing-faqs .landing-faq-section-head h2 {
    margin-bottom: 0;
}

.landing-faqs .landing-faq-contact-link,
.landing-faqs .landing-faq-contact-link:visited,
.landing-faqs .landing-faq-contact-link:hover,
.landing-faqs .landing-faq-contact-link:focus,
.landing-faqs .landing-faq-contact-link:active {
    color: #ffffff !important;
    text-decoration: none;
}

.landing-faqs .landing-faq-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    background: #FFA500;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.landing-faqs .landing-faq-contact-link:hover {
    background: #FF8C00;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.18);
}

.landing-faqs .landing-faq-contact-link:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.35);
    outline-offset: 2px;
}

.landing-faqs h2 {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(251, 146, 60, 0.35);
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.landing-faqs .space-y-1 {
    display: grid;
    gap: 0.9rem;
}

.landing-faqs .space-y-1 > div {
    margin: 0 !important;
}

.landing-faqs .border.border-gray-200 {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.landing-faqs button {
    width: 100%;
    padding: 1.15rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    color: #0f172a;
    background: transparent;
    border: 0;
    transition: background-color 0.2s ease;
}

.landing-faqs button:hover {
    background: #f8fafc;
}

.landing-faqs .is-open > button {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.92));
}

.landing-faqs button:focus-visible,
.landing-contact-link:focus-visible,
.landing-submit-button:focus-visible,
.landing-checkbox-row a:focus-visible,
.landing-contact-form input:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.35);
    outline-offset: -2px;
}

.landing-faqs button span {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.landing-faqs button svg {
    flex: 0 0 auto;
    color: #94a3b8;
    transition: transform 0.24s ease, color 0.24s ease;
}

.landing-faqs .is-open > button svg {
    transform: rotate(180deg);
    color: #ea580c;
}

.landing-faqs button + div {
    max-height: 0;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    overflow: hidden;
    transition: max-height 0.28s ease, padding-top 0.28s ease, padding-bottom 0.28s ease;
}

.landing-faqs .is-open > button + div {
    padding-top: 0.7rem;
    padding-bottom: 2.1rem;
}

.landing-faqs button + div > div {
    color: #475569;
    font-size: 0.985rem;
    line-height: 1.8;
    white-space: pre-wrap;
    padding-bottom: 0.85rem;
}

.landing-faqs button + div > div strong {
    color: #0f172a;
    font-weight: 700;
}

.landing-cta-shell {
    padding: 2rem;
    border: 1px solid #dbe4ee;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.landing-cta-head {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.landing-cta-title {
    margin: 0;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
}

.landing-cta-copy {
    margin: 1rem auto 0;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
}

.landing-cta-kicker {
    margin: 1.5rem 0 0;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
}

.landing-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.75rem;
}

.landing-contact-card,
.landing-form-card {
    min-width: 0;
    height: 100%;
    padding: 1.4rem;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.landing-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.58), #ffffff 38%);
}

.landing-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: rgba(255, 165, 0, 0.16);
    color: #ff8c00;
}

.landing-contact-icon svg {
    width: 1.6rem;
    height: 1.6rem;
}

.landing-contact-title,
.landing-form-title {
    margin: 0;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
}

.landing-contact-copy,
.landing-form-copy {
    color: #475569;
    line-height: 1.7;
}

.landing-contact-copy {
    margin: 0.9rem auto 0;
    max-width: 22rem;
}

.landing-contact-actions {
    width: 100%;
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.landing-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.2rem;
    padding: 0.85rem 1rem;
    border: 1px solid #dbe4ee;
    border-radius: 10px;
    color: #0f172a;
    font-weight: 700;
    background: #ffffff;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.landing-contact-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 165, 0, 0.55);
    color: #ff8c00;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.14);
}

.landing-contact-link-icon {
    display: inline-flex;
    color: #ff8c00;
}

.landing-contact-link-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.landing-contact-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1rem 0 0;
    color: #64748b;
    font-size: 0.92rem;
}

.landing-form-card {
    border-top: 4px solid #c8bfbf;
}

.landing-form-copy {
    margin: 0.8rem 0 1.25rem;
    font-size: 0.98rem;
}

.landing-form-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-form-alert-success {
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(236, 253, 245, 0.95);
    color: #065f46;
}

.landing-form-alert-error {
    border: 1px solid rgba(239, 68, 68, 0.25);
    background: rgba(254, 242, 242, 0.96);
    color: #991b1b;
}

.landing-field-error {
    margin: 0.15rem 0 0;
    color: #b91c1c;
    font-size: 0.84rem;
    line-height: 1.35;
}

.landing-field-error-checkbox {
    margin-top: -0.45rem;
}

.landing-contact-form input.is-invalid,
.landing-contact-form textarea.is-invalid {
    box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.22);
    border-color: rgba(220, 38, 38, 0.55);
}

.landing-contact-form {
    display: grid;
    gap: 1rem;
}

.landing-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.9rem;
}

.landing-form-group {
    display: grid;
    gap: 0.45rem;
}

.landing-form-group label,
.landing-form-group legend {
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.landing-form-group legend {
    margin-bottom: 0.25rem;
}

.landing-form-group input {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.5rem 0.95rem;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
}

.landing-form-group input::placeholder {
    color: #94a3b8;
}

.landing-form-group textarea {
    width: 100%;
    min-height: 7rem;
    padding: 0.75rem 0.95rem;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    resize: vertical;
}

.landing-form-group textarea::placeholder {
    color: #94a3b8;
}

.landing-checkbox-row.is-invalid {
    padding: 0.35rem 0.45rem 0.45rem;
    border: 1px solid rgba(220, 38, 38, 0.28);
    border-radius: 10px;
    background: rgba(254, 242, 242, 0.55);
}

.landing-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.4;
}

.landing-checkbox-row input {
    margin-top: 0.18rem;
    accent-color: #109b9a;
}

.landing-checkbox-row a {
    color: #109b9a;
    text-decoration: none;
}

.landing-checkbox-row a:hover {
    text-decoration: underline;
}

.landing-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    padding: 0.9rem 1.2rem;
    border: 0;
    border-radius: 8px;
    background: #FFA500;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.landing-submit-button:hover {
    background: #FF8C00;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(255, 165, 0, 0.22);
}

#info-proteccion-datos {
    scroll-margin-top: 2rem;
}

@media (max-width: 900px) {
    .landing-cta-title {
        font-size: 1.75rem;
    }

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

    .landing-contact-actions {
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .landing-search-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .landing-search-wrap {
        max-width: none;
    }

    .landing-search-input {
        font-size: 1rem;
    }

    .landing-search-submit {
        width: 2.6rem;
        height: 2.6rem;
    }

    .landing-faqs h2 {
        font-size: 1.1rem;
    }

    .landing-faqs button {
        padding: 1rem 1.1rem;
    }

    .landing-faqs button + div {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .landing-cta-shell {
        padding: 1.25rem;
    }

    .landing-cta-copy {
        font-size: 1rem;
    }
}
