/* Material Symbols — must override body font inheritance */
.material-symbols-outlined {
    font-family: "Material Symbols Outlined" !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga";
}

/* Page CTAs — brand yellow */
.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}
.cta-block__hint {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 600;
    color: #191c1d;
}
.cta-block--start {
    align-items: flex-start;
}
.cta-block--on-teal .cta-block__hint {
    color: rgba(255, 255, 255, 0.95);
}

.text-on-teal-muted {
    color: rgba(255, 255, 255, 0.95);
}

.hours-time {
    color: #00685d;
    font-weight: 700;
}

#map-container {
    background:
        linear-gradient(135deg, rgba(0, 137, 123, 0.08), rgba(0, 104, 93, 0.12)),
        #e1e3e4;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    min-height: 3rem;
    border-radius: 0.375rem;
    border: none;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    background-color: #fdbc13;
    color: #191c1d;
    box-shadow: 0 4px 14px rgba(253, 188, 19, 0.22);
    transition: filter 0.2s ease, transform 0.15s ease;
}
.cta-primary:hover {
    filter: brightness(1.06);
}
.cta-primary:active {
    transform: scale(0.99);
}

/* Same yellow on teal sections */
.cta-primary--on-teal {
    background-color: #fdbc13;
    color: #191c1d;
    box-shadow: 0 4px 14px rgba(253, 188, 19, 0.25);
}
.cta-primary--on-teal:hover {
    filter: brightness(1.06);
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 1.75rem;
    border-radius: 9999px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    transition: filter 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}
.cta-whatsapp:hover {
    filter: brightness(1.06);
}
.cta-whatsapp:active {
    transform: scale(0.98);
}
.ui-icon--whatsapp {
    width: 1.375rem;
    height: 1.375rem;
}

