html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: var(--fp-black);
}

:root {
    --fp-black: #070707;
    --fp-dark: #101014;
    --fp-card: rgba(255, 255, 255, .08);
    --fp-white: #ffffff;
    --fp-muted: rgba(255, 255, 255, .72);
    --fp-pink: #ed145b;
    --fp-blue: #00a9e8;
    --fp-yellow: #ffd21f;
    --fp-radius: 32px;
    --fp-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

body {
    background: var(--fp-black);
}

.fp-landing {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 10%, rgba(237, 20, 91, .28), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(0, 169, 232, .22), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255, 210, 31, .10), transparent 35%),
        var(--fp-black);
    color: var(--fp-white);
    overflow: hidden;
    font-family: 'Poppins', system-ui, sans-serif;
    outline: none;
    border: none;
}

/* NAV */
.fp-nav {
    width: min(1180px, calc(100% - 32px));
    padding: 10px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .30);
    margin: 0;
    transition: all .3s ease;
}

/* Logo grande arriba */
.fp-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 3;
}

.fp-brand img {
    height: 110px;
    width: auto;
    display: block;
    transform: translateY(10px);
    transition: all .3s ease;
}

/* Logo compacto al hacer scroll */
.fp-nav.fp-scrolled {
    min-height: 76px;
    padding: 10px 28px;
}

.fp-nav.fp-scrolled .fp-brand img {
    height: 58px;
    transform: translateY(0);
}

.fp-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.fp-nav-links a {
    color: var(--fp-muted);
    text-decoration: none;
    font-weight: 800;
    font-size: .95rem;
    transition: .25s ease;
}

.fp-nav-links a:hover {
    color: var(--fp-white);
}

.fp-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 3;
}

.fp-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--fp-white);
    border-radius: 999px;
    transition: .25s ease;
}

.fp-nav.fp-open .fp-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.fp-nav.fp-open .fp-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.fp-nav.fp-open .fp-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* BOTONES */
.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 950;
    transition: .25s ease;
    border: 0;
}

.fp-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.fp-btn-nav,
.fp-btn-primary {
    background: linear-gradient(135deg, var(--fp-pink), #ff4f8b);
    color: var(--fp-white);
    box-shadow: 0 18px 45px rgba(237, 20, 91, .35);
}

.fp-btn-nav {
    padding: 13px 22px;
}

.fp-btn-primary,
.fp-btn-outline,
.fp-btn-light {
    padding: 16px 26px;
}

.fp-btn-outline {
    color: var(--fp-white);
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .06);
}

.fp-btn-light {
    background: var(--fp-white);
    color: var(--fp-black);
}

/* HERO */
.fp-hero {
    width: min(1180px, calc(100% - 32px));
    min-height: 720px;
    margin: 0 auto;
    padding-top: 145px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    position: relative;
}

.fp-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: .55;
    pointer-events: none;
}

.fp-glow-pink {
    background: var(--fp-pink);
    left: -80px;
    top: 120px;
}

.fp-glow-blue {
    background: var(--fp-blue);
    right: -80px;
    bottom: 120px;
}

.fp-pill {
    display: inline-flex;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(237, 20, 91, .16);
    color: #ff6fa1;
    border: 1px solid rgba(237, 20, 91, .28);
    font-size: .85rem;
    font-weight: 950;
    margin-bottom: 20px;
}

.fp-hero h1 {
    font-size: clamp(3.2rem, 8vw, 7.2rem);
    line-height: .87;
    letter-spacing: -4px;
    font-weight: 1000;
    margin: 0 0 26px;
    background: linear-gradient(135deg, #fff, #ff7bad 45%, #00a9e8);
    -webkit-background-clip: text;
    color: transparent;
}

.fp-hero p {
    font-size: 1.18rem;
    line-height: 1.8;
    color: var(--fp-muted);
    max-width: 630px;
}

.fp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.fp-stats {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fp-stats div {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    padding: 20px;
}

.fp-stats strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 1000;
}

.fp-stats span {
    color: var(--fp-muted);
    font-size: .9rem;
}

.fp-hero-visual {
    min-height: 560px;
    position: relative;
    display: grid;
    place-items: center;
}

.fp-logo-orbit {
    width: min(430px, 88vw);
    height: min(430px, 88vw);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(var(--fp-black), var(--fp-black)) padding-box,
        linear-gradient(135deg, var(--fp-pink), var(--fp-blue), var(--fp-yellow)) border-box;
    border: 3px solid transparent;
    box-shadow: var(--fp-shadow);
    animation: fpPulse 4s ease-in-out infinite;
}

.fp-logo-orbit img {
    width: 84%;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .42));
}

