/* =========================================================
   PÁGINA CORPORATIVA PETSKAN
   Archivo: index.php
   ========================================================= */

:root {
    --home-orange: #ffad1e;
    --home-orange-light: #ffbd4a;
    --home-yellow: #ffd83d;
    --home-blue: #168de2;
    --home-blue-hover: #0879c8;
    --home-text: #243142;
    --home-muted: #687586;
    --home-border: #dfe6ed;
    --home-background: #f6f8fb;
    --home-white: #ffffff;
    --home-dark: #1f2b38;
    --home-success: #208b5c;
    --home-shadow:
        0 22px 55px rgba(47, 55, 66, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.home-body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--home-background);
    color: var(--home-text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    text-align: left;
}

body.home-modal-open {
    overflow: hidden;
}

.home-body a {
    color: inherit;
    text-decoration: none;
}

.home-body button,
.home-body input {
    font: inherit;
}


/* ---------------------------------------------------------
   CABECERA
   --------------------------------------------------------- */

.home-header {
    position: sticky;
    z-index: 100;
    top: 0;
    width: 100%;
    border-bottom:
        1px solid rgba(223, 230, 237, .78);
    background:
        rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
}

.home-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
}

.home-brand {
    display: inline-flex;
    align-items: center;
}

.home-brand-logo {
    display: block;
    width: 185px;
    max-height: 52px;
    object-fit: contain;
}

.home-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--home-muted);
    font-size: 14px;
    font-weight: 700;
}

.home-navigation > a:not(.home-nav-login):hover {
    color: var(--home-blue);
}

.home-nav-install {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--home-blue);
    cursor: pointer;
    font-weight: 800;
}

.home-nav-install[hidden] {
    display: none;
}

.home-nav-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 12px;
    background: var(--home-blue);
    color: #fff;
    box-shadow:
        0 10px 22px rgba(22, 141, 226, .22);
}

.home-nav-login:hover {
    background: var(--home-blue-hover);
}

.home-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--home-border);
    border-radius: 12px;
    background: #fff;
    color: var(--home-text);
    cursor: pointer;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 105px;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(255, 255, 255, .55),
            transparent 22%
        ),
        radial-gradient(
            circle at 12% 78%,
            rgba(255, 255, 255, .3),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #ffdc43 0%,
            #ffca2e 52%,
            #ffad1e 100%
        );
}

.home-hero::before,
.home-hero::after {
    position: absolute;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, .14);
    content: "";
}

.home-hero::before {
    width: 410px;
    height: 410px;
    top: -220px;
    right: -90px;
}

.home-hero::after {
    width: 300px;
    height: 300px;
    bottom: -190px;
    left: -100px;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(390px, .92fr);
    align-items: center;
    gap: 70px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 13px;
    border:
        1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .55);
    color: #684600;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.home-hero h1 {
    max-width: 690px;
    margin: 0;
    color: #1f2a35;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -3px;
}

.home-hero h1 span {
    display: block;
    color: #fff;
    text-shadow:
        0 8px 24px rgba(95, 58, 0, .18);
}

.home-hero-lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: #604b20;
    font-size: 19px;
    line-height: 1.65;
}

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

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

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

.home-btn-primary {
    background: var(--home-blue);
    color: #fff;
    box-shadow:
        0 15px 28px rgba(15, 113, 184, .26);
}

.home-btn-primary:hover {
    background: var(--home-blue-hover);
}

.home-btn-secondary {
    border:
        1px solid rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .7);
    color: #39424d;
    box-shadow:
        0 12px 25px rgba(74, 53, 13, .1);
    backdrop-filter: blur(10px);
}

.home-btn-dark {
    background: var(--home-dark);
    color: #fff;
}

.home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    color: #5d4a22;
    font-size: 13px;
    font-weight: 700;
}

.home-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 570px;
}

.home-phone {
    position: relative;
    z-index: 2;
    width: 305px;
    padding: 12px;
    border:
        8px solid rgba(33, 43, 54, .96);
    border-radius: 46px;
    background: #151b22;
    box-shadow:
        0 35px 70px rgba(80, 53, 0, .3);
    transform: rotate(3deg);
}

.home-phone-speaker {
    position: absolute;
    z-index: 3;
    top: 17px;
    left: 50%;
    width: 82px;
    height: 19px;
    border-radius: 20px;
    background: #151b22;
    transform: translateX(-50%);
}

