@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
    --bg: #07090d;
    --bg-soft: #0f131d;
    --text: #f5f7fb;
    --text-soft: #c6cedc;
    --primary: #5fa0d6;
    --primary-strong: #404187;
    --primary-rgb: 95, 160, 214;
    --primary-strong-rgb: 64, 65, 135;
    --line: rgba(255, 255, 255, 0.14);
    --glass: rgba(10, 12, 18, 0.58);
    --radius: 16px;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

@property --hero-gradient-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 181deg;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.18), transparent 38%), var(--bg);
    color: var(--text);
    line-height: 1.55;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 999;
    background: #fff;
    color: #111;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(8, 10, 16, 0.84);
    backdrop-filter: blur(9px);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand img {
    width: auto;
    max-height: 42px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(var(--primary-rgb), 0.35);
    background: rgba(var(--primary-rgb), 0.14);
    color: var(--text);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.header-cta i {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-grid;
    place-items: center;
    font-size: 1.06rem;
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gradient-angle 12s linear infinite;
}

.header-cta:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.25);
}

.hero {
    position: relative;
    overflow: clip;
    isolation: isolate;
    padding: 4rem 0 2.8rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.96) 23%, rgba(7, 9, 13, 0.73) 57%, rgba(7, 9, 13, 0.3) 100%),
        url("../img/bg-hero.jpg") center/cover no-repeat;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -12rem -16rem auto;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.28) 0%, rgba(var(--primary-rgb), 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    opacity: 0;
    animation: hero-copy-in 0.88s cubic-bezier(0.2, 0.68, 0.2, 1) 0.12s both;
}

.kicker {
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    line-height: 1.14;
}

h1 {
    font-size: clamp(1.72rem, 4.28vw, 3.18rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 15ch;
}

h1.typing {
    position: relative;
}

h1.typing::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 0.88em;
    margin-left: 0.14em;
    border-radius: 2px;
    background: #8fd6ff;
    vertical-align: -0.07em;
    animation: caret-blink 0.82s steps(1, end) infinite;
}

h1 span {
    color: var(--primary);
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gradient-angle 12s linear infinite;
}

.lead {
    margin: 0;
    color: var(--text-soft);
    max-width: 58ch;
    font-size: clamp(1rem, 2.1vw, 1.15rem);
}

.hero-points {
    list-style: none !important;
    padding: 0;
    margin-left: 0;
    margin: 1.2rem 0 1.4rem;
    display: grid;
    gap: 0.55rem;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    list-style: none;
    color: #e8edf8;
}

.hero-points li::before {
    content: none !important;
}

.hero-points li::marker {
    content: "";
}

.hero-points li i {
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gradient-angle 12s linear infinite;
    font-size: 0.94rem;
    margin-top: 0.26rem;
    flex: 0 0 auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.88rem 1.4rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn i {
    font-size: 1rem;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    color: #f5f7fb;
    box-shadow: 0 10px 24px rgba(0, 168, 231, 0.35);
    animation: hero-gradient-angle 12s linear infinite;
}

.btn-primary:hover {
    box-shadow: 0 14px 28px rgba(0, 168, 231, 0.5);
}

.btn-outline {
    color: var(--text);
    border-color: var(--line);
    background: rgba(14, 18, 28, 0.65);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.microcopy {
    margin-top: 0.85rem;
    color: #a7b0c0;
    font-size: 0.92rem;
}

.hero-media {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center;
    opacity: 0;
    animation: hero-media-in 0.95s cubic-bezier(0.2, 0.68, 0.2, 1) 0.28s both;
}

.phone-image {
    width: auto;
    height: auto;
    max-width: min(560px, 100%);
    max-height: 760px;
    object-fit: contain;
    filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.45));
    transform-origin: 52% 62%;
    will-change: transform;
    animation: hero-phone-wiggle 7.8s ease-in-out 1.05s infinite;
}

.floating-badges {
    margin: 0;
    padding: 0;
    list-style: none;
}

