/* FUENTES */
@import url('/taggi/assets/fonts.css');

/* ESTILOS PARA SCROLL */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #3c7f78;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #2b6058;
}

/* === ESTILOS DESKTOP (no modificados) === */
/* RESETEAR ESTILOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

.container-home {
    display: flex;
    width: 100%;
    height: calc(100vw * (9 / 16));
    background-image: url('../images/fondo-home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.column {
    width: 50%;
    padding: 2vw;
    /* Espaciado basado en el ancho de la ventana */
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

/* ESTILOS COLUMNA IZQUIERDA */
.left-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 9vw;
}

.left-column {
    padding: 20px 50px;
    justify-content: flex-start;
    text-align: left;
}

.left-column h1 {
    font-size: 3.5vw;
    margin-block: 1.5vw;
    font-family: 'Lilita One Regular', sans-serif;
    font-weight: 100;
    text-align: center;
    color: #565656;
}

.left-column .highlight {
    color: #fbbd08;
    font-family: 'Lilita One Regular', sans-serif;
    font-size: 3.5vw;
}

.dog-image {
    width: 25vw;
    height: 76vh;
    margin-bottom: 10px;
    margin-inline: auto;
    object-fit: cover;
}

/* ESTILOS COLUMNA DERECHA */
.right-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 25px;
}

.right-header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.right-header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8vw;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.right-header nav ul li:not(:last-child) a:hover {
    border-bottom: 0.3vh solid white;
}

.right-header nav ul li a.active {
    border-bottom: 0.3vh solid white;
}

.right-column {
    color: white;
    position: relative;
    padding: 20px 50px;
    justify-content: flex-start;
    text-align: left;
}

.right-column h1 {
    font-size: 3.5vw;
    margin-block: 1.5vw;
    font-family: 'Montserrat';
    text-align: center;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}

.right-column .highlight {
    color: #3c7f78;
    font-family: 'Lilita One Regular', sans-serif;
    font-size: 3.5vw;
}

.icon-user {
    width: 27px;
    height: 27px;
}

.cart-link {
    position: relative;
    display: inline-block;
}

.cart-total {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    border: 2px solid #eee;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    z-index: 2;
    padding: 0 5px;
}

/* Offcanvas carrito */
.offcanvas-carrito {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.offcanvas-carrito.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 10px 20px;
    border-bottom: 1px solid #eee;
}

.offcanvas-title {
    font-size: 1.2em;
    font-weight: bold;
}

.cerrar-offcanvas {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #888;
}

.offcanvas-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.offcanvas-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.offcanvas-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1em;
}

.btn-ver-carrito {
    display: block;
    width: 100%;
    background: #1e88e5;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.content {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content p {
    width: 70%;
    margin: auto;
    text-align: justify;
    line-height: 1.5em;
    font-size: 1.15vw;
}

.eslogan-eco {
    width: 14vw;
    height: 20vh;
    text-align: center;
    margin-bottom: 3vh;
    object-fit: contain;
    cursor: pointer;
}

/* BOTÓN */
.learn-more {
    margin-top: 4vh;
    padding: 2.1vh 3vw;
    background-color: #fbbd08;
    border: none;
    border-radius: 35px;
    color: #3c7f78;
    font-weight: 900;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    display: inline-block;
    font-size: 0.9vw;
}

.learn-more:hover {
    background-color: #e0a507;
}

.italic {
    font-style: italic;
    font-family: 'Lilita One Regular', sans-serif;
}


