:root {
    --color-primary: #00e014;
    --color-primary-dark: #00b312;
    --color-secondary: #7a7676;
    --color-dark: #1f1f1f;
    --color-muted: #676b6f;
    --color-light: #f3f6f1;
    --color-white: #ffffff;
    --container-width: min(1120px, 92vw);
    --shadow-soft: 0 16px 40px rgba(31, 47, 46, 0.08);
    --shadow-strong: 0 24px 64px rgba(0, 224, 20, 0.16);
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
}

h1,
h2,
h3 {
    margin: 0 0 0.7em;
    font-weight: 700;
    line-height: 1.15;
}

p {
    margin: 0 0 1em;
    color: var(--color-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.brand-mark {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    display: block;
    height: clamp(48px, 7vw, 80px);
    width: auto;
}

.brand-mark--footer {
    display: inline-block;
    margin-bottom: 0.6rem;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 600;
    color: var(--color-dark);
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
}

.nav-toggle__line {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    padding: 3.2rem 0 4.5rem;
    background: linear-gradient(135deg, rgba(0, 224, 20, 0.13), rgba(122, 118, 118, 0.12));
    scroll-margin-top: 110px;
}

.hero__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.hero__kicker {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.promo-ribbon {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.1rem;
    padding: 0.85rem 3.6rem 0.85rem 1.8rem;
    background: linear-gradient(135deg, #ff4f4f, #ff4f4f);
    border-radius: 18px 18px 18px 18px;
    /* box-shadow: 0 18px 30px rgba(184, 0, 0, 0.35); */
    overflow: hidden;
    /* clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%); */
}

.promo-ribbon--media {
    margin-bottom: 1.4rem;
}

.promo-ribbon::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 14px 44px 44px 14px;
    border: 1px dashed rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.promo-ribbon span {
    display: inline-block;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.92rem;
    line-height: 1.2;
    padding-right: 1.2rem;
}

.promo-ribbon::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 45%, rgba(178, 0, 0, 0.9) 46% 100%);
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 2px rgba(184, 0, 0, 0.4);
}

.hero__text {
    max-width: 36rem;
    color: rgba(13, 27, 42, 0.82);
}

.hero__price {
    margin: 1.5rem 0;
    padding: 1.4rem 1.6rem;
    border-radius: 20px;
    background: rgba(0, 224, 20, 0.08);
    color: rgba(31, 31, 31, 0.88);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.button--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.button--primary:hover,
.button--primary:focus-visible {
    background-color: var(--color-primary-dark);
}

.button--ghost {
    background-color: transparent;
    border-color: rgba(13, 27, 42, 0.16);
    color: var(--color-dark);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: var(--color-dark);
}

.button--whatsapp {
    background-color: #00af12;
    border-color: #00990f;
    color: var(--color-white);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
    background-color: #00990f;
    border-color: #007e0d;
}

.button--whatsapp-secondary {
    color: #005f0b;
    border-color: rgba(0, 95, 11, 0.24);
}

.button--whatsapp-secondary:hover,
.button--whatsapp-secondary:focus-visible {
    border-color: #005f0b;
    color: #004a09;
}

.button--inverse {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.35);
}

.button--inverse:hover,
.button--inverse:focus-visible {
    border-color: rgba(255, 255, 255, 0.75);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    color: rgba(13, 27, 42, 0.75);
    font-weight: 600;
}

.hero__badges li {
    background-color: var(--color-white);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

[data-highlight] {
    color: var(--color-primary);
}

.hero__media {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    align-items: center;
    flex-direction: column;
}

.hero__media-frame {
    position: relative;
    width: min(420px, 100%);
    padding: 0.9rem;
    border-radius: 34px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(217, 241, 219, 0.7));
    box-shadow: 0 30px 60px rgba(31, 47, 46, 0.22);
    overflow: hidden;
    z-index: 0;
}

.hero__media-frame::after {
    content: "";
    position: absolute;
    inset: 12%;
    background: radial-gradient(circle at top, rgba(0, 224, 20, 0.18), transparent 70%);
    filter: blur(24px);
    opacity: 0.85;
    z-index: 0;
}

.hero__media-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.media-strip {
    
    width: 100%;
    max-height: 240px;
    height: min(240px, 42vw);
    background: linear-gradient(135deg, rgba(217, 241, 219, 0.45), rgba(122, 118, 118, 0.12));
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 0.85) 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 0.85) 88%, transparent 100%);
}