.floating-badges li {
    position: absolute;
    min-width: 300px;
    padding: 0.45rem 0.9rem 0.45rem 0.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: linear-gradient(90deg, rgba(15, 20, 32, 0.76), rgba(96, 104, 125, 0.36));
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    animation: badge-in 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.badge-arrow {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 52px;
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    color: #eef4ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 18px rgba(30, 66, 126, 0.42);
    animation: hero-gradient-angle 12s linear infinite;
}

.badge-arrow i {
    font-size: 1.35rem;
    transform: translate(0, -1px);
    text-shadow: 0 1px 6px rgba(8, 12, 30, 0.35);
}

.floating-badges li:nth-child(1) {
    top: 20%;
    left: -4%;
    animation-delay: 0.82s;
}

.floating-badges li:nth-child(2) {
    top: 51%;
    right: -10%;
    animation-delay: 1s;
}

.floating-badges li:nth-child(3) {
    bottom: 14%;
    left: -4%;
    animation-delay: 1.18s;
}

.section {
    padding: 3.9rem 0;
}

.section h2 {
    font-size: clamp(1.55rem, 2.9vw, 2.25rem);
    margin-bottom: 1rem;
}

.trust {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

.trust-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
    display: grid;
    gap: 0.95rem;
    align-content: start;
}

.trust-card {
    background: rgba(21, 26, 39, 0.6);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.js .trust-item.reveal-card {
    opacity: 0;
    transform: translateY(24px);
}

.js .trust-item.reveal-card.is-visible {
    animation: trust-card-in 0.78s cubic-bezier(0.2, 0.68, 0.2, 1) both;
}

.js .trust-item.reveal-card.is-visible:nth-child(1) {
    animation-delay: 0.08s;
}

.js .trust-item.reveal-card.is-visible:nth-child(2) {
    animation-delay: 0.2s;
}

.js .trust-item.reveal-card.is-visible:nth-child(3) {
    animation-delay: 0.32s;
}

.trust-card h3 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
}

.trust-card h3 i {
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gradient-angle 12s linear infinite;
}

.trust-card p {
    margin: 0;
    color: #c2cbda;
}

.trust-photo-card {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(12, 16, 25, 0.74);
}

.trust-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 260px;
    object-fit: cover;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-list li {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(11, 15, 23, 0.62);
    display: flex;
    align-items: flex-start;
    gap: 0.74rem;
}

.services-list li i {
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gradient-angle 12s linear infinite;
    margin-top: 0.16rem;
    font-size: 1.05rem;
    flex: 0 0 auto;
}

.service-copy h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.28;
    color: #f2f6ff;
}

.service-copy p {
    margin: 0.28rem 0 0;
    font-size: 0.92rem;
    line-height: 1.42;
    color: #aeb8cb;
}

.services {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

.services::before {
    content: none;
}

.services > .container {
    position: static;
    z-index: auto;
}

.issues {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
}

.issues::before {
    content: none;
}

.issues > .container {
    position: static;
    z-index: auto;
}

.issues-intro {
    margin: 0.4rem 0 0;
    max-width: 86ch;
    color: #b9c4d7;
    font-size: 0.98rem;
}

.issues-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(10, 14, 23, 0.62);
    padding: 0.95rem 1rem;
}

.js .issue-card.reveal-card {
    opacity: 0;
    transform: translateY(24px);
}

.js .issue-card.reveal-card.is-visible {
    animation: trust-card-in 0.7s cubic-bezier(0.2, 0.68, 0.2, 1) both;
}

.issue-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.issue-card p {
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #b5bfd1;
}

.issues-cta-line {
    margin: 1rem 0 0;
    color: #c3cddd;
}

.issues-cta-line a {
    color: #8bcfff;
    font-weight: 700;
}

.issues-cta-line a:hover {
    color: #a9dcff;
}

.store {
    padding-top: 0;
    background: transparent;
    border-top: 0;
}

.store-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 1.25rem;
    align-items: stretch;
}

.store-media {
    margin: 0;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.42);
    background: rgba(10, 14, 22, 0.72);
}

.store-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    transition: transform 520ms cubic-bezier(0.22, 0.68, 0.2, 1);
    will-change: transform;
}

.store-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.store-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(8, 12, 18, 0.62);
    color: #eef4ff;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(5px);
}

.store-slider-btn:hover {
    border-color: rgba(var(--primary-rgb), 0.8);
    background: rgba(var(--primary-rgb), 0.32);
}

.store-slider-btn:focus-visible {
    outline: 2px solid rgba(var(--primary-rgb), 0.95);
    outline-offset: 2px;
}

.store-slider-btn-prev {
    left: 0.72rem;
}

.store-slider-btn-next {
    right: 0.72rem;
}

.store-slider-btn i {
    font-size: 0.88rem;
}

