/* ===== PASOS MASCOTA FIX ===== */

.pasos-mascota {
    align-items: stretch !important;
}

.pasos-mascota .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.paso {
    position: relative;
    padding: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 0.6s ease forwards;
}

.paso:nth-child(1) { animation-delay: 0.2s; }
.paso:nth-child(2) { animation-delay: 0.5s; }
.paso:nth-child(3) { animation-delay: 0.8s; }

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paso-num {
    width: 42px;
    height: 42px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 18px;
}

/* IMAGENES LATERALES */
.img-escena {
    max-width: 150px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.img-escena:hover {
    transform: scale(1.1);
}

.escena-texto {
    font-size: 15px;
    color: #555;
}

/* ===== CELULAR AJUSTADO ===== */

.celular {
    background: #111;
    border-radius: 25px;
    padding: 10px;
    display: inline-block;
    margin: 0 auto;
}

.pantalla {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 170px;
    height: 300px;
    position: relative;
}

/* ESCANEO */
.scan-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, red, transparent);
    position: absolute;
    top: 0;
    animation: scan 2s infinite;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.scan-box {
    border: 2px solid red;
    width: 80%;
    height: 60%;
    position: absolute;
    top: 20%;
    left: 10%;
}

/* RESULTADO */
.result-view {
    display: none;
    padding: 15px;
    text-align: center;
}

.pantalla.show-result .scan-view {
    display: none;
}

.pantalla.show-result .result-view {
    display: block;
}

/* BOTON */
.btn-llamar {
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    animation: vibrar 1s infinite;
}

@keyframes vibrar {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}
/* ===== FIX PASO 2 ===== */

.pasos-mascota .paso {
    text-align: center;
}

/* CELULAR m?s chico y prolijo */
.celular {
    max-width: 180px;
    margin: 0 auto;
    padding: 10px;
}

/* PANTALLA CONTENIDA */
.pantalla {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden; /* CLAVE */
    position: relative;
    background: #000;
}

/* IMAGEN QR (FONDO ESCANEO) */
.qr-fondo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* CLAVE */
}

/* FOTO RESULTADO */
.foto-perfil {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 10px 0;
}

/* AJUSTE GENERAL PASOS */
.img-escena {
    max-width: 140px; /* antes 180 -> muy grande */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pantalla {
        height: 240px;
    }

    .celular {
        max-width: 160px;
    }
}
.celular {
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.scan-box {
    border: 2px solid #00ff88; /* m?s moderno que rojo */
}

.scan-line {
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

/* ===== MOBILE TEXT FIX ===== */

@media (max-width: 768px) {

    /* T?tulos */
    h1, h2 {
        font-size: 22px !important;
        line-height: 1.3;
        padding: 0 10px;
    }

    h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    /* P?rrafos */
    p {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 12px;
        text-align: center;
    }

    /* Evita cortes feos */
    * {
        word-break: normal !important;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Contenedores */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Textos de secciones */
    .templatemo_personas_text_wapper p,
    .templatemo_mascotas_text_wapper p,
    .templatemo_objetos_text_wapper p {
        max-width: 95%;
        margin: 0 auto;
    }
}

/* CONTENEDOR */
.product-img-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1/1; /* mantiene proporci?n prolija */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGEN */
.main-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
    cursor: pointer;
}

.main-img:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .product-img-wrapper {
        max-width: 240px;
    }

    .main-img {
        max-width: 90%;
    }
}

.product-img-wrapper {
    background: radial-gradient(circle, #f8f8f8, transparent);
    border-radius: 20px;
}

/* ===== SECCI?N ===== */
.personas-section {
    padding: 60px 0;
}

/* TEXTO */
.personas-desc {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 12px;
    color: #555;
}

/* ===== PRODUCTO ===== */
.product-main {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.product-image-wrapper {
    position: relative;
}

/* IMAGEN PRINCIPAL */
.main-img {
    max-width: 260px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.main-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.25));
}

/* GLOW */
.product-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0,255,150,0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    z-index: 1;
}

/* BADGE */
.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    z-index: 3;
}

/* ===== MINIATURAS ===== */
.product-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.thumb {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: #fff;
}

.thumb:hover {
    transform: scale(1.1);
}

.thumb.active {
    border: 2px solid #000;
}