.fp-float-card {
    position: absolute;
    padding: 16px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fpFloat 5s ease-in-out infinite;
}

.fp-float-card span {
    font-size: 1.4rem;
}

.fp-float-card strong {
    font-weight: 950;
}

.card-one {
    top: 70px;
    left: 0;
}

.card-two {
    right: 0;
    top: 190px;
    animation-delay: .8s;
}

.card-three {
    bottom: 80px;
    left: 40px;
    animation-delay: 1.4s;
}

/* SECCIONES */
.fp-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 90px 0;
}

.fp-section-head {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.fp-section-head h2,
.fp-sales-content h2,
.fp-final-cta h2 {
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 1000;
    margin: 0 0 18px;
}

.fp-section-head p,
.fp-sales-content p,
.fp-final-cta p {
    color: var(--fp-muted);
    line-height: 1.8;
    font-size: 1.06rem;
}

/* PRODUCTOS */
.fp-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fp-product-card {
    background: var(--fp-card);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--fp-radius);
    padding: 32px;
    min-height: 250px;
    transition: .28s ease;
    position: relative;
    overflow: hidden;
}

.fp-product-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(237, 20, 91, .22);
    filter: blur(10px);
}

.fp-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(237, 20, 91, .45);
    box-shadow: 0 28px 70px rgba(237, 20, 91, .16);
}

.fp-product-card span {
    font-size: 2.2rem;
}

.fp-product-card h3 {
    font-size: 1.2rem;
    font-weight: 1000;
    margin: 24px 0 12px;
}

.fp-product-card p {
    color: var(--fp-muted);
    line-height: 1.7;
}

/* PROCESO */
.fp-process {
    background: linear-gradient(135deg, rgba(237, 20, 91, .12), rgba(0, 169, 232, .10));
    border-radius: 46px;
    padding: 80px 42px;
}

.fp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fp-step {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--fp-radius);
    padding: 34px;
}

.fp-step span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--fp-pink);
    color: white;
    font-weight: 1000;
    margin-bottom: 24px;
}

.fp-step h3 {
    font-weight: 1000;
}

.fp-step p {
    color: var(--fp-muted);
    line-height: 1.7;
}

/* GALERÍA */
.fp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 18px;
}

.fp-gallery-item {
    border-radius: 34px;
    padding: 26px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .45)),
        linear-gradient(135deg, var(--fp-pink), var(--fp-blue));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .30);
    transition: .28s ease;
}

.fp-gallery-item:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .5)),
        linear-gradient(135deg, #ff8a00, var(--fp-pink));
}

.fp-gallery-item:nth-child(3) {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .5)),
        linear-gradient(135deg, var(--fp-blue), #7d4dff);
}

.fp-gallery-item:nth-child(4) {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .5)),
        linear-gradient(135deg, var(--fp-yellow), var(--fp-pink));
}

.fp-gallery-item:hover {
    transform: scale(1.025);
}

.fp-gallery-item::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    top: -50px;
    right: -50px;
}

.fp-gallery-item span {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 1000;
}

.fp-gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.fp-gallery-item.wide {
    grid-column: span 2;
}

/* SALES */
.fp-sales {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
    align-items: center;
}

.fp-sales-content {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 46px;
    padding: 48px;
    box-shadow: var(--fp-shadow);
}

.fp-sales-content ul {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: grid;
    gap: 12px;
}

.fp-sales-content li {
    background: rgba(255, 255, 255, .07);
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--fp-muted);
    font-weight: 800;
}

.fp-sales-content li::before {
    content: "✓";
    color: var(--fp-pink);
    margin-right: 10px;
    font-weight: 1000;
}

.fp-sales-visual {
    display: grid;
    place-items: center;
}

.fp-phone {
    width: min(340px, 100%);
    min-height: 560px;
    border-radius: 44px;
    background: #0f0f13;
    border: 10px solid #202027;
    box-shadow: var(--fp-shadow);
    padding: 28px 18px;
    position: relative;
}

.fp-phone-top {
    width: 90px;
    height: 7px;
    border-radius: 999px;
    background: #333;
    margin: 0 auto 34px;
}