.home-phone-screen {
    min-height: 520px;
    overflow: hidden;
    padding: 40px 20px 22px;
    border-radius: 31px;
    background:
        linear-gradient(
            180deg,
            #fff7d9 0%,
            #fff 44%
        );
    text-align: center;
}

.home-profile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-profile-top img {
    width: 108px;
}

.home-profile-top span {
    color: var(--home-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-pet-avatar {
    display: grid;
    width: 118px;
    height: 118px;
    margin: 35px auto 18px;
    border:
        7px solid rgba(255, 190, 55, .45);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            var(--home-orange-light),
            var(--home-orange)
        );
    color: #fff;
    font-size: 56px;
    place-items: center;
    box-shadow:
        0 15px 25px rgba(255, 173, 30, .26);
}

.home-phone-screen h2 {
    margin: 0;
    font-size: 25px;
}

.home-phone-screen > p {
    margin: 9px 5px 20px;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-profile-info {
    display: grid;
    gap: 9px;
    text-align: left;
}

.home-profile-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid #e9edf2;
    border-radius: 12px;
    background: #fff;
    color: #485565;
    font-size: 12px;
    font-weight: 700;
}

.home-profile-info i {
    width: 22px;
    color: var(--home-blue);
    text-align: center;
}

.home-profile-button {
    margin-top: 18px;
    padding: 13px;
    border-radius: 12px;
    background: var(--home-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.home-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border:
        1px solid rgba(255, 255, 255, .72);
    border-radius: 16px;
    background:
        rgba(255, 255, 255, .85);
    box-shadow:
        0 18px 38px rgba(65, 47, 8, .18);
    backdrop-filter: blur(12px);
}

.home-floating-card > i {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background:
        rgba(22, 141, 226, .12);
    color: var(--home-blue);
    place-items: center;
}

.home-floating-card strong,
.home-floating-card span {
    display: block;
}

.home-floating-card strong {
    font-size: 13px;
}

.home-floating-card span {
    margin-top: 3px;
    color: var(--home-muted);
    font-size: 11px;
}

.home-floating-card-qr {
    top: 95px;
    left: -18px;
}

.home-floating-card-safe {
    right: -22px;
    bottom: 90px;
}


/* ---------------------------------------------------------
   SECCIONES GENERALES
   --------------------------------------------------------- */

.home-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 95px 0;
}

.home-section-heading {
    max-width: 690px;
    margin: 0 auto 46px;
    text-align: center;
}

.home-section-heading > span,
.home-section-kicker,
.home-install-copy > span {
    color: var(--home-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.home-section-heading h2,
.home-benefits-copy h2,
.home-install-copy h2 {
    margin: 12px 0 0;
    color: var(--home-text);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.home-section-heading p {
    margin: 16px auto 0;
    color: var(--home-muted);
    font-size: 17px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   PASOS
   --------------------------------------------------------- */

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

.home-step-card {
    position: relative;
    padding: 31px;
    border: 1px solid var(--home-border);
    border-radius: 22px;
    background: #fff;
    box-shadow:
        0 15px 36px rgba(47, 55, 66, .07);
}

.home-step-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #dfe5eb;
    font-size: 45px;
    font-weight: 900;
}

.home-step-icon {
    display: grid;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            var(--home-yellow),
            var(--home-orange)
        );
    color: #fff;
    font-size: 24px;
    place-items: center;
    box-shadow:
        0 12px 25px rgba(255, 173, 30, .24);
}

.home-step-card h3 {
    margin: 24px 0 0;
    font-size: 21px;
}

.home-step-card p {
    margin: 11px 0 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   BENEFICIOS
   --------------------------------------------------------- */

.home-benefits {
    padding: 96px 0;
    background: #fff;
}

.home-benefits-inner {
    display: grid;
    grid-template-columns:
        minmax(280px, .72fr)
        minmax(0, 1.28fr);
    align-items: start;
    gap: 70px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.home-benefits-copy {
    position: sticky;
    top: 120px;
}

.home-benefits-copy h2 {
    margin-top: 12px;
}

.home-benefits-copy > p {
    margin: 21px 0 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.7;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    color: var(--home-blue);
    font-weight: 800;
}

.home-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.home-benefits-grid article {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 23px;
    border: 1px solid var(--home-border);
    border-radius: 19px;
    background: var(--home-background);
}

.home-benefits-grid article > i {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #fff;
    color: var(--home-blue);
    box-shadow:
        0 8px 20px rgba(38, 54, 72, .08);
    place-items: center;
}

.home-benefits-grid h3 {
    margin: 1px 0 0;
    font-size: 17px;
}

.home-benefits-grid p {
    margin: 8px 0 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   INSTALACIÓN
   --------------------------------------------------------- */

.home-install-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 85px 0 25px;
}

.home-install-card {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 25px;
    padding: 35px;
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, .14),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #253444,
            #17212c
        );
    color: #fff;
    box-shadow: var(--home-shadow);
}

.home-install-icon {
    display: grid;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            var(--home-yellow),
            var(--home-orange)
        );
    color: #fff;
    font-size: 30px;
    place-items: center;
}

.home-install-copy h2 {
    margin-top: 7px;
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -1px;
}

.home-install-copy p {
    margin: 11px 0 0;
    color: #c9d2dc;
    line-height: 1.6;
}

.home-install-card .home-btn-dark {
    background: #fff;
    color: var(--home-dark);
}


/* ---------------------------------------------------------
   PREGUNTAS
   --------------------------------------------------------- */

.home-faq-section {
    padding-top: 85px;
}

.home-faq {
    display: grid;
    max-width: 860px;
    margin: 0 auto;
    gap: 13px;
}

.home-faq details {
    border: 1px solid var(--home-border);
    border-radius: 17px;
    background: #fff;
    box-shadow:
        0 10px 25px rgba(47, 55, 66, .05);
}

.home-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq summary i {
    color: var(--home-orange);
    transition: transform .2s ease;
}

.home-faq details[open] summary i {
    transform: rotate(180deg);
}

.home-faq details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--home-muted);
    line-height: 1.65;
}