/* ===== BOT?N ===== */
.product-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.product-btn:hover {
    background: #333;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .main-img {
        max-width: 170px;
    }

    .thumb {
        width: 45px;
        height: 45px;
    }

    .personas-desc {
        font-size: 14px;
        padding: 0 10px;
    }
}

#templatemo_personas .main-img {
    max-width: 220px !important;
    width: 220px !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    #templatemo_personas .main-img {
        max-width: 160px !important;
        width: 160px !important;
    }
}
#templatemo_personas .main-img {
    width: 100%;
    max-width: 220px !important;
}

/* LAYOUT LATERAL */
.product-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* MINIATURAS VERTICALES */
.product-thumbs {
    display: flex;
    flex-direction: column; /* ?? clave */
    gap: 10px;
}

/* THUMB */
.thumb {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
    background: #fff;
}

.thumb:hover {
    transform: scale(1.1);
}

.thumb.active {
    border: 2px solid #000;
}

/* IMAGEN PRINCIPAL */
#templatemo_personas .main-img {
    width: 220px !important;
    max-width: 220px !important;
}

/* ?? MOBILE ? vuelve abajo */
@media (max-width: 768px) {

    .product-layout {
        flex-direction: column;
    }

    .product-thumbs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .thumb {
        width: 45px;
        height: 45px;
    }

    #templatemo_personas .main-img {
        width: 160px !important;
    }
}

.product-main {
    margin-bottom: 5px !important;
}

.product-cta {
    margin-top: 0px !important;
}

#templatemo_mascotas .main-img {
    width: 260px !important;
    max-width: 260px !important;
    border-radius: 18px; /* ?? borde redondeado */
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); /* ?? efecto premium */
    background: #fff;
    padding: 8px; /* opcional, le da marco */
}
@media (max-width: 768px) {
    #templatemo_mascotas .main-img {
        width: 190px !important;
        max-width: 190px !important;
    }
}
#templatemo_mascotas .product-image-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-thumbs {
    flex-wrap: wrap;
    max-height: none;
}

/* ===== FIX MINIATURAS MASCOTAS ===== */

#templatemo_mascotas .product-layout {
    align-items: flex-start;
}

/* CONTENEDOR MINIATURAS */
#templatemo_mascotas .product-thumbs {
    max-height: 260px; /* ?? limita altura */
    overflow-y: auto;  /* ?? scroll vertical */
    padding-right: 5px; /* evita corte visual */
}

/* SCROLL LINDO */
#templatemo_mascotas .product-thumbs::-webkit-scrollbar {
    width: 4px;
}
#templatemo_mascotas .product-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* ?? MOBILE */
@media (max-width: 768px) {

    #templatemo_mascotas .product-layout {
        flex-direction: column;
    }

    #templatemo_mascotas .product-thumbs {
        flex-direction: row;
        flex-wrap: nowrap; /* ?? evita que se corten */
        overflow-x: auto;  /* ?? scroll horizontal */
        overflow-y: hidden;
        max-height: none;
        padding-bottom: 5px;
    }

    #templatemo_mascotas .thumb {
        flex: 0 0 auto; /* ?? evita que se achiquen */
    }
}

/* ===== MASCOTAS - FIX REAL ===== */

/* Layout general m?s equilibrado */
#templatemo_mascotas .product-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

/* ?? AGRANDAR COLUMNA DE MINIATURAS */
#templatemo_mascotas .product-thumbs {
    width: 80px;              /* ?? antes muy chico */
    min-width: 80px;
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
}

/* THUMB M?S GRANDE */
#templatemo_mascotas .thumb {
    width: 60px;
    height: 60px;
}

/* SCROLL prolijo */
#templatemo_mascotas .product-thumbs::-webkit-scrollbar {
    width: 4px;
}
#templatemo_mascotas .product-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* IMAGEN PRINCIPAL un poco m?s grande para balancear */
#templatemo_mascotas .main-img {
    width: 280px !important;
    max-width: 280px !important;
}

