.recovered-home-page #servicios,
.recovered-home-page #empresa,
.recovered-home-page #contacto,
.recovered-home-page #preguntas { scroll-margin-top: 88px; }

.services-home-section { background: #f6f8fa; }
.services-home-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: 56px; }
.services-home-photo { min-height: 450px; overflow: hidden; border-radius: 16px; box-shadow: 0 18px 45px rgba(7,26,45,.12); }
.services-home-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.services-home-list { border-top: 1px solid var(--line); }
.services-home-list article { min-height: 112px; display: grid; grid-template-columns: 47px 1fr; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.services-home-list article > span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--red); border: 1px solid #ffd3d6; border-radius: 50%; background: #fff; }
.services-home-list h3 { margin: 0 0 5px; font-size: 1.05rem; }
.services-home-list p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.about-home-section { background: #f7f9fb; }
.about-home-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: start; gap: 92px; }
.about-home-copy h2 { max-width: 590px; margin: 0 0 24px; font-size: clamp(2.35rem,4vw,3.8rem); line-height: 1.02; letter-spacing: -.05em; }
.about-home-copy > p:not(.eyebrow) { color: var(--muted); font-size: .95rem; line-height: 1.75; }
.about-home-copy .about-home-lead { margin-bottom: 14px; padding-left: 18px; color: var(--navy); font-size: 1.08rem; font-weight: 650; line-height: 1.65; border-left: 3px solid var(--red); }
.about-home-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); margin: 28px 0 0; padding: 19px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-home-facts div { display: grid; gap: 5px; padding-right: 14px; }
.about-home-facts div + div { padding-left: 14px; border-left: 1px solid var(--line); }
.about-home-facts dt { color: var(--red); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.about-home-facts dd { margin: 0; color: var(--navy); font-size: .8rem; font-weight: 800; line-height: 1.4; }
.about-home-promise { display: flex; align-items: flex-start; gap: 13px; margin-top: 23px; }
.about-home-promise > .icon { flex: 0 0 auto; margin-top: 2px; color: var(--red); }
.about-home-promise p { display: grid; gap: 4px; margin: 0; }
.about-home-promise strong { color: var(--navy); font-size: .82rem; }
.about-home-promise span { color: var(--muted); font-size: .78rem; line-height: 1.55; }
.about-home-details { position: relative; padding-left: 26px; border-left: 1px solid #cfd8e2; }
.about-home-details-head { padding: 0 0 16px 22px; border-bottom: 2px solid var(--navy); }
.about-home-kicker { margin: 0 0 7px; color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.about-home-details-head > p:last-child { max-width: 470px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.about-home-details article { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 19px 0 19px 22px; border-bottom: 1px solid var(--line); }
.about-home-details article::before { content: ""; position: absolute; top: 26px; left: -31px; width: 9px; height: 9px; background: var(--red); border: 4px solid #f7f9fb; border-radius: 50%; box-sizing: content-box; }
.about-home-details article > span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.about-home-details h3 { margin: -3px 0 6px; font-size: 1.08rem; }
.about-home-details article p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.about-home-location { display: flex; align-items: center; gap: 12px; margin: 22px 0 0 22px; padding: 18px 20px; color: #fff; background: var(--navy); }
.about-home-location .icon { flex: 0 0 auto; color: var(--red); }
.about-home-location div { display: grid; gap: 3px; }
.about-home-location small { color: rgba(255,255,255,.66); font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.about-home-location strong { font-size: .82rem; line-height: 1.4; }

.home-tracking-countries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.home-tracking-option {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 16px 18px;
    overflow: hidden;
    color: var(--navy);
    text-decoration: none;
    background: #fff;
    border: 1px solid #dce4ed;
    border-radius: 14px;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.home-tracking-option::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .28s ease;
}

.home-tracking-option:hover,
.home-tracking-option:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(231, 0, 20, .42);
    box-shadow: 0 16px 34px rgba(9, 30, 52, .12);
}

.home-tracking-option:hover::before,
.home-tracking-option:focus-visible::before { transform: scaleY(1); }
.home-tracking-option:focus-visible { outline: 3px solid rgba(231, 0, 20, .18); outline-offset: 3px; }

.home-tracking-flag {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    background: #f5f7fa;
    border: 1px solid #e1e7ee;
    border-radius: 50%;
}

.home-tracking-flag img {
    display: block;
    width: 42px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(9, 30, 52, .14);
    transition: transform .3s ease;
}

.home-tracking-option:hover .home-tracking-flag img,
.home-tracking-option:focus-visible .home-tracking-flag img { transform: scale(1.1); }

.home-tracking-copy { display: grid; gap: 2px; min-width: 0; }
.home-tracking-copy small,
.home-tracking-copy em { color: var(--muted); font-style: normal; }
.home-tracking-copy small { font-size: .78rem; }
.home-tracking-copy strong { font-size: 1.08rem; line-height: 1.25; }
.home-tracking-copy em { font-size: .82rem; }

.home-tracking-action {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--red);
    background: rgba(231, 0, 20, .08);
    border-radius: 50%;
    transition: color .28s ease, background-color .28s ease, transform .28s ease;
}

.home-tracking-option:hover .home-tracking-action,
.home-tracking-option:focus-visible .home-tracking-action {
    color: #fff;
    background: var(--red);
    transform: translateX(3px) rotate(4deg);
}

.home-tracking-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .84rem;
    text-align: center;
}

.contact-assistance {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: end;
    max-width: 520px;
    margin-top: 28px;
}

.contact-agent {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 240px;
    margin: 0;
    overflow: hidden;
    border-bottom: 3px solid var(--red);
}

.contact-agent::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 50%;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: #ffe9eb;
    transform: translateX(-50%);
}

.contact-agent img {
    position: relative;
    z-index: 1;
    width: 168px;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 12px 16px rgba(8, 31, 52, .12));
}

.contact-assistance .contact-methods { margin-top: 0; }
.contact-assistance .contact-methods > a,
.contact-assistance .contact-methods > div { padding: 9px 0; }

@media (max-width: 760px) {
    .home-tracking-countries { grid-template-columns: 1fr; }
    .home-tracking-option { min-height: 88px; padding: 14px; }
    .home-tracking-flag { width: 52px; height: 52px; }
    .services-home-layout,.about-home-layout { grid-template-columns: 1fr; gap: 34px; }
    .services-home-photo { min-height: 310px; }
    .services-home-list article { min-height: 105px; }
    .about-home-facts { grid-template-columns: 1fr; padding: 0; }
    .about-home-facts div { padding: 13px 0; }
    .about-home-facts div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
    .about-home-details { padding-left: 18px; }
    .about-home-details-head,
    .about-home-details article { padding-left: 12px; }
    .about-home-details article::before { left: -23px; }
    .about-home-location { margin-left: 12px; }
    .contact-assistance { grid-template-columns: 112px minmax(0, 1fr); gap: 15px; }
    .contact-agent { height: 195px; }
    .contact-agent::before { top: 22px; width: 98px; height: 98px; }
    .contact-agent img { width: 132px; }
    .contact-assistance .contact-methods b { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
    .home-tracking-option,
    .home-tracking-option::before,
    .home-tracking-flag img,
    .home-tracking-action { transition: none; }
}

/* Keep destination flags visible above decorative layers on every viewport. */
.home-tracking-option .home-tracking-flag { display: grid; visibility: visible; opacity: 1; position: relative; z-index: 1; flex: 0 0 auto; }
.home-tracking-option .home-tracking-flag img { display: block; visibility: visible; opacity: 1; position: relative; z-index: 1; }
.home-tracking-option .home-tracking-copy,.home-tracking-option .home-tracking-action { position: relative; z-index: 1; }

/* Editorial shipping guides */
.shipping-guides-section{background:#fff}.guides-heading{display:grid;grid-template-columns:1fr .8fr;align-items:end;gap:70px;padding-bottom:32px;border-bottom:2px solid var(--navy)}.guides-heading h2{max-width:650px;margin:0;font-size:clamp(2.2rem,4vw,3.5rem);line-height:1.03;letter-spacing:-.045em}.guides-heading>p{margin:0;color:var(--muted);font-size:.86rem;line-height:1.7}.shipping-guide-list{display:grid;grid-template-columns:repeat(3,1fr)}.shipping-guide-list article{display:grid;grid-template-columns:34px 1fr;gap:16px;padding:34px 32px 30px 0}.shipping-guide-list article+article{padding-left:32px;border-left:1px solid var(--line)}.shipping-guide-list article>span{color:var(--red);font-size:.72rem;font-weight:900;letter-spacing:.08em}.shipping-guide-list h3{margin:-4px 0 11px;font-size:1.2rem}.shipping-guide-list p{margin:0 0 15px;color:var(--muted);font-size:.82rem;line-height:1.68}.shipping-guide-list strong{display:block;color:var(--navy);font-size:.73rem;line-height:1.5}.guides-disclaimer{display:flex;align-items:center;gap:9px;margin:0;padding-top:18px;color:#5c6b79;border-top:1px solid var(--line);font-size:.76rem}.guides-disclaimer .icon{flex:0 0 auto;color:var(--red)}

/* Location and verified customer opinions */
.location-section{padding:0;background:#071d30}.location-layout{display:grid;grid-template-columns:1.25fr .75fr;min-height:430px}.location-map{min-height:430px;margin-left:calc((100vw - min(var(--container),calc(100vw - 40px)))/-2);overflow:hidden;background:#dfe6eb}.location-map iframe{display:block;width:100%;height:100%;min-height:430px;border:0;filter:saturate(.72) contrast(1.04)}.location-copy{align-self:center;padding:58px 0 58px 56px;color:#fff}.location-copy h2{margin:0 0 16px;font-size:clamp(2rem,3vw,3rem);line-height:1.05;letter-spacing:-.04em}.location-copy>p:not(.eyebrow){margin:0 0 18px;color:#b8c8d4;font-size:.85rem;line-height:1.65}.location-copy address{margin:0 0 21px;color:#fff;font-size:.88rem;font-style:normal;font-weight:750;line-height:1.5}.business-hours{margin:0 0 24px;border-top:1px solid rgba(255,255,255,.15)}.business-hours>div{display:flex;justify-content:space-between;gap:20px;padding:9px 0;border-bottom:1px solid rgba(255,255,255,.12);font-size:.73rem}.business-hours dt{color:#a9bbc8}.business-hours dd{margin:0;text-align:right;font-weight:750}.hours-pending{padding-left:13px;border-left:2px solid var(--red)}.location-copy .btn-outline{color:#fff;border-color:rgba(255,255,255,.48);background:transparent}.location-copy .btn-outline:hover{border-color:#fff}.testimonials-section{background:#f5f7f9}.testimonials-heading{max-width:680px;margin-bottom:34px}.testimonials-heading h2{margin:0;font-size:clamp(2rem,3vw,3rem);letter-spacing:-.04em}.testimonials-list{display:grid;grid-template-columns:repeat(2,1fr);gap:0;border-top:2px solid var(--navy);border-bottom:1px solid var(--line)}.testimonials-list blockquote{margin:0;padding:34px 42px 34px 0}.testimonials-list blockquote+blockquote{padding-left:42px;border-left:1px solid var(--line)}.testimonials-list blockquote>p{margin:0 0 22px;color:var(--navy);font-family:Georgia,serif;font-size:1.25rem;line-height:1.55}.testimonials-list footer{display:grid;gap:3px}.testimonials-list strong{font-size:.78rem}.testimonials-list span{color:var(--muted);font-size:.7rem}

/* Original desktop composition, centered inside the site width */
.location-section{padding:48px 0;background:#071d30}.location-layout{overflow:hidden;border:0;border-radius:0;background:#071d30;box-shadow:none}.location-map{margin-left:0}.location-copy{padding:52px 46px}

@media(min-width:901px){.location-layout{grid-template-columns:minmax(0,1.25fr) minmax(360px,.75fr);gap:28px;align-items:center}.location-map{height:390px;min-height:390px;align-self:center;border:3px solid rgba(255,255,255,.14);border-radius:16px;box-shadow:0 18px 38px rgba(0,0,0,.22)}.location-map iframe{height:100%;min-height:390px}.location-copy{padding:48px 24px 48px 0}}

@media(max-width:900px){.guides-heading{grid-template-columns:1fr;gap:18px}.shipping-guide-list{grid-template-columns:1fr}.shipping-guide-list article{padding:25px 0}.shipping-guide-list article+article{padding-left:0;border-top:1px solid var(--line);border-left:0}.location-layout{grid-template-columns:1fr}.location-map{min-height:330px;margin:0}.location-map iframe{min-height:330px}.location-copy{padding:42px 0 50px}.testimonials-list{grid-template-columns:1fr}.testimonials-list blockquote{padding:28px 0}.testimonials-list blockquote+blockquote{padding-left:0;border-top:1px solid var(--line);border-left:0}}

/* Responsive location block */
@media(max-width:900px){.location-section{padding:30px 0;background:#f3f6f8}.location-layout{width:min(720px,calc(100% - 32px));min-height:0;background:#071d30;border:1px solid #dce3e8;border-radius:16px;box-shadow:0 16px 34px rgba(7,29,48,.12);overflow:hidden}.location-map{position:relative;width:100%;min-height:0;margin:0;aspect-ratio:16/9;background:#dfe6eb}.location-map iframe{position:absolute;inset:0;width:100%;height:100%;min-height:0}.location-copy{width:100%;padding:36px 34px 40px}.location-copy h2{font-size:clamp(1.9rem,7vw,2.55rem)}.location-copy address{overflow-wrap:anywhere}.location-copy .btn{max-width:100%}}
@media(max-width:520px){.location-section{padding:18px 0}.location-layout{width:calc(100% - 24px);border-radius:12px}.location-map{aspect-ratio:4/3}.location-copy{padding:27px 21px 29px}.location-copy h2{margin-bottom:12px;font-size:1.9rem}.location-copy>p:not(.eyebrow){font-size:.8rem}.location-copy address{font-size:.8rem}.business-hours>div{align-items:flex-start;gap:12px}.business-hours dt{flex:0 0 43%}.business-hours dd{min-width:0;overflow-wrap:anywhere}.location-copy .btn{width:100%;min-height:50px;padding-inline:14px;text-align:center}}
