/* =========================================
   CONFIGURACION GENERAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #252525;
    background: #ffffff;
}

.contenedor {
    width: 92%;
    max-width: 1350px;
    margin: auto;
}


/* =========================================
   ENCABEZADO
========================================= */

.header {
    background: #ffffff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 34px;
    font-weight: 900;
    color: #183153;
    text-decoration: none;
}

.logo span {
    color: #19a974;
}

.logo-imagen {
    display: flex;
    align-items: center;
}

.logo-imagen img {
    width: 190px;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s;
}

.menu a:hover {
    color: #19a974;
}

.btn-nav {
    background: #19a974;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 21px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.2s;
}

.btn-nav:hover {
    background: #138c60;
}


/* =========================================
   PORTADA
========================================= */

.hero {
    min-height: 650px;
    background: linear-gradient(
        120deg,
        #effbf7 0%,
        #ffffff 65%
    );

    display: flex;
    align-items: center;
    padding: 75px 0;
}

.hero-contenido {
    display: grid;
    grid-template-columns: 1.05fr 1fr 0.65fr;
    gap: 35px;
    align-items: center;
}

.etiqueta {
    display: inline-block;
    color: #11855a;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 15px;
}

.hero h1 {
    font-size: 62px;
    line-height: 1.04;
    color: #183153;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero h1 span {
    color: #19a974;
}

.descripcion-principal {
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
    max-width: 650px;
}


/* =========================================
   BOTONES PORTADA
========================================= */

.hero-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}

.btn-principal,
.btn-secundario {
    text-decoration: none;
    padding: 16px 25px;
    border-radius: 40px;
    font-weight: 700;
    transition: 0.2s;
}

.btn-principal {
    background: #19a974;
    color: #ffffff;
}

.btn-principal:hover {
    background: #138c60;
    transform: translateY(-2px);
}

.btn-secundario {
    color: #183153;
    border: 2px solid #183153;
    background: #ffffff;
}

.btn-secundario:hover {
    background: #183153;
    color: #ffffff;
}


/* =========================================
   DATOS PORTADA
========================================= */

.hero-datos {
    display: flex;
    gap: 35px;
    margin-top: 45px;
}

.hero-datos div {
    display: flex;
    flex-direction: column;
}

.hero-datos strong {
    color: #183153;
    font-size: 17px;
}

.hero-datos span {
    color: #777777;
    margin-top: 4px;
    font-size: 14px;
}


/* =========================================
   TARJETA PET+
========================================= */

.hero-tarjeta {
    display: flex;
    justify-content: center;
}

.tarjeta-mascota {
    width: 100%;
    max-width: 410px;
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(20, 50, 70, 0.15);
}

.huella {
    width: 70px;
    height: 70px;
    background: #e5f8f1;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 34px;
    margin-bottom: 25px;
}

.tarjeta-mascota h2 {
    color: #183153;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.tarjeta-mascota p {
    color: #666666;
    line-height: 1.6;
}