/* ?? MOBILE */
@media (max-width: 768px) {

    #templatemo_mascotas .product-layout {
        flex-direction: column;
    }

    #templatemo_mascotas .product-thumbs {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 10px;
    }

    #templatemo_mascotas .thumb {
        flex: 0 0 auto;
        width: 55px;
        height: 55px;
    }
}
.highlight-text {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

/* BOTON DEMO */
.btn-ver-demo {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-ver-demo:hover {
    background: #000;
    color: #fff;
}

/* ===== BOTONES POR TIPO ===== */

/* PERSONAS (rojo/emergencia) */
.product-btn-personas {
    background: #e11d48;
    color: #fff;
}
.product-btn-personas:hover {
    background: #be123c;
}

/* MASCOTAS (verde/v?nculo/emoci?n) */
.product-btn-mascotas {
    background: #22c55e;
    color: #fff;
}
.product-btn-mascotas:hover {
    background: #16a34a;
}

/* OBJETOS (azul/tecnolog?a/confianza) */
.product-btn-objetos {
    background: #3b82f6;
    color: #fff;
}
.product-btn-objetos:hover {
    background: #2563eb;
}

/* ===== OBJETOS - MISMO ESTILO QUE MASCOTAS ===== */

#templatemo_objetos .product-image-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#templatemo_objetos .main-img {
    width: 260px !important;
    max-width: 260px !important;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #fff;
    padding: 8px;
}

@media (max-width: 768px) {
    #templatemo_objetos .main-img {
        width: 190px !important;
        max-width: 190px !important;
    }
}

/* ===== OBJETOS - FIX MINIATURAS ===== */

#templatemo_objetos .product-layout {
    align-items: flex-start;
}

/* CONTENEDOR MINIATURAS */
#templatemo_objetos .product-thumbs {
    width: 80px;
    min-width: 80px;
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
}

/* THUMBS */
#templatemo_objetos .thumb {
    width: 60px;
    height: 60px;
}

/* SCROLL LINDO */
#templatemo_objetos .product-thumbs::-webkit-scrollbar {
    width: 4px;
}
#templatemo_objetos .product-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* ?? MOBILE */
@media (max-width: 768px) {

    #templatemo_objetos .product-layout {
        flex-direction: column;
    }

    #templatemo_objetos .product-thumbs {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 10px;
    }

    #templatemo_objetos .thumb {
        flex: 0 0 auto;
        width: 55px;
        height: 55px;
    }
}

/* ===== FAQ ===== */

.faq-section {
    padding: 10px 0;
    background: #f9fafb;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
}

.faq-sub {
    color: #666;
    font-size: 16px;
}

/* CONTENEDOR */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* PREGUNTA */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* RESPUESTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
}

/* ACTIVO */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}
.product-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-wrapper {
    max-width: 320px; /* tamaño máximo del producto */
    width: 100%;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(0.9); /* achica un poco sin perder calidad */
}

/* Opcional: en mobile que sea más chica */
@media (max-width: 768px) {
    .product-image-wrapper {
        max-width: 240px;
    }
}
.product-image-wrapper {
    max-width: 200px;
}

/* CONTENEDOR */
.product-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WRAPPER */
.product-image-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* IMAGEN */
.main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* SOMBRA SUAVE */
.product-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 25px;
    background: radial-gradient(rgba(0,0,0,0.25), transparent);
    filter: blur(8px);
    z-index: 0;
}

/* EFECTO HOVER */
.product-image-wrapper:hover {
    transform: translateY(-5px);
}

.product-image-wrapper:hover .main-img {
    transform: scale(1.08);
}

/* GLOW (brillo sutil tipo premium) */
.product-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 30%, rgba(0,255,200,0.25), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

/* MINIATURAS */
.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb {
    width: 60px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    border-radius: 10px;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    transform: scale(1.05);
    border: 2px solid #00c2a8;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-image-wrapper {
        max-width: 240px;
    }

    .thumb {
        width: 50px;
    }
}

.product-image-wrapper {
    display: inline-block;   /* ?? clave */
    max-width: 240px;        /* tamaño real del producto */
    width: auto;             /* ?? evita que se estire */
    margin: 0 auto;
}

.main-img {
    max-width: 100%;
    height: auto;
    display: block;
}
.product-layout {
    gap: 10px; /* antes seguramente 20 o 30 */
}

@media (max-width: 768px) {
    .product-image-wrapper {
        max-width: 180px;
    }
}