/* ---------------------------------------------------------
   LLAMADO FINAL
   --------------------------------------------------------- */

.home-final-cta {
    padding: 35px 20px 95px;
}

.home-final-cta > div {
    width: min(850px, 100%);
    margin: 0 auto;
    padding: 55px 30px;
    border:
        1px solid rgba(255, 255, 255, .7);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, .5),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--home-yellow),
            var(--home-orange)
        );
    box-shadow: var(--home-shadow);
    text-align: center;
}

.home-final-cta img {
    width: min(240px, 75%);
}

.home-final-cta h2 {
    margin: 24px 0 0;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.home-final-cta p {
    max-width: 590px;
    margin: 16px auto 24px;
    color: #674d18;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   PIE DE PÁGINA
   --------------------------------------------------------- */

.home-footer {
    padding: 42px 0;
    background: #fff;
    border-top: 1px solid var(--home-border);
}

.home-footer-inner {
    display: grid;
    grid-template-columns:
        minmax(220px, 1fr)
        auto;
    align-items: center;
    gap: 25px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.home-footer-brand img {
    width: 175px;
}

.home-footer-brand p {
    margin: 9px 0 0;
    color: var(--home-muted);
    font-size: 13px;
}

.home-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 700;
}

.home-footer-copy {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--home-border);
    color: #8b96a4;
    font-size: 12px;
}


/* ---------------------------------------------------------
   MODAL DE INSTALACIÓN IOS
   --------------------------------------------------------- */

.home-install-modal[hidden] {
    display: none;
}

.home-install-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    padding: 20px;
    place-items: center;
}

.home-install-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        rgba(18, 26, 35, .72);
    backdrop-filter: blur(7px);
}

.home-install-dialog {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    padding: 32px;
    border-radius: 24px;
    background: #fff;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .3);
    text-align: center;
}

.home-install-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--home-background);
    color: var(--home-text);
    cursor: pointer;
    place-items: center;
}

.home-install-dialog-icon {
    display: grid;
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border-radius: 18px;
    background: var(--home-dark);
    color: #fff;
    font-size: 30px;
    place-items: center;
}

.home-install-dialog h2 {
    margin: 20px 0 0;
    font-size: 25px;
}

.home-install-dialog > p {
    margin: 10px 0 0;
    color: var(--home-muted);
    line-height: 1.55;
}

.home-install-steps {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.home-install-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--home-border);
    border-radius: 13px;
    background: var(--home-background);
    color: var(--home-muted);
    font-size: 14px;
}

.home-install-steps li > span {
    display: grid;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: var(--home-orange);
    color: #fff;
    font-weight: 900;
    place-items: center;
}

.home-install-steps strong {
    color: var(--home-text);
}