.container-home2 {
    width: 100%;
    height: auto;
    padding: 5vh 0;
    background-image: url('../images/fondo-home-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
}

.container-home2 h1 {
    font-size: 3.6vw;
    font-weight: 500;
    padding: 20px 50px;
    color: #3ecb85;
    text-align: left;
    margin-block: 2vh;
    padding-left: 5vw;
}

.container-home2 .highlight {
    font-size: 4vw;
    font-family: 'Lilita One Regular', sans-serif;
    font-style: normal;
    display: block;
    position: absolute;
    color: #3c7f78;
}

/* Aquí se ajustan las dos columnas */
.stats-container {
    display: flex;
    justify-content: space-between;
}

/* Columna de estadísticas */
.stats-column {
    width: 53vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 5vw;
    align-self: center;
    height: 100vh;
    justify-content: center;
    padding-bottom: 4vh;
}

.stat-item {
    padding: 20px;
    border-radius: 15px;
}

.stat-number {
    font-size: 2.8vw;
    font-family: 'Lilita One Regular', sans-serif;
    background: #fbbd08;
    font-weight: bold;
    display: inline-block;
    width: 16vw;
    height: 7vh;
    text-align: center;
    color: #565656;
    border-radius: 35px;
}

.stat-item p {
    font-size: 1.1vw;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-top: 10px;
    line-height: 1.6em;
    width: 80%;
    text-align: justify;
    font-weight: 600;
    margin-top: 1.5vh;
    padding-left: 1vw;
}

.stat-hashtags ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.stat-hashtags ul li {
    font-weight: bold;
    color: #fff;
    font-size: 1vw;
}

.stat-hashtags p {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1rem;
    color: #3c7f78;
}

/* Columna de la imagen del gato */
.image-column {
    width: 46vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-image {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    object-fit: contain;
}

/* Animación de rotación lenta */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Aplica la rotación cuando se pasa el cursor por encima */
.eslogan-eco:hover {
    animation: rotateSlow 5s alternate infinite;
}

/* FUNCIONALIDADES PRINCIPALES - ESCANEAR */
.funcionalidades-principales {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    /* background-image: url(../images/fondo-funcionalidades-escanear.jpg); */
    background-color: #fff !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 2rem;
}

/* Título del card */
.titulo-card {
    font-size: 3.5vw;
    text-align: center;
    color: #3ecb85;
    font-weight: 300;
    margin-top: 3rem;

}

.titulo-card .highlight {
    color: #3c7f78;
    font-family: 'Lilita One Regular', sans-serif;
    font-size: 3.8vw;
}



/* Card con box-shadow */
.card-funcionalidad {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 100vw;
    max-width: 55vw;
    height: 50vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.card-funcionalidad:first-child {
    margin-top: 20px;
}

.card-funcionalidad:not(:nth-of-type(1)) {
    margin-top: 10vh;
}

.titulo-card+.card-funcionalidad {
    margin-top: 0;
    /* Elimina el margen superior solo para este card */
}

/* Contenido dentro del card */
.contenido-funcionalidad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 15px;
}

/* Columna de la imagen del teléfono */
.columna-imagen {
    flex: 2;
    overflow: hidden;
    position: relative;
    height: 100%;
    border-bottom-left-radius: 17px;
}

.imagen-telefono {
    width: 26vw;
    height: 53vh;
    object-fit: contain;
    max-height: 100vh;
    margin-top: 0;
    border-bottom-left-radius: 15px;
}

/* Columna de la información */
.columna-informacion {
    flex: 2;
}

.columna-informacion h3 {
    font-size: 1.8vw;
    color: #565656;
    margin-bottom: 10px;
    font-weight: normal;
    padding-left: 8px;
}

.escaneo .highlight-yellow {
    font-size: 1.8vw;
    font-family: 'Lilita One Regular', sans-serif;
    background: #ffd559;
    font-weight: bold;
    display: inline-block;
    width: 22vw;
    height: 5vh;
    text-align: center;
    color: #565656;
    border-radius: 35px;
    line-height: 2.5vw;
    letter-spacing: 1.5px;
}

.columna-informacion p {
    font-size: 0.9vw;
    line-height: 3.4vh;
    color: #565656;
    width: 25vw;
    margin-top: 20px;
    padding-left: 8px;
    font-weight: normal;
    text-align: justify;
    hyphens: auto;
    letter-spacing: normal;
}

/* Imagen del perro flotante en la esquina del card */
.imagen-perro-flotante {
    position: absolute;
    top: -15vh;
    right: -2.5vw;
    width: 12vw;
    z-index: 2;
}

/* FUNCIONALIDADES PRINCIPALES - INFORMACIÓN EN TIEMPO REAL  */

.acceso-informacion .highlight-yellow {
    font-size: 1.8vw;
    font-family: 'Lilita One Regular', sans-serif;
    background: #ffd559;
    font-weight: bold;
    display: inline-block;
    width: 14vw;
    height: 5vh;
    text-align: center;
    color: #565656;
    border-radius: 35px;
    line-height: 2.5vw;
    letter-spacing: 1.5px;
}

.imagen-acceso-informacion {
    width: 100%;
    height: 92%;
    max-height: 100vh;
    margin-top: 2vh;
    object-fit: contain;
}

.acceso-informacion .contenido-funcionalidad {
    height: 100%;
}

.acceso-informacion .columna-informacion {
    flex: 1;
    padding-left: 2vw;
}

.acceso-informacion .columna-imagen {
    overflow: visible;
}

.imagen-gato-flotante {
    position: absolute;
    top: 6vh;
    right: 0;
    width: 12vw;
    z-index: 2;
    left: -10.3vw;
}

/* ALERTA Y LOCALIZACIÓN */

.alerta-localizacion .highlight-yellow {
    font-size: 1.8vw;
    font-family: 'Lilita One Regular', sans-serif;
    background: #ffd559;
    font-weight: bold;
    display: inline-block;
    width: 20vw;
    height: 5vh;
    text-align: center;
    color: #565656;
    border-radius: 35px;
    line-height: 2.5vw;
    letter-spacing: 1.5px;
}

.alerta-localizacion .imagen-app-taggi {
    width: 19.1vw;
    height: 45vh;
    object-fit: cover;
    max-height: 100vh;
    margin-top: 0;
    overflow: unset;
}

.alerta-localizacion .columna-imagen {
    flex: 2;
    position: relative;
    height: 100%;
    overflow: unset;
    display: flex;
    justify-content: center;
}

/* ECOSOSTENIBILIDAD */

.ecosostenible .highlight-yellow {
    font-size: 1.8vw;
    font-family: 'Lilita One Regular', sans-serif;
    background: #ffd559;
    font-weight: bold;
    display: inline-block;
    width: 16.5vw;
    height: 5vh;
    text-align: center;
    color: #565656;
    border-radius: 35px;
    line-height: 2.5vw;
    letter-spacing: 1.5px;
}

.imagen-ecosostenible {
    width: 100%;
    height: 90%;
    max-height: 100vh;
    margin-top: 2vh;
    object-fit: contain;
}

.ecosostenible .contenido-funcionalidad {
    height: 100%;
}

.ecosostenible .columna-informacion {
    flex: 1;
    padding-left: 2vw;
}

.ecosostenible .columna-imagen {
    overflow: visible;
}

/* SEGURIDAD */

.seguridad .highlight-yellow {
    font-size: 1.8vw;
    font-family: 'Lilita One Regular', sans-serif;
    background: #ffd559;
    font-weight: bold;
    display: inline-block;
    width: 20.5vw;
    height: 5vh;
    text-align: center;
    color: #565656;
    border-radius: 35px;
    line-height: 2.5vw;
    letter-spacing: 1.5px;
}

/* COMPRAR PRODUCTO */
.comprar-producto {
    width: 70vw;
    max-width: 70vw;
    height: auto;
    margin: auto;
    margin-top: 5vh;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    align-items: center;
    overflow: hidden;
    gap: 4vw;
}

.barra-productos {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.icono-producto {
    width: 40px;
    height: 40px;
    color: #b0b0b0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icono-producto i {
    font-size: 32px;
}

.icono-producto img {
    width: 100%;
    height: auto;
}

.icono-producto.activo {
    color: #3ecb85;
    /* Gris oscuro para el icono activo */
    transform: scale(1.2);
}

.icono-producto:hover {
    color: #3ecb85;
    transform: scale(1.1);
}

/* Columna de la imagen del producto (Pata o tag NFC) */
.imagen-producto {
    flex: 2;
    max-width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.imagen-producto img {
    width: 70%;
    height: 350px;
    object-fit: contain;
}

/* Estilos para los circulitos del slider */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    display: none;
    /* Todos los dots ocultos por defecto */
    position: absolute;
    bottom: -45px;
    display: none;
    /* Todos los dots ocultos por defecto */
}

.slider-dots.active {
    display: flex;
    /* Solo los dots activos estarán visibles */
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: #d3d3d3;
    /* Color de los dots no activos */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #3ecb85;
    /* Color del dot activo */
}

.dot:hover {
    background-color: #a3a3a3;
    /* Color al pasar el mouse */
}

/* Columna de la información del producto */
.info-producto {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.info-producto h2 {
    font-size: 2.2vw;
    color: #3ecb85;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
}

.info-producto h2 strong {
    color: #3c7f78;
    font-family: 'Lilita One Regular', sans-serif;
    letter-spacing: 2px;
}

/* Selector de colores */
.selector-colores {
    display: flex;
    gap: 15px;
    margin-block: 10px;
    align-items: center;
}

/* Cada opción de color */
.color-opcion {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

/* Efecto al pasar el mouse */
.color-opcion:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
}

.info-producto p {
    font-size: 0.9vw;
    color: #565656;
    line-height: 1.5em;
    font-weight: normal;
    text-align: justify;
    hyphens: auto;
    letter-spacing: normal;
    width: 82%;
}

.info-producto .precio {
    font-size: 1.9vw;
    font-weight: 600;
    color: #1f1f1f;
    margin-top: 10px;
}

.info-producto .iva-incluido {
    font-size: 0.75vw;
    color: #d4c8c8;
    margin-top: 5px;
    font-weight: normal;
}

/* Selector de cantidad */
.cantidad-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cantidad-selector button {
    background-color: transparent;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 1.2vw;
    cursor: pointer;
    font-weight: bold;
    margin-block: 10px;
}

.cantidad-selector span {
    font-size: 1.2vw;
    font-weight: normal;
    color: #1f1f1f;
}

/* Botones de compra y personalizar */
.botones-producto {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

.boton-comprar,
.boton-personalizar {
    padding: 8px 26px;
    border-radius: 12px;
    font-size: 0.9vw;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    height: 4.8vh;
}

.boton-comprar {
    background-color: #ffd559;
    color: #565656;
    border: none;
    transition: transform 0.3s ease;
}

.boton-comprar:hover {
    background-color: #ffd559;
    transform: scale(1.1);
}

.boton-personalizar {
    background-color: #3c7f78;
    color: white;
    border: none;
    transition: transform 0.3s ease;
}

.boton-personalizar:hover {
    background-color: #3c7f78;
    transform: scale(1.1);
}

/* Íconos de Apple y Android */
.icono-sistema {
    width: 25px;
    height: 25px;
}

/* Estilos del contenedor para los íconos */
.icono-contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 3.8vw;
    height: 4.8vh;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animación al pasar el cursor */
.icono-contenedor:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.barra-productos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}


.icono-producto2 {
    display: flex;
    margin-left: 2rem !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icono-producto2 i {
    font-size: 20px;
    /* Tamaño del ícono */
    color: rgb(78, 78, 78);
}

.fi {
    margin-top: 5px !important;
}


.icono-producto2:hover,
.icono-producto2.activo {
    transform: scale(1.1);
    background-color: #3c7f78;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
    padding: 10%;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #28ce93;
}

/* =====================================
   FUENTES Y RESETEO GENERAL
   ===================================== */
@import url('/taggi/assets/fonts.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    background-color: #fff !important;
    color: #565656;
}

/* =====================================
   ESTILOS PARA SCROLL PERSONALIZADO
   ===================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #3c7f78;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #2b6058;
}

/* =====================================
   VERSIÓN MOBILE FIRST - OPTIMIZADA
   ===================================== */
@media (max-width: 768px) {

    /* ========== CONTENEDORES GENERALES ========== */
    .container-home,
    .container-home2,
    .funcionalidades-principales,
    .comprar-producto {
        width: 100%;
        padding: 5vh 5vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4vh;
    }

    /* ========== TEXTOS Y TÍTULOS ========== */
    h1,
    h2,
    h3,
    .titulo-card {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        text-align: center;
        color: #3c7f78;
        margin-bottom: 2vh;
    }

    h1 {
        font-size: 7vw;
    }

    h2 {
        font-size: 6vw;
        color: #28CE93;
    }

    h3 {
        font-size: 5vw;
    }

    .highlight {
        color: #FFD460;
        font-weight: bold;
    }

    .highlight-yellow {
        background-color: #FFD460;
        color: #565656;
        padding: 1vh 4vw;
        border-radius: 20px;
        font-size: 4vw;
        display: inline-block;
        font-weight: bold;
    }

    /* ========== PÁRRAFOS ========== */
    p,
    .content p,
    .stat-item p,
    .info-producto p,
    .columna-informacion p {
        font-size: 4.3vw;
        text-align: justify;
        line-height: 1.6;
        color: #565656;
        margin-bottom: 2vh;
        width: 100%;
    }

    /* ========== BOTONES ========== */
    .learn-more,
    .boton-comprar,
    .boton-personalizar {
        font-size: 4.5vw;
        padding: 1.5vh 6vw;
        border-radius: 30px;
        font-weight: bold;
        border: none;
        text-align: center;
        cursor: pointer;
    }

    .learn-more {
        background: #FFD460;
        color: #3c7f78;
    }

    .boton-comprar {
        background-color: #FFD460;
        color: #3c3c3c;
    }

    .boton-personalizar {
        background-color: #3c7f78;
        color: #ffffff;
    }

    /* ========== TARJETAS (CARDS) ========== */
    .card-funcionalidad,
    .stat-item,
    .comprar-producto {
        width: 100%;
        max-width: 95%;
        background-color: #fff;
        border-radius: 20px;
        padding: 4vh 4vw;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .card-funcionalidad .tienda {
        margin-bottom: 1.5em !important;
    }

    .info-producto {
        width: 100%;
        text-align: center;
    }

    /* ========== IMÁGENES ========== */
    img,
    .dog-image,
    .cat-image,
    .imagen-producto img,
    .imagen-acceso-informacion,
    .imagen-ecosostenible {
        width: 100%;
        max-width: 350px;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    /* ========== SECCIONES INTERNAS ========== */
    .stats-container,
    .contenido-funcionalidad {
        flex-direction: column;
        gap: 4vh;
        align-items: center;
        width: 100%;
    }

    .selector-colores {
        justify-content: center;
        gap: 3vw;
        margin: 2vh 0;
    }

    .color-opcion {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #ccc;
    }

    .cantidad-selector {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5vw;
    }

    .cantidad-selector button,
    .cantidad-selector span {
        font-size: 5vw;
        font-weight: bold;
        color: #333;
    }

    /* ========== DOTS SLIDER ========== */
    .slider-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 2vw;
        margin-top: 2vh;
    }

    .dot {
        width: 12px;
        height: 12px;
        background-color: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .dot.active {
        background-color: #28ce93;
    }

    .dot:hover {
        background-color: #3c7f78;
    }

    /* ========== ICONOS DE SISTEMA ========== */
    .icono-contenedor {
        display: flex;
        justify-content: center;
        gap: 4vw;
        margin-top: 2vh;
    }

    .icono-sistema {
        width: 24px;
        height: 24px;
    }



    .icono-producto2:hover,
    .icono-producto2.activo {
        background-color: #3c7f78;
        color: white;
        transform: scale(1.1);
    }
}

/* =====================================
   FIN VERSIÓN MOBILE OPTIMIZADA
   ===================================== */