/* ===== FIX SOLO PULSERAS (PERSONAS) ===== */
#templatemo_personas .product-image-wrapper {
    max-width: 160px !important;   /* ?? achica el rectángulo */
    padding: 8px !important;       /* ?? menos aire interno */
    border-radius: 15px;
}

/* achico un poco más la imagen para que respire */
#templatemo_personas .main-img {
    max-width: 140px !important;
}

/* MOBILE */
@media (max-width: 768px) {
    #templatemo_personas .product-image-wrapper {
        max-width: 130px !important;
        padding: 6px !important;
    }

    #templatemo_personas .main-img {
        max-width: 120px !important;
    }
}
/* ===== FIX BORDE CORTADO (MASCOTAS Y OBJETOS) ===== */

#templatemo_mascotas .product-image-wrapper,
#templatemo_objetos .product-image-wrapper {
    overflow: visible !important;   /* ?? deja ver el borde */
    padding: 20px !important;       /* ?? le da aire para que no se corte */
}


/* ===== SACAR RECUADRO MASCOTAS Y OBJETOS ===== */

#templatemo_mascotas .product-image-wrapper,
#templatemo_objetos .product-image-wrapper {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* también eliminamos fondo blanco de la imagen */
#templatemo_mascotas .main-img,
#templatemo_objetos .main-img {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

#templatemo_mascotas .main-img,
#templatemo_objetos .main-img {
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.25));
}

#templatemo_mascotas .main-img {
    border-radius: 20px !important;
}
#templatemo_mascotas .product-image-wrapper {
    margin-left: -20px;
}
#templatemo_objetos .main-img {
    border-radius: 20px !important;
}
#templatemo_objetos .product-image-wrapper {
    margin-left: -20px;
}

#templatemo_objetos .main-img {
    border-radius: 20px !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
/* ===== OBJETOS - ALINEACIÓN PRO ===== */

#templatemo_objetos .product-layout {
    display: flex;
    align-items: center;   /* ?? centra verticalmente */
    gap: 15px;
}

/* columna miniaturas */
#templatemo_objetos .product-thumbs {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ?? centra respecto a la imagen */
}

/* imagen principal */
#templatemo_objetos .product-main {
    display: flex;
    align-items: center;   /* ?? alinea perfecto */
    justify-content: flex-start;
}

/* wrapper limpio */
#templatemo_objetos .product-image-wrapper {
    margin: 0 !important; /* ?? elimina parches anteriores */
}

/* imagen */
#templatemo_objetos .main-img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* PERSONAS (rojo suave elegante) */
.product-btn-personas {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.product-btn {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-btn:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* ===== BOTÓN BASE PROFESIONAL ===== */
.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 20px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    border: 1px solid transparent;

    transition: all 0.2s ease;
    cursor: pointer;

    background: #111;
    color: #fff;
}

/* HOVER SUAVE */
.product-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* ===== PERSONAS ===== */
.product-btn-personas {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

/* ===== MASCOTAS ===== */
.product-btn-mascotas {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

/* ===== OBJETOS ===== */
.product-btn-objetos {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* ===== BOTÓN SECUNDARIO (ELEGANTE) ===== */
.product-btn-outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #333;
}

.product-btn-outline:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}
/* ===== BOTÓN FLOTANTE BASE ===== */
.floating-btn {
    position: fixed;
    right: 20px;
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;
    font-size: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
    z-index: 999;
}

/* HOVER */
.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* ===== POSICIONES (apilados prolijos) ===== */
.floating-register { bottom: 140px; background: #111; }
.floating-cart     { bottom: 80px;  background: #2563eb; }
.floating-whatsapp { bottom: 20px;  background: #25d366; }

/* ===== BADGE CARRITO ===== */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;

    background: #ef4444;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    min-width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    padding: 0 5px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ===== TOOLTIP SIMPLE ===== */
.floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: #111;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    white-space: nowrap;
}


.floating-btn:hover::after {
    opacity: 1;
}

/* animación cuando hay productos */
.cart-badge {
    animation: pop 0.3s ease;
}

@keyframes pop {
    0% { transform: scale(0.6); }
    100% { transform: scale(1); }
}

/* ===== REGISTRO HEADER PRO ===== */

.registro-section {
    padding-top: 20px; /* ?? baja todo el bloque */
}

.registro-container {
    margin-top: 0;
}

/* BADGE */
.registro-badge {
    margin-bottom: 10px;
}

.registro-badge span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
}

/* HEADER */
.registro-header {
    margin-bottom: 20px; /* menos aire */
}

.registro-header h2 {
    font-size: 20px;       /* ?? más chico */
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 12px;
}

.registro-header h2 span {
    font-weight: 600;
    color: #000;
}

.registro-header p {
    font-size: 15px;       /* ?? más elegante */
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}
/*ultima version imagenes*/
/* ===== PRODUCTOS - MINIATURAS LIMPIAS ===== */

/* Layout general */
.product-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ===== DESKTOP: VERTICAL ===== */
.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;

    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scroll prolijo */
.product-thumbs::-webkit-scrollbar {
    width: 4px;
}
.product-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Thumb */
.thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    background: #fff;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    transform: scale(1.05);
    border: 2px solid #000;
}

/* ===== MOBILE: HORIZONTAL ===== */
@media (max-width: 768px) {

    .product-layout {
        flex-direction: column;
        gap: 10px;
    }

    .product-thumbs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;

        max-height: none;
        width: 100%;
        padding: 5px 0;
    }

    .product-thumbs::-webkit-scrollbar {
        height: 4px;
    }

    .thumb {
        flex: 0 0 auto;
        width: 50px;
        height: 50px;
    }
}

/* ===== FIX MOBILE OBJETOS THUMBS ===== */
@media (max-width: 768px) {

    #templatemo_objetos .product-thumbs {
        display: flex;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        width: 100%;
    }

    #templatemo_objetos .thumb {
        flex: 0 0 auto;
        width: 50px;
        height: 50px;
    }
}