/* Hero form bridge */
.hero-form-bridge {
    text-align: center;
    padding: 0.25rem 0 1rem;
    color: #00685d;
    animation: hero-form-bridge-bounce 1.6s ease-in-out infinite;
}
.hero-form-bridge__label {
    margin: 0 auto;
    max-width: 17rem;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00685d;
}
.hero-form-bridge__accent {
    display: inline-block;
    margin-top: 0.12em;
    color: #005048;
    box-shadow: inset 0 -0.18em 0 0 rgba(253, 188, 19, 0.55);
}
.hero-form-bridge__arrow {
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0.75rem auto 0;
}
@keyframes hero-form-bridge-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(0.5rem); opacity: 0.85; }
}
@media (min-width: 1024px) {
    .hero-form-bridge {
        padding-top: 0;
        padding-bottom: 1.25rem;
    }
    .hero-form-bridge__label {
        max-width: none;
        font-size: 1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-form-bridge {
        animation: none;
    }
}

/* Services horizontal scroll */
.services-carousel {
    position: relative;
    isolation: isolate;
}
.services-carousel__btn {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    margin: 0;
    padding: 0;
    border: 2px solid #00897b;
    border-radius: 9999px;
    background: #ffffff;
    color: #00897b;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}
.services-carousel__btn:active {
    background: #00897b;
    color: #ffffff;
}
.services-carousel__btn svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}
.services-carousel__btn:hover {
    background: #00897b;
    color: #ffffff;
    box-shadow: 0 6px 22px rgba(0, 137, 123, 0.28);
}
.services-carousel__btn--prev {
    left: 0.35rem;
}
.services-carousel__btn--next {
    right: 0.35rem;
}
@media (min-width: 768px) {
    .services-carousel__btn {
        width: 3rem;
        height: 3rem;
    }
    .services-carousel__btn--prev {
        left: 0.5rem;
    }
    .services-carousel__btn--next {
        right: 0.5rem;
    }
}
.services-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 3.5rem;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .services-scroll {
        scroll-behavior: smooth;
    }
}
.services-scroll::-webkit-scrollbar {
    display: none;
}
.services-scroll-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding-bottom: 0.25rem;
}
.service-card {
    flex: 0 0 auto;
    width: min(85vw, 362px);
    scroll-snap-align: start;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.service-card:focus-visible {
    outline: 2px solid #00897b;
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    .services-scroll {
        scroll-behavior: auto;
    }
}

/* Funnel form — separate from page CTAs */
.funnel-card {
    position: relative;
    overflow: hidden;
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(165deg, #2d3836 0%, #242b29 48%, #2f2f2f 100%);
    border: 1px solid rgba(0, 137, 123, 0.28);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.funnel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00897b 0%, #00897b 55%, #fdbc13 100%);
}
@media (min-width: 768px) {
    .funnel-card {
        padding: 2rem 2rem 1.75rem;
    }
}
.funnel-question {
    font-size: 1.1875rem;
    line-height: 1.4;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.125rem;
    text-align: center;
}
.funnel-radio-label {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    border: 1.5px solid rgba(188, 201, 197, 0.28);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.funnel-radio-label:hover {
    border-color: rgba(0, 137, 123, 0.45);
    background: rgba(255, 255, 255, 0.04);
}
.funnel-radio-label:active {
    transform: scale(0.995);
}
.funnel-radio-label input[type="radio"] {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    margin: 0;
    accent-color: #00897b;
    cursor: pointer;
}
.funnel-radio-label span {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}
.funnel-footnote {
    margin-top: 1rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: center;
}
.funnel-footnote .material-symbols-outlined {
    font-size: 1rem;
    color: #00897b;
}
.funnel-card input[type="text"],
.funnel-card input[type="tel"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(188, 201, 197, 0.22);
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.96);
    color: #191c1d;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.funnel-card input[type="text"]:focus,
.funnel-card input[type="tel"]:focus {
    outline: none;
    border-color: #00897b;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.2);
}
.funnel-trust {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.funnel-trust__badges {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}
.funnel-trust__shield {
    width: 1.75rem;
    height: 1.75rem;
    color: #00897b;
}
.funnel-trust__sep {
    width: 1px;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.22);
}
.funnel-trust__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: #f5a623;
}
.funnel-trust__star {
    width: 0.875rem;
    height: 0.875rem;
}
.funnel-trust__text {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}
@media (min-width: 400px) {
    .funnel-trust__text {
        font-size: 0.8125rem;
    }
}

/* Inline SVG icons — no external font dependency */
.ui-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    vertical-align: middle;
}
.ui-icon--sm {
    width: 1rem;
    height: 1rem;
}
.ui-icon--xl {
    width: 3rem;
    height: 3rem;
}
.funnel-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.btn-funnel-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.9375rem 1.25rem;
    border: none;
    border-radius: 0.625rem;
    background: linear-gradient(180deg, #ffca28 0%, #fdbc13 100%);
    color: #191c1d;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    box-shadow: 0 5px 16px rgba(253, 188, 19, 0.28);
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-funnel-primary .material-symbols-outlined {
    font-family: "Material Symbols Outlined" !important;
    font-size: 1.25rem;
}
.btn-funnel-primary:hover {
    filter: brightness(1.04);
    box-shadow: 0 6px 18px rgba(253, 188, 19, 0.32);
}
.btn-funnel-primary:active {
    transform: scale(0.99);
}
.btn-funnel-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.funnel-submit-hint {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.form-step-hidden {
    display: none !important;
}
.form-panel-hidden {
    display: none !important;
}
.funnel-radio-label:has(input:checked) {
    border-color: #00897b;
    background: rgba(0, 137, 123, 0.16);
    box-shadow: 0 0 0 1px rgba(0, 137, 123, 0.35);
}
.funnel-radio-label:has(input:checked) span {
    color: #ffffff;
    font-weight: 600;
}
.funnel-error {
    background: rgba(186, 26, 26, 0.15);
    border: 1px solid rgba(255, 218, 214, 0.4);
    color: #ffdad6;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}
.funnel-link-reset {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.875rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.funnel-link-reset:hover {
    color: #ffffff;
}