.media-strip__track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: media-marquee var(--marquee-duration, 24s) linear infinite;
}

.media-strip__track.is-paused {
    animation-play-state: paused;
}

.media-strip__item {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.media-strip__placeholder,
.media-strip__item img {
    width: 200px;
    height: 200px;
    max-width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.media-strip__placeholder {
    background: rgba(255, 255, 255, 0.92);
    color: rgba(31, 31, 31, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.media-strip__placeholder span {
    padding: 1.2rem;
}

.media-strip__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-white);
    border-radius: inherit;
}

.media-strip__placeholder--video video {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    background: #000;
}

@keyframes media-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: 5rem 0;
    scroll-margin-top: 110px;
}

.section--light {
    background-color: var(--color-light);
}

.section--accent {
    background: linear-gradient(135deg, #064d1d, #4f4c4c);
    color: var(--color-white);
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section__header--left {
    text-align: left;
    margin-left: 0;
}

.section__header--inverse p {
    color: rgba(255, 255, 255, 0.75);
}

.section__header p {
    color: inherit;
}

.split {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.split--reverse {
    direction: rtl;
}

.split--reverse > * {
    direction: ltr;
}

.accent-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.accent-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background-color: rgba(0, 224, 20, 0.08);
    color: rgba(13, 27, 42, 0.85);
}

.accent-list li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), rgba(122, 118, 118, 0.9));
    flex-shrink: 0;
}


.card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.movil {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.movil__media {
    display: flex;
    justify-content: center;
}

.movil__media img {
    width: min(340px, 100%);
    max-width: 100%;
    filter: drop-shadow(0 24px 48px rgba(13, 27, 42, 0.22));
    border-radius: 32px;
}

.movil__content {
    display: grid;
    gap: 2rem;
}

.movil__highlights {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.movil-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow-soft);
}

.movil-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.card {
    padding: 2.4rem 2rem;
    border-radius: 24px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.pricing-highlight {
    max-width: 880px;
    margin: 0 auto;
    padding: 3rem 2.8rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(14px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 2.6rem;
    text-align: center;
}

.pricing-highlight__value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-white);
}