/* ===== FIX FUERTE MASCOTAS MOBILE ===== */
@media (max-width: 768px) {

    #templatemo_mascotas .product-main {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #templatemo_mascotas .product-image-wrapper {
        max-width: 170px !important;
        width: 100% !important;
        margin: 0 auto;
        overflow: hidden; /*  evita que se salga */
    }

    #templatemo_mascotas .main-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain;
        display: block;
    }
}


/* Estilos específicos para el Modal de TodoQR */
.mascota-modal {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* Botón cerrar del modal */
.mascota-modal .cerrar {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}
.mascota-modal .cerrar:hover {
    color: #333;
}

/* Títulos y textos dentro del Popup */
.popup-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b2240; /* Azul oscuro corporativo */
}
.popup-title span {
    color: #008080; /* Color principal de marca */
}


/* Badges numéricos de los pasos */
.paso-badge {
    width: 35px;
    height: 35px;
    background-color: #008080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px auto;
    font-size: 1rem;
}



/* Contenedores de imágenes de los pasos */
.paso-img-wrapper {
    margin-top: 15px;
    padding: 5px;
}
.paso-img-wrapper img {
    max-height: 280px;
    object-fit: cover;
}

/* Ajuste específico para el celular del paso 3 */
.mockup-phone img {
    max-height: 320px;
    width: auto;
    margin: 0 auto;
}

/* Ajustes de Responsividad */
@media (max-width: 768px) {
    .popup-title {
        font-size: 1.5rem;
    }
    .popup-subtitle {
        font-size: 0.95rem;
    }
    .paso-img-wrapper img {
        max-height: 220px;
    }
}
/* --- TAMAÑO DEL MODAL (Grande en escritorio) --- */
@media (min-width: 1200px) {
    #productoPulseraModal .modal-xl {
        max-width: 1300px; /* Expandimos el ancho para que respire excelente */
    }
}