.store-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 0.9rem;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.store-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.32);
    padding: 0;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.store-slider-dot.is-active {
    background: linear-gradient(var(--hero-gradient-angle), #00a8e7 0%, #2d2fb0 100%);
    border-color: rgba(var(--primary-rgb), 0.95);
    transform: scale(1.12);
}

.store-slider-dot:focus-visible {
    outline: 2px solid rgba(var(--primary-rgb), 0.95);
    outline-offset: 2px;
}

.store-media figcaption {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.46rem 0.72rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #eff6ff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(8, 12, 18, 0.58);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.store-copy {
    border: 1px solid rgba(var(--primary-rgb), 0.26);
    border-radius: 18px;
    padding: clamp(1rem, 2.4vw, 1.5rem);
    background:
        linear-gradient(
            150deg,
            rgba(var(--primary-rgb), 0.14),
            rgba(var(--primary-strong-rgb), 0.12) 48%,
            rgba(10, 15, 23, 0.78)
        );
}

.store-kicker {
    margin: 0 0 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    font-weight: 800;
    color: #7fc2ef;
}

.store-copy h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    line-height: 1.2;
}

.store-lead {
    margin: 0.78rem 0 0;
    color: #c1ccdf;
}

.store-points {
    list-style: none;
    margin: 1rem 0 1.15rem;
    padding: 0;
    display: grid;
    gap: 0.58rem;
}

.store-points li {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.68rem 0.78rem;
    background: rgba(8, 12, 19, 0.54);
}

.store-points strong {
    display: block;
    font-size: 0.95rem;
    color: #f3f8ff;
}

.store-points span {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #a8b3c7;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
}

.store-map-btn {
    border-color: rgba(var(--primary-rgb), 0.45);
    background: rgba(10, 14, 23, 0.62);
}

.store-map-btn:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.14);
}

.js .store-media.reveal-card,
.js .store-copy.reveal-card {
    opacity: 0;
    transform: translateY(24px);
}

.js .store-media.reveal-card.is-visible {
    animation: trust-card-in 0.8s cubic-bezier(0.2, 0.68, 0.2, 1) both;
}

.js .store-copy.reveal-card.is-visible {
    animation: trust-card-in 0.8s cubic-bezier(0.2, 0.68, 0.2, 1) 0.16s both;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(10, 14, 23, 0.68);
    margin-top: 0.85rem;
    overflow: hidden;
}

.faq summary {
    cursor: pointer;
    padding: 0.95rem 1rem;
    font-weight: 700;
}

.faq p {
    margin: 0;
    color: var(--text-soft);
    padding: 0 1rem 1rem;
}

.final-cta {
    padding-top: 0;
}

.final-cta-box {
    background:
        linear-gradient(
            145deg,
            rgba(var(--primary-rgb), 0.28),
            rgba(var(--primary-strong-rgb), 0.18) 48%,
            rgba(var(--primary-rgb), 0.05)
        ),
        rgba(15, 20, 31, 0.85);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.2rem, 3vw, 2.2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.final-cta-box p {
    margin: 0.5rem 0 0;
    color: #d4dbea;
}

.footer {
    border-top: 1px solid var(--line);
    background: #080b12;
}

.footer-inner {
    min-height: 85px;
    padding: 1rem 0;
    display: grid;
    gap: 0.2rem;
    color: #b5bfd1;
    font-size: 0.92rem;
}

.footer p {
    margin: 0;
}

.footer a {
    color: #e8eefb;
}

.float-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(180deg, #26d367 0%, #1db955 100%);
    color: #062112;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.76rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(4, 57, 25, 0.45);
    transform-origin: center;
    animation: wa-pulse 2.6s ease-in-out infinite;
}

.float-whatsapp:hover {
    transform: scale(1.06);
    animation-play-state: paused;
}

.float-whatsapp i {
    font-size: 1.18rem;
    line-height: 1;
}

@keyframes wa-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(4, 57, 25, 0.45);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 18px 36px rgba(5, 88, 40, 0.58);
    }
}