.precio {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.precio span {
    color: #777777;
    font-size: 14px;
}

.precio strong {
    color: #19a974;
    font-size: 44px;
    margin: 3px 0;
}

.precio small {
    color: #777777;
    font-size: 14px;
}

.btn-tarjeta {
    background: #183153;
    display: block;
    text-align: center;
    color: #ffffff;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}

.btn-tarjeta:hover {
    background: #24466f;
}


/* =========================================
   SECCIONES GENERALES
========================================= */

.beneficios,
.como-funciona,
.plan {
    padding: 90px 0;
}

.titulo-seccion {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.titulo-seccion > span {
    color: #19a974;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

.titulo-seccion h2 {
    color: #183153;
    font-size: 40px;
    margin: 12px 0;
}

.titulo-seccion p {
    color: #777777;
    line-height: 1.7;
    font-size: 17px;
}


/* =========================================
   BENEFICIOS
========================================= */

.beneficios {
    background: #ffffff;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.beneficio {
    padding: 32px;
    background: #f7faf9;
    border-radius: 20px;
    border: 1px solid #edf2f0;
    transition: 0.3s;
}

.beneficio:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.icono {
    font-size: 38px;
    margin-bottom: 20px;
}

.beneficio h3 {
    color: #183153;
    margin-bottom: 12px;
    font-size: 21px;
}

.beneficio p {
    color: #666666;
    line-height: 1.6;
}


/* =========================================
   COMO FUNCIONA
========================================= */

.como-funciona {
    background: #f4faf8;
}

.pasos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.paso {
    text-align: center;
    padding: 15px;
}

.numero {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #19a974;
    color: #ffffff;

    font-size: 22px;
    font-weight: 800;
}

.paso h3 {
    color: #183153;
    margin-bottom: 10px;
    font-size: 19px;
}

.paso p {
    color: #666666;
    line-height: 1.6;
}


/* =========================================
   PLAN PET+
========================================= */

.plan {
    background: #ffffff;
}

.plan-card {
    width: 90%;
    max-width: 760px;
    margin: auto;

    background: #ffffff;
    border-radius: 25px;
    padding: 40px;

    border: 1px solid #e6eeee;
    box-shadow: 0 20px 50px rgba(24, 49, 83, 0.10);
}

.plan-superior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    padding-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.plan-nombre {
    color: #19a974;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.plan-superior h3 {
    color: #183153;
    font-size: 30px;
    margin-top: 8px;
}

.plan-precio {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.plan-precio strong {
    color: #19a974;
    font-size: 42px;
}

.plan-precio span {
    color: #777777;
}

.lista-beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    padding: 30px 0;
    color: #444444;
}

.lista-beneficios div {
    padding: 10px;
}

.btn-plan {
    display: block;
    background: #19a974;
    color: #ffffff;
    text-align: center;
    padding: 16px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s;
}

.btn-plan:hover {
    background: #138c60;
}


/* =========================================
   LLAMADO A LA ACCION
========================================= */

.cta {
    background: #183153;
    padding: 70px 0;
    color: #ffffff;
}

.cta-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta span {
    color: #6ce3b7;
    font-weight: 800;
}

.cta h2 {
    font-size: 38px;
    margin: 10px 0;
}

.cta p {
    color: #d6dce4;
    line-height: 1.6;
}

.cta-botones {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-blanco,
.btn-transparente {
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 30px;
    font-weight: 700;
}

.btn-blanco {
    background: #ffffff;
    color: #183153;
}

.btn-transparente {
    border: 2px solid #ffffff;
    color: #ffffff;
}


/* =========================================
   SOLICITAR VENDEDOR
========================================= */

.solicitar-vendedor {
    padding: 75px 0;
    background: #eaf8f3;
}

.vendedor-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.mini-titulo {
    color: #19a974;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.vendedor-contenido h2 {
    color: #183153;
    font-size: 34px;
    margin: 10px 0 15px;
}

.vendedor-contenido p {
    color: #666666;
    line-height: 1.7;
    max-width: 700px;
}

.btn-vendedor {
    display: inline-block;
    background: #19a974;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 25px;
    border-radius: 35px;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================
   PIE DE PAGINA
========================================= */

.footer {
    background: #111d2d;
    color: #bfc7d2;
    padding-top: 60px;
}

.footer-contenido {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 45px;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-marca p {
    line-height: 1.7;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer p {
    margin-bottom: 9px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 20px;
    font-size: 14px;
}


/* =========================================
   TABLETS
========================================= */

@media (max-width: 900px) {

    .menu {
        display: none;
    }

    .hero-contenido {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-tarjeta {
        justify-content: flex-start;
    }

    .beneficios-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pasos {
        grid-template-columns: 1fr 1fr;
    }

    .cta-contenido {
        flex-direction: column;
        align-items: flex-start;
    }

    .vendedor-contenido {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contenido {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================
   CELULARES
========================================= */

@media (max-width: 550px) {

    .contenedor {
        width: 92%;
    }

    .btn-nav {
        display: none;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .descripcion-principal {
        font-size: 17px;
    }

    .hero-botones {
        flex-direction: column;
    }

    .btn-principal,
    .btn-secundario {
        text-align: center;
    }

    .hero-datos {
        flex-direction: column;
        gap: 18px;
    }

    .tarjeta-mascota {
        padding: 28px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .pasos {
        grid-template-columns: 1fr;
    }

    .titulo-seccion h2 {
        font-size: 32px;
    }

    .plan-card {
        width: 100%;
        padding: 28px;
    }

    .plan-superior {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-precio {
        text-align: left;
    }

    .lista-beneficios {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 31px;
    }

    .cta-botones {
        flex-direction: column;
        width: 100%;
    }

    .btn-blanco,
    .btn-transparente {
        text-align: center;
    }

    .vendedor-contenido h2 {
        font-size: 29px;
    }

    .footer-contenido {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/* =========================================
   IMAGEN PRINCIPAL DE MASCOTAS
========================================= */

.hero-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-imagen img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 24px;
}
/* =========================================
   NUEVA PORTADA PET+
========================================= */

.hero-contenido {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hero-tarjeta {
    display: none;
}

.hero-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-imagen img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    border-radius: 30px;
}
/* AJUSTES FINALES DE PORTADA */

.hero-contenido {
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
}

.hero-imagen img {
    width: 100%;
    max-width: 720px;
}

.hero h1 {
    font-size: 64px;
}

.descripcion-principal {
    max-width: 700px;
}
/* =========================================
   REDES SOCIALES - FOOTER
========================================= */

.footer-redes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-redes h4 {
    margin-bottom: 8px;
}

.footer-redes a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-redes a i {
    width: 22px;
    font-size: 18px;
    color: #22b573;
}

.footer-redes a:hover {
    color: #22b573;
    transform: translateX(4px);
}
/* =========================================
   BOTÓN FLOTANTE WHATSAPP
========================================= */

.whatsapp-flotante {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 22px;
    bottom: 22px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease;
}

.whatsapp-flotante:hover {
    transform: scale(1.08);
}