.fp-chat {
    max-width: 82%;
    padding: 14px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    line-height: 1.45;
    font-weight: 750;
    animation: fpChat 4s ease-in-out infinite;
}

.fp-chat.left {
    background: rgba(255, 255, 255, .10);
    color: white;
    margin-right: auto;
}

.fp-chat.right {
    background: var(--fp-pink);
    color: white;
    margin-left: auto;
}

/* CTA */
.fp-final-cta {
    width: min(1060px, calc(100% - 32px));
    margin: 60px auto 100px;
    border-radius: 54px;
    padding: 76px 34px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 24%),
        linear-gradient(135deg, var(--fp-pink), #ff7a00);
    box-shadow: 0 34px 100px rgba(237, 20, 91, .35);
}

.fp-final-cta p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, .86);
}

.fp-final-cta .fp-pill {
    background: rgba(255, 255, 255, .18);
    color: white;
    border-color: rgba(255, 255, 255, .25);
}

.fp-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 16px 22px;
    border-radius: 999px;
    font-weight: 1000;
    box-shadow: 0 18px 50px rgba(37, 211, 102, .38);
    transition: .25s ease;
}

.fp-whatsapp:hover {
    color: white;
    transform: translateY(-5px);
}

/* ANIMACIONES */
.fp-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: .8s ease;
}

.fp-reveal.fp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* NUEVO MENÚ */
.fp-nav {
    gap: 24px;
}

.fp-nav-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex: 1;
}

.fp-nav-links {
    margin-left: auto;
    margin-right: auto;
}

.fp-menu-toggle {
    display: none;
}

/* GALERÍA FUNCIONAL */
.fp-gallery-item {
    border: 0;
    cursor: pointer;
}

.fp-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: .35s ease;
}

.fp-gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
    z-index: 1;
}

.fp-gallery-item span {
    z-index: 2;
}

.fp-gallery-item:hover img {
    transform: scale(1.08);
}

.fp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .86);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
}

.fp-lightbox.fp-active {
    display: flex;
}

.fp-lightbox img {
    max-width: min(900px, 92vw);
    max-height: 75vh;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 30px 100px rgba(0,0,0,.55);
}

.fp-lightbox h3 {
    color: white;
    margin-top: 18px;
    font-weight: 900;
}

.fp-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--fp-pink);
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.fp-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 40px;
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.fp-footer-brand img {
    height: 70px;
    display: block;
}

.fp-footer-brand p {
    color: var(--fp-muted);
    margin: 8px 0 0;
    font-weight: 800;
}

.fp-footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.fp-footer-links a {
    color: var(--fp-muted);
    text-decoration: none;
    font-weight: 800;
}

.fp-footer-links a:hover {
    color: var(--fp-white);
}

.fp-footer-copy {
    color: var(--fp-muted);
    text-align: right;
    font-size: .9rem;
}

.fp-scroll-top {
    position: fixed;
    right: 22px;
    bottom: 86px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--fp-pink);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    z-index: 220;
    box-shadow: 0 18px 45px rgba(237, 20, 91, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
}

.fp-scroll-top.fp-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .fp-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fp-footer-brand img {
        margin: 0 auto;
    }

    .fp-footer-copy {
        text-align: center;
    }

    .fp-scroll-top {
        right: 14px;
        bottom: 78px;
    }
}

/* RESPONSIVE MENÚ */
@media (max-width: 992px) {
    .fp-menu-toggle {
        display: flex;
    }

    .fp-nav-panel {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        display: grid;
        gap: 14px;
        padding: 18px;
        border-radius: 28px;
        background: rgba(16, 16, 20, .96);
        backdrop-filter: blur(22px);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 20px 70px rgba(0, 0, 0, .42);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .25s ease;
    }

    .fp-nav.fp-open .fp-nav-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .fp-nav-links {
        display: grid;
        gap: 10px;
        margin: 0;
    }

    .fp-btn-nav {
        display: flex;
        width: 100%;
    }
}

@keyframes fpFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-16px) rotate(2deg);
    }
}

@keyframes fpPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
    }

    50% {
        transform: scale(1.035);
        box-shadow: 0 40px 110px rgba(237, 20, 91, .25);
    }
}