.home-install-understood {
    width: 100%;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 980px) {

    .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .home-hero-content {
        text-align: center;
    }

    .home-hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .home-hero-actions,
    .home-hero-trust {
        justify-content: center;
    }

    .home-hero-visual {
        min-height: 580px;
    }

    .home-benefits-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-benefits-copy {
        position: static;
        max-width: 700px;
    }

    .home-install-card {
        grid-template-columns: auto 1fr;
    }

    .home-install-card > .home-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

}

@media (max-width: 780px) {

    .home-menu-button {
        display: grid;
        place-items: center;
    }

    .home-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        border: 1px solid var(--home-border);
        border-radius: 17px;
        background: #fff;
        box-shadow: var(--home-shadow);
    }

    .home-navigation-open {
        display: flex;
        flex-direction: column;
    }

    .home-navigation > a,
    .home-nav-install {
        width: 100%;
        padding: 13px 14px;
        border-radius: 11px;
        text-align: left;
    }

    .home-nav-login {
        justify-content: center;
        margin-top: 4px;
    }

    .home-steps {
        grid-template-columns: 1fr;
    }

    .home-benefits-grid {
        grid-template-columns: 1fr;
    }

    .home-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-footer-links {
        justify-content: center;
    }

}

@media (max-width: 600px) {

    .home-header-inner,
    .home-hero-inner,
    .home-section,
    .home-benefits-inner,
    .home-install-section,
    .home-footer-inner {
        width: min(100% - 28px, 1180px);
    }

    .home-brand-logo {
        width: 155px;
    }

    .home-hero {
        padding: 62px 0 75px;
    }

    .home-hero h1 {
        font-size: clamp(43px, 13vw, 60px);
        letter-spacing: -2.2px;
    }

    .home-hero-lead {
        font-size: 16px;
    }

    .home-hero-actions {
        display: grid;
    }

    .home-btn {
        width: 100%;
    }

    .home-hero-trust {
        display: grid;
        justify-content: start;
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .home-phone {
        width: 282px;
    }

    .home-floating-card {
        transform: scale(.88);
    }

    .home-floating-card-qr {
        top: 70px;
        left: -34px;
    }

    .home-floating-card-safe {
        right: -38px;
        bottom: 55px;
    }

    .home-section {
        padding: 72px 0;
    }

    .home-step-card {
        padding: 26px;
    }

    .home-benefits {
        padding: 75px 0;
    }

    .home-benefits-copy h2,
    .home-section-heading h2 {
        font-size: 36px;
    }

    .home-install-card {
        grid-template-columns: 1fr;
        padding: 26px;
        text-align: center;
    }

    .home-install-icon {
        margin: 0 auto;
    }

    .home-install-card > .home-btn {
        grid-column: auto;
    }

    .home-install-dialog {
        padding: 28px 20px 22px;
    }

}

@media (max-width: 390px) {

    .home-phone {
        width: 255px;
    }

    .home-phone-screen {
        min-height: 500px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .home-floating-card {
        display: none;
    }

}


/* =========================================================
   VENTAS Y CONTACTO
   ========================================================= */

.home-nav-login,
.home-nav-login:link,
.home-nav-login:visited,
.home-nav-login:hover,
.home-nav-login:active,
.home-btn-primary,
.home-btn-primary:link,
.home-btn-primary:visited,
.home-btn-primary:hover,
.home-btn-primary:active {
    color: #ffffff;
}

.home-nav-login i,
.home-btn-primary i {
    color: inherit;
}

.home-btn-purchase {
    background:
        linear-gradient(
            145deg,
            #ff8c00,
            #ff6700
        );
    color: #ffffff;
    box-shadow:
        0 15px 28px rgba(211, 82, 0, .28);
}

.home-btn-purchase:link,
.home-btn-purchase:visited,
.home-btn-purchase:hover,
.home-btn-purchase:active {
    color: #ffffff;
}

.home-btn-purchase:hover {
    background:
        linear-gradient(
            145deg,
            #f77f00,
            #e95e00
        );
}

.home-purchase-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 90px 0 10px;
}

.home-purchase-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, .48fr);
    align-items: center;
    gap: 48px;
    padding: 48px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(255, 255, 255, .48),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffdc43 0%,
            #ffbd2f 48%,
            #ff981d 100%
        );
    box-shadow:
        0 24px 58px rgba(107, 72, 8, .17);
}

.home-purchase-content h2 {
    max-width: 730px;
    margin: 12px 0 0;
    color: var(--home-text);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.home-purchase-content > p {
    max-width: 720px;
    margin: 19px 0 0;
    color: #654d1e;
    font-size: 16px;
    line-height: 1.7;
}


/* Precio de la placa */

.home-purchase-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    margin-top: 22px;
    padding: 18px 20px;
    border:
        1px solid rgba(80, 61, 24, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .48);
    color: #503d18;
}