@keyframes hero-copy-in {
    from {
        opacity: 0;
        transform: translate3d(-24px, 26px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-media-in {
    from {
        opacity: 0;
        transform: translate3d(24px, 30px, 0) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes badge-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hero-phone-wiggle {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    22% {
        transform: translate3d(-3px, 1px, 0) rotate(-0.75deg);
    }
    48% {
        transform: translate3d(2px, -2px, 0) rotate(0.62deg);
    }
    74% {
        transform: translate3d(-1px, 1px, 0) rotate(-0.42deg);
    }
}

@keyframes trust-card-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-gradient-angle {
    from {
        --hero-gradient-angle: 181deg;
    }
    to {
        --hero-gradient-angle: 541deg;
    }
}

@keyframes caret-blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    h1 span {
        animation: none;
    }

    .btn-primary {
        animation: none;
    }

    .header-cta i,
    .hero-points li i,
    .badge-arrow,
    .trust-card h3 i,
    .services-list li i {
        animation: none;
    }

    h1.typing::after {
        animation: none;
    }

    .store-slider-track {
        transition: none;
    }

    .hero-copy,
    .hero-media,
    .phone-image,
    .floating-badges li,
    .trust-card,
    .js .issue-card.reveal-card,
    .js .trust-item.reveal-card,
    .js .store-media.reveal-card,
    .js .store-copy.reveal-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .float-whatsapp {
        animation: none;
    }
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 460px;
    }

    .floating-badges li:nth-child(1) {
        left: 3%;
    }

    .floating-badges li:nth-child(2) {
        right: 2%;
    }

    .floating-badges li:nth-child(3) {
        left: 3%;
    }

    .issues-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .header-cta {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .hero {
        padding-top: 2.8rem;
    }

    .hero-media {
        min-height: 710px;
        display: grid;
        place-items: center;
    }

    .phone-image {
        max-width: min(400px, 86vw);
        max-height: 600px;
        margin-top: 0;
    }

    .floating-badges {
        position: absolute;
        inset: 0;
        width: 100%;
        margin: 0;
        transform: none;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        padding-top: 57%;
    }

    .floating-badges li {
        position: static;
        min-width: min(88vw, 360px);
        width: min(88vw, 360px);
        margin: 0;
        padding: 0.56rem 0.78rem 0.56rem 0.5rem;
        font-size: 0.84rem;
        min-height: 56px;
    }

    .floating-badges li:nth-child(1) {
        top: auto;
        left: auto;
        right: auto;
    }

    .floating-badges li:nth-child(2) {
        top: auto;
        left: auto;
        right: auto;
    }

    .floating-badges li:nth-child(3) {
        top: auto;
        left: auto;
        right: auto;
    }

    .badge-arrow {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 12px;
    }

    .badge-arrow i {
        font-size: 1.08rem;
    }

    .services-list,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .store-grid {
        grid-template-columns: 1fr;
    }

    .store-slide {
        min-height: 280px;
    }

    .store-actions {
        width: 100%;
    }

    .store-actions .btn {
        flex: 1 1 220px;
    }

    .final-cta-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .final-cta-box > div {
        width: 100%;
    }

    .final-cta-box .btn {
        align-self: center;
    }

    .footer-inner {
        text-align: center;
        justify-items: center;
        gap: 0.4rem;
        padding: 1rem 0 6.6rem;
    }

    .float-whatsapp {
        bottom: 1.25rem;
    }
}

@media (max-width: 580px) {
    .topbar-inner {
        min-height: 66px;
    }

    .brand img {
        max-height: 36px;
    }

    .hero-media {
        min-height: 640px;
    }

    .phone-image {
        max-width: min(360px, 92vw);
        max-height: 520px;
        margin-top: 0;
    }

    .floating-badges {
        position: absolute;
        inset: 0;
        width: 100%;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding-top: 59%;
    }

    .floating-badges li {
        position: static;
        min-width: min(92vw, 340px);
        width: min(92vw, 340px);
        margin: 0;
        padding: 0.42rem 0.72rem 0.42rem 0.42rem;
        font-size: 0.82rem;
        min-height: 54px;
    }

    .floating-badges li:nth-child(1) {
        top: auto;
        left: auto;
        right: auto;
    }

    .floating-badges li:nth-child(2) {
        top: auto;
        left: auto;
        right: auto;
    }

    .floating-badges li:nth-child(3) {
        top: auto;
        left: auto;
        right: auto;
    }

    .badge-arrow {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 11px;
    }

    .badge-arrow i {
        font-size: 1.02rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .issues-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .issue-card {
        padding: 0.78rem 0.82rem;
    }

    .issue-card h3 {
        font-size: 0.9rem;
    }

    .issue-card p {
        font-size: 0.82rem;
        line-height: 1.38;
    }

    .footer-inner {
        font-size: 0.9rem;
        padding-bottom: 7.1rem;
    }

    .float-whatsapp {
        right: 0.8rem;
        bottom: 1rem;
    }
}