/* --- DISEÑO INTERNO DEL POPUP --- */
.mascota-modal {
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.popup-title {
    font-size: 2.6rem; /* Título más grande e impactante */
    font-weight: 800;
    color: #0b2240;
    margin-top: 15px;
}
.popup-title span {
    color: #008080;
}

.popup-subtitle {
    font-size: 1.6rem;
    color: #333333;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
	padding-bottom: 15px;
}

/* --- PASOS --- */
.paso-item {
    padding: 0 35px !important; /* Bastante separación lateral entre columnas */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.paso-badge {
    width: 42px;
    height: 42px;
    background-color: #008080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px auto;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.2);
}

.paso-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b2240;
    margin-bottom: 6px;
}

.text-paso {
    font-size: 1.4rem;
    margin-bottom: 20px;
	color:#333333;
}

/* --- IMÁGENES --- */
.paso-img-wrapper {
    margin-top: auto; /* Empuja la imagen al fondo para que queden alineadas abajo */
    border-radius: 18px;
    overflow: hidden;
}

.paso-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 400px; /* Imágenes más grandes */
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

/* El celular del paso 3 no debe cortarse como las fotos */
.mockup-phone {
    overflow: visible;
}
.mockup-phone img {
    max-height: 440px;
    width: auto;
}

/* --- AJUSTES RESPONSIVE (Celulares y Tablets) --- */
@media (max-width: 991px) {
    .popup-title {
        font-size: 1.8rem;
    }
    .popup-subtitle {
        font-size: 1rem;
    }
    .paso-item {
        padding: 0 15px !important; /* Menos espacio lateral en móvil */
    }
    .paso-img-wrapper img {
        max-height: 300px; /* Evita que las fotos sean gigantescas en vertical */
    }
    .mockup-phone img {
        max-height: 380px;
    }
}
/* ==========================================================================
   FORZAR MODAL GIGANTE EN COMPUTADORAS (ESCRITORIO)
   ========================================================================== */
@media (min-width: 992px) {
    /* Forzamos el contenedor externo de Bootstrap */
    #productoPulseraModal .modal-dialog.modal-xl {
        max-width: 90% !important;  /* Ocupa casi toda la pantalla de ancho */
        width: 1350px !important;    /* O un ancho fijo imponente si la pantalla es enorme */
        margin: 30px auto !important;
    }

    /* Forzamos el contenedor interno */
    #productoPulseraModal .modal-content.mascota-modal {
        padding: 40px !important;   /* Mucho aire interno para que respire */
    }

    /* Agrandamos el tamaño de las imágenes en escritorio */
    #productoPulseraModal .paso-img-wrapper img {
        max-height: 450px !important; /* Fotos mucho más grandes */
        object-fit: contain !important; /* Para que no se recorten raro al crecer */
    }

    #productoPulseraModal .mockup-phone img {
        max-height: 500px !important; /* El celular del paso 3 bien imponente */
    }
}

/* ==========================================================================
   MANTENER EL COMPORTAMIENTO RESPONSIVE (CELULARES)
   ========================================================================== */
@media (max-width: 991px) {
    #productoPulseraModal .modal-dialog {
        max-width: 95% !important;
        margin: 10px auto !important;
    }
    
    #productoPulseraModal .paso-img-wrapper img {
        max-height: 320px !important;
    }
}.popup-brand-logo{
    max-width: 180px;
}

/* CARD */
.paso-card{
    background: #fff;
    border-radius: 24px;
    padding: 25px 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.paso-card:hover{
    transform: translateY(-5px);
}

/* BADGE */
.paso-badge{
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

/* IMAGEN */
.paso-img-wrapper{
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 38px;
    margin-top: 18px;
    background: #f5f5f5;
    position: relative;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.10),
        0 3px 10px rgba(0,0,0,0.06);
}

/* IMPORTANTE */
.paso-img{
    width: 100%;
    height: 430px;
    object-fit: cover;

    border-radius: 38px;

    display: block;

    margin-top: 18px;
	 margin-bottom: 15px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.10),
        0 3px 10px rgba(0,0,0,0.06);

    transition: transform .4s ease;
}

.paso-card:hover .paso-img{
    transform: scale(1.03);
}

/* MOBILE */
@media(max-width: 991px){

    .paso-img{
        height: 360px;
        border-radius: 30px;
    }

}
@media(max-width: 991px){

    .paso-card{
        padding-bottom: 25px;
    }

    .paso-item{
        margin-bottom: 70px;
    }

}

/* ==========================================================================
   ESTILOS ESPECÍFICOS PARA EL POPUP DE MASCOTAS (TodoQR)
   ========================================================================== */

/* Colores institucionales de la marca */
.popup-title span {
    color: #008080 !important;
}

.icon-cyan {
    color: #008080;
    font-size: 2.4rem;
}

/* Títulos de pasos un toque más limpios */
.paso-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b2240;
}