.home-purchase-price span {
    font-size: 17px;
    font-weight: 800;
}

.home-purchase-price strong {
    color: var(--home-text);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    line-height: 1;
}

.home-purchase-price small {
    flex-basis: 100%;
    color: #654d1e;
    font-size: 14px;
    font-weight: 800;
}


.home-purchase-checks {
    display: grid;
    gap: 11px;
    margin-top: 23px;
}

.home-purchase-checks span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #503d18;
    font-size: 14px;
    font-weight: 800;
}

.home-purchase-checks i {
    color: var(--home-success);
}

.home-purchase-actions {
    display: grid;
    gap: 13px;
}

.home-purchase-actions .home-btn {
    width: 100%;
}

.home-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow:
        0 15px 28px rgba(28, 153, 76, .24);
}

.home-btn-whatsapp:link,
.home-btn-whatsapp:visited,
.home-btn-whatsapp:hover,
.home-btn-whatsapp:active {
    color: #ffffff;
}

.home-btn-whatsapp:hover {
    background: #1fb75a;
}

.home-whatsapp-floating {
    position: fixed;
    z-index: 190;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 18px;
    border:
        2px solid rgba(255, 255, 255, .9);
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow:
        0 15px 35px rgba(20, 105, 53, .3);
    font-size: 14px;
    font-weight: 900;
    transition:
        transform .2s ease,
        background .2s ease;
}

.home-whatsapp-floating:link,
.home-whatsapp-floating:visited,
.home-whatsapp-floating:hover,
.home-whatsapp-floating:active {
    color: #ffffff;
}

.home-whatsapp-floating:hover {
    background: #1fb75a;
    transform: translateY(-3px);
}

.home-whatsapp-floating i {
    font-size: 25px;
}

@media (max-width: 820px) {

    .home-purchase-card {
        grid-template-columns: 1fr;
        padding: 36px;
    }

}

@media (max-width: 600px) {

    .home-purchase-section {
        width: min(100% - 28px, 1180px);
        padding-top: 70px;
    }

    .home-purchase-card {
        padding: 28px 23px;
    }

    .home-purchase-content h2 {
        font-size: 36px;
    }

    .home-whatsapp-floating {
        right: 15px;
        bottom: 15px;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }

    .home-whatsapp-floating span {
        display: none;
    }

}


/* =========================================================
   TECNOLOGÍA QR + NFC
   ========================================================= */

.home-technology-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 90px 0 10px;
}

.home-technology-section .home-section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-technology-section .home-section-heading h2 {
    margin: 12px 0 0;
    color: var(--home-text);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.home-technology-section .home-section-heading p {
    margin: 18px auto 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.75;
}

.home-technology-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-technology-card {
    padding: 34px;
    border: 1px solid rgba(20, 50, 76, .08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(19, 54, 82, .09);
}

.home-technology-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        rgba(255, 173, 38, .18),
        rgba(255, 110, 0, .12)
    );
    color: #ff7800;
    font-size: 29px;
}

.home-technology-card h3 {
    margin: 22px 0 0;
    color: var(--home-text);
    font-size: 25px;
    font-weight: 900;
}

.home-technology-card > p {
    margin: 13px 0 0;
    color: var(--home-muted);
    line-height: 1.7;
}

.home-technology-card ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.home-technology-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--home-text);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.5;
}

.home-technology-card li i {
    margin-top: 3px;
    color: var(--home-success);
}

.home-technology-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 25px;
    padding: 24px 26px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(20, 141, 226, .1),
        rgba(255, 152, 29, .1)
    );
}

.home-technology-note > i {
    margin-top: 3px;
    color: var(--home-blue);
    font-size: 27px;
}

.home-technology-note p {
    margin: 0;
    color: var(--home-text);
    line-height: 1.7;
}

@media (max-width: 760px) {
    .home-technology-grid {
        grid-template-columns: 1fr;
    }

    .home-technology-card {
        padding: 28px;
    }

    .home-technology-note {
        padding: 22px;
    }
}

@media (max-width: 600px) {
    .home-technology-section {
        width: min(100% - 28px, 1180px);
        padding-top: 70px;
    }

    .home-technology-section .home-section-heading h2 {
        font-size: 36px;
    }

    .home-technology-note {
        flex-direction: column;
    }
}