@keyframes fpChat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* RESPONSIVE TABLET */
@media (max-width: 992px) {
    .fp-nav {
        width: min(720px, calc(100% - 28px));
        min-height: 82px;
        padding: 10px 18px;
        border-radius: 32px;
    }

    .fp-brand img {
        height: 78px;
        transform: translateY(6px);
    }

    .fp-nav.fp-scrolled .fp-brand img {
        height: 54px;
    }

    .fp-menu-toggle {
        display: flex;
    }

    .fp-btn-nav {
        display: none;
    }

    .fp-nav-links {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        display: grid;
        gap: 10px;
        padding: 18px;
        border-radius: 28px;
        background: rgba(16, 16, 20, .96);
        backdrop-filter: blur(22px);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 20px 70px rgba(0, 0, 0, .42);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .25s ease;
    }

    .fp-nav.fp-open .fp-nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .fp-nav-links a {
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .06);
        text-align: center;
        font-size: 1rem;
    }

    .fp-hero,
    .fp-sales {
        grid-template-columns: 1fr;
    }

    .fp-hero {
        padding-top: 145px;
        text-align: center;
        gap: 30px;
    }

    .fp-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .fp-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .fp-hero-actions {
        justify-content: center;
    }

    .fp-stats,
    .fp-products,
    .fp-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-sales-content {
        text-align: center;
    }
}



/* RESPONSIVE MOBILE */
@media (max-width: 640px) {
    .fp-nav {
        width: calc(100% - 24px);
        top: 12px;
        min-height: 72px;
        padding: 8px 14px;
        border-radius: 26px;
    }

    .fp-brand img {
        height: 64px;
        transform: translateY(6px);
    }

    .fp-nav.fp-scrolled {
        min-height: 64px;
        padding: 8px 14px;
    }

    .fp-nav.fp-scrolled .fp-brand img {
        height: 46px;
        transform: translateY(0);
    }

    .fp-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .fp-hero {
        width: min(100% - 28px, 1180px);
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 40px;
    }

    .fp-hero h1 {
        font-size: clamp(3rem, 17vw, 4.8rem);
        letter-spacing: -2px;
    }

    .fp-hero p {
        font-size: 1rem;
    }

    .fp-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fp-btn-primary,
    .fp-btn-outline,
    .fp-btn-light {
        width: 100%;
        padding: 15px 18px;
    }

    .fp-stats,
    .fp-products,
    .fp-steps,
    .fp-gallery {
        grid-template-columns: 1fr;
    }

    .fp-stats div {
        padding: 18px;
    }

    .fp-hero-visual {
        min-height: 390px;
    }

    .fp-logo-orbit {
        width: min(320px, 82vw);
        height: min(320px, 82vw);
    }

    .fp-float-card {
        padding: 12px 14px;
        font-size: .86rem;
    }

    .card-one {
        top: 20px;
        left: 0;
    }

    .card-two {
        top: 145px;
        right: 0;
    }

    .card-three {
        bottom: 40px;
        left: 10px;
    }

    .fp-section {
        width: min(100% - 28px, 1180px);
        padding: 64px 0;
    }

    .fp-section-head h2,
    .fp-sales-content h2,
    .fp-final-cta h2 {
        font-size: clamp(2.1rem, 12vw, 3.2rem);
        letter-spacing: -1px;
    }

    .fp-product-card,
    .fp-step {
        padding: 28px;
        min-height: auto;
    }

    .fp-process {
        padding: 48px 18px;
        border-radius: 32px;
    }

    .fp-gallery {
        grid-auto-rows: 190px;
    }

    .fp-gallery-item.big,
    .fp-gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .fp-sales-content {
        padding: 30px 22px;
        border-radius: 32px;
    }

    .fp-phone {
        width: min(310px, 100%);
        min-height: 480px;
        padding: 24px 14px;
        border-radius: 36px;
    }

    .fp-final-cta {
        width: min(100% - 28px, 1060px);
        margin: 40px auto 90px;
        padding: 54px 22px;
        border-radius: 34px;
    }

    .fp-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 14px 18px;
        font-size: .9rem;
    }
}

/* MOBILE MUY PEQUEÑO */
@media (max-width: 390px) {
    .fp-hero h1 {
        font-size: 2.9rem;
    }

    .fp-brand img {
        height: 56px;
    }

    .fp-nav.fp-scrolled .fp-brand img {
        height: 42px;
    }

    .fp-logo-orbit {
        width: 280px;
        height: 280px;
    }

    .fp-float-card {
        font-size: .78rem;
    }
}