/* --- MOLDES DE IMÁGENES IDÉNTICOS --- */
.paso-img-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forzar que las 3 imágenes midan EXACTAMENTE lo mismo en alto y proporción */
.img-paso-mascota {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* Molde cuadrado perfecto para unificar */
    object-fit: cover !important;
    object-position: center !important;
}

/* El paso 1 lleva el recorte perfectamente circular con fondo celeste sutil */
.circle-wrapper {
    border-radius: 50% !important;
    background-color: #e6f4f4; 
    border: 2px solid #008080;
}

/* Los celulares llevan esquinas redondeadas normales de tarjeta */
.phone-wrapper {
    border-radius: 20px !important;
}

/* --- TARJETAS DE BENEFICIOS INFERIORES --- */
.card-beneficio {
    border-radius: 10px;
    padding: 12px 15px;
    min-height: 65px; /* Altura fija para mantener simetría horizontal en PC */
}

.card-beneficio p {
    font-size: 0.95rem;
    color: #444;
    text-align: left;
    line-height: 1.3;
}

/* --- BARRA DE TRANQUILIDAD INFERIOR --- */
.barra-tranquilidad {
    background-color: #dbf0f0;
    color: #0b2240;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}
.barra-tranquilidad i {
    color: #008080;
}

/* --- RESPONSIVE / CONFIGURACIÓN MÓVIL --- */
@media (max-width: 991px) {
    .paso-item h4 {
        min-height: auto; /* En celular se quita el alto mínimo porque van apilados */
        margin-bottom: 15px;
    }
    
    .paso-img-wrapper {
        max-width: 280px; /* Un toque más compactas en pantallas chicas */
    }
    
    .card-beneficio {
        min-height: auto;
        max-width: 280px;
        margin: 15px auto 0 auto;
    }
    
    .barra-tranquilidad {
        font-size: 0.95rem;
        padding: 15px !important;
    }
}



/* Caracteristicas mas compactas */
#templatemo_benefit.qr-benefit {
  padding: 52px 0 46px !important;
}

#templatemo_benefit h1 {
  font-size: 32px !important;
  margin: 0 0 30px !important;
}

#templatemo_benefit .row {
  row-gap: 16px !important;
}

#templatemo_benefit .benefit-box {
  margin-bottom: 0 !important;
}

#templatemo_benefit .benefit-box-inner {
  align-items: flex-start;
  border-radius: 14px !important;
  display: grid;
  gap: 8px 14px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 136px;
  padding: 20px 20px !important;
  text-align: left !important;
}

#templatemo_benefit .benefit-box-inner:hover {
  transform: translateY(-3px) !important;
}

#templatemo_benefit .benefit-box-icon {
  align-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: flex;
  font-size: 22px !important;
  height: 46px;
  justify-content: center;
  margin: 0 !important;
  width: 46px;
}

#templatemo_benefit .benefit-box-inner strong {
  align-self: center;
  font-size: 17px !important;
  line-height: 1.22;
  margin: 0 !important;
}

#templatemo_benefit .benefit-box-inner p {
  font-size: 13px !important;
  grid-column: 2;
  line-height: 1.45;
  margin: -2px 0 0 !important;
}

@media (max-width: 767px) {
  #templatemo_benefit.qr-benefit {
    padding: 42px 0 36px !important;
  }

  #templatemo_benefit h1 {
    font-size: 28px !important;
    margin-bottom: 22px !important;
  }

  #templatemo_benefit .benefit-box-inner {
    min-height: 0;
    padding: 18px !important;
  }
}

/* ===== CELULAR FICHA QR - RESPONSIVE ===== */
.qr-phone-demo {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 18px auto 12px;
    min-height: 430px;
}