.pricing-highlight__label {
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(0, 224, 20, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    letter-spacing: 0.16em;
}

.pricing-highlight__amount {
    font-size: clamp(3.2rem, 8vw, 4.4rem);
    font-weight: 800;
    line-height: 1;
}

.pricing-highlight__suffix {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: normal;
}

.pricing-highlight__statement {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-packages {
    display: grid;
    gap: 1.5rem;
}

.pricing-packages__row {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-package {
    border-radius: 24px;
    padding: 2rem 1.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    text-align: left;
    display: grid;
    gap: 1rem;
}

.pricing-package--base {
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.pricing-package--base .pricing-package__price {
    color: var(--color-primary);
}

.pricing-package__price {
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-package__tag {
    margin: -0.6rem 0 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.pricing-package__meta {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-package--base .pricing-package__meta {
    color: var(--color-muted);
}

.pricing-package__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    color: inherit;
}

.pricing-package__list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.45;
}

.pricing-package__list li::before {
    content: "✔";
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-package__caption {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.pricing-highlight__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.pricing-highlight__note {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
}

.service-highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-highlights strong {
    display: block;
    margin-bottom: 0.4rem;
}

.quote {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background-color: var(--color-light);
    box-shadow: var(--shadow-soft);
}

.quote blockquote {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(13, 27, 42, 0.9);
    font-weight: 600;
}

.quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--color-primary);
    font-weight: 600;
}

.callout {
    text-align: center;
    max-width: 760px;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 224, 20, 0.12), rgba(122, 118, 118, 0.08));
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.5rem;
}

.country-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.country-card {
    border-radius: 24px;
    padding: 2rem 1.8rem;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1rem;
}

.country-card__flag {
    width: 56px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(31, 47, 46, 0.12);
    position: relative;
    background: var(--flag-gradient, #dddddd);
}

.country-card__flag::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--flag-overlay, transparent);
}

.country-card__flag--cl {
    background: linear-gradient(180deg, #ffffff 50%, #d52b1e 50%);
}

.country-card__flag--cl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background-color: #0039a6;
}

.country-card__flag--cl::after {
    content: "";
    position: absolute;
    top: 18%;
    left: 14%;
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.country-card__flag--py {
    --flag-gradient: linear-gradient(180deg, #d80621 33%, #ffffff 33%, #ffffff 66%, #0033a0 66%);
}

.country-card__flag--co {
    --flag-gradient: linear-gradient(180deg, #fcd116 50%, #003893 75%, #ce1126 75%);
}

.country-card__flag--uy {
    background: repeating-linear-gradient(180deg, #ffffff 0 6px, #3a75c4 6px 12px);
}

.country-card__flag--uy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 60%;
    background-color: #ffffff;
}

.country-card__flag--uy::after {
    content: "";
    position: absolute;
    top: 18%;
    left: 13%;
    width: 18px;
    height: 18px;
    background-color: #ffcc00;
    clip-path: polygon(50% 0%, 59% 28%, 74% 16%, 68% 37%, 88% 37%, 69% 50%, 86% 61%, 64% 59%, 70% 80%, 50% 66%, 30% 80%, 36% 59%, 14% 61%, 31% 50%, 12% 37%, 32% 37%, 26% 16%, 41% 28%);
}

.country-card__flag--us {
    --flag-gradient: repeating-linear-gradient(180deg, #b22234 0 6px, #ffffff 6px 12px);
    --flag-overlay: linear-gradient(90deg, #3c3b6e 0 40%, transparent 40%);
}

.country-card__flag--pe {
    --flag-gradient: linear-gradient(90deg, #d91023 0 33%, #ffffff 33% 66%, #d91023 66%);
}

.country-card__body h3 {
    margin-bottom: 0.4rem;
}

.country-card__address,
.country-card__contact,
.country-card__hours {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.country-card__contact a {
    color: var(--color-primary);
    font-weight: 600;
}

.country-grid__note {
    margin-top: 2rem;
    text-align: center;
    color: var(--color-muted);
}

.contact {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.contact--whatsapp {
    gap: 2.5rem;
}

.contact__call {
    padding: 2.8rem 2.4rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 224, 20, 0.12), rgba(122, 118, 118, 0.08));
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.8rem;
}

.contact__info {
    display: grid;
    gap: 1.5rem;
    padding-left: 0.5rem;
}

.info-block {
    padding: 1.6rem 1.8rem;
    border-radius: 20px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.info-block strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-dark);
}

.info-block a {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
}

.contact__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact__note {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 3.5rem 0 2rem;
}

.footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer ul {
    list-style: none;
    margin: 0.6rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--color-white);
}

.footer__note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #00af12;
    color: var(--color-white);
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 18px 32px rgba(0, 175, 18, 0.4);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 150;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(0, 175, 18, 0.45);
}

@media (max-width: 960px) {
    .hero {
        padding-top: 6rem;
    }

    .site-header .container {
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        inset: calc(100% + 0.5rem) 1rem auto;
        background-color: var(--color-white);
        padding: 1rem 1.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-nav[data-open="true"] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .pricing-highlight {
        padding: 2.4rem 2rem;
        gap: 2rem;
    }

    .country-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 720px) {
    .hero__badges {
        flex-direction: column;
        align-items: stretch;
    }

    .media-strip__placeholder,
    .media-strip__item img {
        width: 160px;
        height: 160px;
    }

    .split--reverse {
        direction: ltr;
    }

    .split--reverse > * {
        direction: ltr;
    }
    
    .contact__call {
        padding: 2.2rem 2rem;
    }

    .movil {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .pricing-packages__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    :root {
        font-size: 15px;
    }

    .site-header .container {
        gap: 1rem;
    }

    .container {
        width: min(96vw, 540px);
    }

    .section {
        padding: 4rem 0;
    }

    .hero__cta {
        flex-direction: column;
    }

    .contact__info {
        padding-left: 0;
    }

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
    }
}
.accent-list a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(0, 224, 20, 0.5);
}

.accent-list a:hover,
.accent-list a:focus-visible {
    text-decoration-color: var(--color-primary);
}
.hero__metric {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: rgba(0, 224, 20, 0.12);
    box-shadow: var(--shadow-soft);
}

.hero__metric-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-primary);
}

.hero__metric-label {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.75);
    display: inline-flex;
    align-items: center;
}