.qr-phone-frame {
    background: linear-gradient(145deg, #111827 0%, #020617 100%);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 34px;
    box-shadow: 0 22px 45px rgba(15, 32, 48, 0.24), inset 0 0 0 2px rgba(255,255,255,0.05);
    max-width: 236px;
    padding: 15px 11px 13px;
    position: relative;
    width: min(100%, 236px);
}

.qr-phone-speaker {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
    height: 5px;
    left: 50%;
    position: absolute;
    top: 8px;
    transform: translateX(-50%);
    width: 46px;
}

.qr-phone-screen {
    background: linear-gradient(180deg, #f6fbfb 0%, #ffffff 58%, #effafa 100%);
    border-radius: 25px;
    color: #102335;
    min-height: 392px;
    overflow: hidden;
    padding: 16px 14px 14px;
    position: relative;
}

.qr-phone-screen:before {
    background: radial-gradient(circle at top right, rgba(0,128,128,0.18), transparent 48%);
    content: "";
    height: 160px;
    position: absolute;
    right: -42px;
    top: -52px;
    width: 160px;
}

.qr-phone-status,
.qr-phone-profile,
.qr-phone-alert,
.qr-phone-list,
.qr-phone-actions {
    position: relative;
    z-index: 1;
}

.qr-phone-status {
    align-items: center;
    color: #5f6f7b;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    justify-content: space-between;
    margin-bottom: 20px;
}

.qr-phone-profile {
    text-align: center;
}

.qr-phone-avatar {
    align-items: center;
    background: #008080;
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0,128,128,0.24);
    color: #ffffff;
    display: flex;
    font-size: 31px;
    height: 86px;
    justify-content: center;
    margin: 0 auto 12px;
    width: 86px;
}

.qr-phone-profile strong {
    color: #102335;
    display: block;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.15;
}

.qr-phone-profile small {
    color: #687682;
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

.qr-phone-alert {
    align-items: center;
    background: #fff5f5;
    border: 1px solid rgba(229,57,53,0.18);
    border-radius: 14px;
    color: #b91c1c;
    display: flex;
    font-size: 12px;
    font-weight: 750;
    gap: 8px;
    line-height: 1.25;
    margin: 17px 0 12px;
    padding: 10px 11px;
    text-align: left;
}

.qr-phone-list {
    display: grid;
    gap: 8px;
}

.qr-phone-list span {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 32, 48, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 32, 48, 0.04);
    color: #40505c;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    line-height: 1.2;
    padding: 9px 10px;
    text-align: left;
}

.qr-phone-list i {
    color: #008080;
    width: 16px;
}

.qr-phone-actions {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 15px;
}

.qr-phone-actions span {
    align-items: center;
    background: #008080;
    border-radius: 14px;
    box-shadow: 0 8px 16px rgba(0,128,128,0.18);
    color: #ffffff;
    display: flex;
    font-size: 15px;
    height: 42px;
    justify-content: center;
}

.qr-phone-actions span:first-child {
    background: #25d366;
}

@media (max-width: 991px) {
    .qr-phone-demo {
        margin-top: 16px;
        min-height: 0;
    }

    .qr-phone-frame {
        max-width: 224px;
    }

    .qr-phone-screen {
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .qr-phone-demo {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .qr-phone-frame {
        border-radius: 30px;
        max-width: 210px;
        padding: 14px 10px 12px;
    }

    .qr-phone-screen {
        border-radius: 22px;
        min-height: 340px;
        padding: 15px 12px 12px;
    }

    .qr-phone-avatar {
        height: 76px;
        width: 76px;
    }

    .qr-phone-profile strong {
        font-size: 17px;
    }

    .qr-phone-alert,
    .qr-phone-list span {
        font-size: 11px;
    }
}
/* ===== CARACTERISTICAS 2 COLUMNAS MOBILE ===== */
@media (max-width: 767px) {
    #templatemo_benefit .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -5px;
        margin-right: -5px;
        row-gap: 10px !important;
    }

    #templatemo_benefit .row > [class*="col-"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 5px;
        padding-right: 5px;
    }

    #templatemo_benefit .benefit-box-inner {
        display: flex !important;
        flex-direction: column;
        align-items: center !important;
        justify-content: flex-start;
        min-height: 172px !important;
        padding: 13px 8px !important;
        text-align: center !important;
    }

    #templatemo_benefit .benefit-box-icon {
        font-size: 18px !important;
        height: 38px;
        margin: 0 0 8px !important;
        width: 38px;
    }

    #templatemo_benefit .benefit-box-inner strong {
        font-size: 12px !important;
        line-height: 1.18;
        margin: 0 0 6px !important;
    }

    #templatemo_benefit .benefit-box-inner p {
        font-size: 10.5px !important;
        grid-column: auto !important;
        line-height: 1.28;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }
}