
/* ===== CLASES UTILITARIAS ===== */
body, html {
    margin: 0;
    padding: 0;
    background-color: #f1f5f9;
}


.mobile-only {
    display: none !important;
}

.desktop-only {
    display: inline-block !important;
}

.general-padding-20{
    padding: 20px;
    box-sizing: border-box;
}

.general-seccion-completo {
    width: 100%;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}

.general-seccion-contenedor {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    border-radius: 10px;
}

.general-seccion-body{
    display: inline-block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
}

.general-seccion-cabecera{
    text-align: left;
    display: inline-block;
    background-color: #6b4b5e;
    color: #fff;
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    padding: 5px 20px;
    box-sizing: border-box;
}

.general-seccion-cabecera h2{
    font-size: calc(0.7em + 0.7vw);
    margin: 10px 0px;
    padding: 0px;
}

.general-footer-links {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 10px;
}

.general-footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}


/* SWIPPER */

.swiper-pagination {
  position: absolute;
}
.swiper-pagination-bullet {
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background: #fcdb5a;
}
.swiper-button-next,
.swiper-button-prev {
  opacity: 0.7;
  color: #fff;
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
  color: #fff;
}
/* Responsive media query code for small screens */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        color: #000;
        transition: all 0.3s ease;
    }
    .general-banner-container .swiper-pagination{
        display: none;
    }
    .general-banner {
        width: 100%;
        padding: 0px;
        margin-bottom: 15px;
        margin-top: 0px !important;
    }

    .general-banner-container {
        padding: 0px;
    }

    .general-banner-container .swiper-button-next,
    .general-banner-container  .swiper-button-prev {
        color: #fff;
        transition: all 0.3s ease;
    }
}


/*  ACCESO   */

.general-acceso-contenedor {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 32px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: auto;
}

.general-acceso-logo {
    margin-bottom: 16px;
}

.general-acceso-logo-icono {
    font-size: 40px;
    color: #4285F4;
}

.general-acceso-titulo {
    color: #333;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.general-acceso-mensaje {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 24px;
}

.general-acceso-boton {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4285F4;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.general-acceso-boton:active {
    background: #3367D6;
    transform: translateY(1px);
}

.general-acceso-boton-icono {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.general-acceso-beneficios {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    text-align: left;
}

.general-acceso-beneficio {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}

.general-acceso-beneficio-icono {
    color: #34A853;
    margin-right: 8px;
    font-size: 16px;
}

.general-acceso-privacidad {
    font-size: 12px;
    color: #888;
    margin-top: 16px;
}

/*  NOTIFICATION  */

.general-popup-notification {
    position: fixed;
    bottom: -100px;
    left: calc(50% - 10px);
    transform: translateX(-50%);
    background-color: #fff853;
    color: #000;
    padding: 16px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1000;
    width: calc(90% - 30px);
    max-width: 410px;
    font-family: 'Roboto', sans-serif;
    margin: 0px 10px;
    box-sizing: border-box;
}

.general-popup-notification-close{
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}


.general-popup-notification.normal {
    background-color: #fff853;
}

.general-popup-notification.error {
    background-color: #ffb2b2;
}

.general-popup-notification.show {
    bottom: 80px;
    opacity: 1;
}

.general-popup-notification .icon {
    font-size: 24px;
    color: #4CAF50;
}

.general-popup-notification .message {
    font-size: 18px;
    font-weight: 500;
}

/*  CARRUSEL */
.carrusel-upselling{
    padding: 10px;
    box-sizing: border-box;
}

    /* BANNER */
.general-banner {
    width: 100%;
    padding: 20px 0px 0px 0px;
    background-color: #8d617b;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    visibility: hidden;
    margin-bottom: 20px;
}

.general-banner.loaded {
  opacity: 1;
  visibility: visible;
}

.general-banner-container{
  position: relative;
  padding: 20px 50px;
  max-width: 1500px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  box-sizing: border-box;
}

.general-banner-container-cta{
    display: inline-block;
    width: 100%;
    background-color: #6b4b5e;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.general-banner-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  /*height: min-content;
  aspect-ratio: 16 / 9;*/
  width: 100%;
  overflow: hidden;
  height: auto;
}

.general-banner-card img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* rellena sin deformar */
  object-position: center;
}



/* ===== POPUP LOADING ===== */

.general-ajax-process-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.general-ajax-process-overlay--show {
    opacity: 1;
    visibility: visible;
}

.general-ajax-process-indicator {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 300px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.general-ajax-process-overlay--show .general-ajax-process-indicator {
    transform: scale(1);
}

.general-ajax-process-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #a076d5;
    border-radius: 50%;
    animation: general-ajax-process-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes general-ajax-process-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.general-ajax-process-text {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.general-ajax-process-subtext {
    color: #666;
    font-size: 0.9rem;
}

/* ===== TOAST WELCOME ===== */

/* Estilos para el toast de bienvenida móvil */
.general-login-welcome-toast {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    width: 95%;
    max-width: 380px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.5s ease;
    font-family: 'Roboto', sans-serif;
    z-index: 1000;
    display: none;
    box-sizing: border-box;
}

.general-login-welcome-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    display: inline-block;
}

.general-login-welcome-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: general-login-welcome-pulse 1.5s infinite;
}

@keyframes general-login-welcome-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.general-login-welcome-toast-title {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.general-login-welcome-toast-message {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.general-login-welcome-username {
    color: #6a11cb;
    font-weight: bold;
}

/* Efectos de confeti móvil */
.general-login-welcome-confetti {
    position: fixed;
    width: 8px;
    height: 8px;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

@keyframes general-login-welcome-confetti-fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== COMPONENTES GENERALES ===== */
.general-header {
    background: #6b4b5e;
    color: #fff;
    position: sticky;
    top: 0px;
    z-index: 1000;
    font-family: 'Roboto', sans-serif;
}

.general-header-nav.active {
    display: block;
}

.general-header-contenedor {
    max-width: 1400px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* ===== HEADER TOP ===== */
.general-header-top {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.general-header-mobile {
    display: none;
    width: 30px;
    font-size: 22px;
    cursor: pointer;
    vertical-align: middle;
}

.general-header-logo {
    display: inline-block;
    width: 200px;
    vertical-align: middle;
}

.general-header-logo img {
    max-width: 100%;
}

/* ===== BUSCADOR ===== */
.general-header-search {
    display: inline-block;
    width: 400px;
    vertical-align: middle;
    position: relative;
}
.general-header-search-mobile{
    width: calc(100% - 120px); 
    padding: 10px; 
    box-sizing: border-box;
    position: relative;
    display: inline-block;
}
.general-header-oferta-mobile{
    width: 115px;
    display: inline-block;
}

.general-header-content-mobile{
    width: 100%;
}

.general-header-boton-oferta {
    background: linear-gradient(45deg, #FF512F, #F09819);
    padding: 10px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.general-header-boton-oferta .hot-icon {
    font-size: 1.3rem;
}

.general-header-search-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}

.general-header-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #fcdb5a;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    color: #000;   
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;         
}

/* ===== ACCIONES HEADER ===== */
.general-header-actions {
    display: inline-block;
    vertical-align: middle;
}

.general-header-btn {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
}

.general-header-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

/* ===== DROPDOWN IDIOMAS - CORREGIDO ===== */
.general-header-dropdown {
    position: relative;
    display: inline-block;
}

.general-header-dropdown-btn {
    display: inline-block;
    cursor: pointer;
    padding: 11px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
}

.general-header-dropdown-btn img {
    vertical-align: middle;
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.general-header-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 5px;
    text-align: left;
}

.general-header-dropdown-menu.show {
    display: block;
}

.general-header-dropdown-item {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.general-header-dropdown-item:hover {
    background: #f8f9fa;
}

.general-header-dropdown-item:last-child {
    border-bottom: none;
}

.general-header-dropdown-item img {
    vertical-align: middle;
    margin-right: 10px;
    width: 20px;
    height: 15px;
}

/* ===== SECCIÓN CTA ===== */

.general-cta {
    background: #8d617b ;
    padding: 20px 0;
    text-align: center;
    border-radius: 0px 0px 10px 10px;
}

.general-cta-contenedor {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.general-cta-botones {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.general-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 5px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
}

.general-cta-btn-primary {
    background: #fcdb5a;
    color: #000;
}

.general-cta-btn-secondary {
    background: #fff;
    color: #69495b;
}

.general-cta-btn i {
    margin-right: 5px;
    font-size: 1.2rem;
}

/* ===== NAVEGACIÓN ===== */
.general-header-nav {
    display: inline-block;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.general-header-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}

.general-header-nav-item {
    display: inline-block;
}

.general-header-nav-link {
    display: inline-block;
    padding: 15px 10px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.general-header-nav-link.active {
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.general-header-nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.general-header-nav-link i {
    color: #f2df8e;
    margin-right: 8px;
}

/* ===== BORDE DECORATIVO ===== */
.general-header-border {
    background: url(../../assets/img/bg-border.png);
    width: 100%;
    height: 40px;
    background-size: 60px;
    position: absolute;
}

/* ===== SECCIÓN DE TENDENCIAS ===== */
.general-tendencias {
    background: #f8f9fa;
    padding: 40px 0;
}

.general-tendencias-contenedor {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.general-tendencias-titulo {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #69495b;
    margin-bottom: 30px;
}

/* Navegación de Tendencias */
.general-tendencias-nav {
    background: white;
    border-radius: 12px;
}

.general-tendencias-lista {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.general-tendencias-servicio {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.general-tendencia-item {
    margin: 0;
}

.general-tendencia-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.general-tendencia-link:hover {
    transform: translateY(-5px);
}

.general-tendencia-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 230px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.general-tendencia-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.general-tendencia-link:hover .general-tendencia-card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.general-tendencia-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 15px 15px;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.general-tendencia-titulo {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.general-tendencia-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #fcdb5a;
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.general-tendencia-link:hover .general-tendencia-btn {
    background: #ffeb8e;
    transform: translateY(-2px);
}


/* ===== SECCIÓN DE PRODUCTOS ===== */

.general-productos {
    background: #f8f9fa;
    padding-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.general-productos-contenedor {
    max-width: 1600px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Header de Categoría */
.general-categoria-header {
    background: #69495b;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.general-categoria-header:hover {
    background: #8d617b;
}

.general-categoria-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.general-categoria-titulo i {
    color: #fcdb5a;
    margin-right: 10px;
}

.general-categoria-icono {
    transition: transform 0.3s ease;
}

.general-categoria-header.cerrado .general-categoria-icono {
    transform: rotate(-90deg);
}

/* Grid de Productos */
.general-categoria-body{
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.general-productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.general-productos-grid-padding-15{
    padding: 15px;
    box-sizing: border-box;
}

.general-servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 15px;

}

.general-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Tarjeta de Producto */

.general-list-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
    height: max-content;
    width: calc(25% - 10px);
}

.general-list-acciones{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.general-producto-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
    min-width: 250px;
    height: max-content;
}

.general-producto-card a{
    text-decoration: none;
}

.general-producto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.general-producto-favorito {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #cbcbcb;
}

.general-producto-favorito-activo{
    background-color: #ff4757;
    color: #fff;
}

.general-producto-favorito:hover {
    background: #ff4757;
    color: white;
}

.general-producto-descuento {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.general-producto-imagen {
    width: 100%;
    height: inherit;
    object-fit: cover;
    display: block;
}


.general-servicio-imagen {
    width: 180px;
    display: inline-block;
    height: 170px;
    vertical-align: middle;
}

.general-servicio-info {
    width: calc(100% - 200px);
    display: inline-block;
    vertical-align: top;
    padding: 5px;
    box-sizing: border-box;
    vertical-align: middle;
}

.general-producto-info {
    padding: 20px;
}

.general-producto-titulo {
    font-size: calc(0.9em + 0.3vw);
    font-weight: 600;
    color: #000;
    margin: 0px 5px 10px 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.general-servicio-info .general-producto-titulo{
    text-align: left;
}

.general-producto-titulo a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.general-producto-titulo a:hover {
    color: #69495b;
}

.general-producto-precio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.general-producto-detalle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
    color: #5a235a;
    margin-bottom: 15px;
}

.general-producto-precio-actual {
    font-size: calc(0.9em + 0.4vw);
    font-weight: 700;
    color: #69495b;
}

.general-producto-precio-original {
    font-size: 1rem;
    color: #666666;
    text-decoration: line-through;
}

.general-producto-acciones {
    display: flex;
    gap: 10px;
}

.general-producto-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.general-producto-btn-detalle {
    background: #f8f9fa;
    color: #333333;
    border: 1px solid #e9ecef;
}

.general-producto-btn-detalle:hover {
    background: #e9ecef;
}

.general-producto-btn-comprar {
    background: #69495b;
    color: white;
    border: 1px solid #69495b;
}

.general-producto-btn-comprar:hover {
    background: #8d617b;
    transform: translateY(-2px);
}

.general-producto-btn-continuar {
    background: #27ae60;
    border: 1px solid #27ae60;
    color: #fff;
    font-size: 17.5px;
}

.general-producto-btn-reservar {
    background: #04b32a;
    color: white;
    border: 1px solid #04b32a;
}


/* ===== SECCIÓN DE TABS ===== */

/* Tabs de Navegación */
.general-resumen-tabs {
    display: flex;
    background: white;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.general-resumen-tab {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: white;
    font-size: calc(0.9em + 0.4vw);
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid #cfcfcf52;
}

.general-resumen-tab:hover {
    background: #f8f9fa;
    color: #69495b;
}

.general-resumen-tab.activo {
    color: #69495b;
    border-bottom: 3px solid #69495b;
    background: #f8f9fa;
}

/* Contenido de Tabs */
.general-resumen-contenido {
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.general-resumen-panel {
    display: none;
    padding: 15px;
}

.general-resumen-panel.activo {
    display: block;
}

/* ===== CARD APP ===== */

.general-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.general-app-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.general-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.general-app-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.general-app-icono {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
    color: white;
}

.general-app-info {
    flex: 1;
}

.general-app-titulo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.general-app-categoria {
    display: inline-block;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.general-app-precio {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.general-app-gratis {
    background: #10b981;
}

.general-app-descripcion {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 0.85rem;
    text-align: justify;
}

.general-app-caracteristicas {
    margin-bottom: 15px;
}

.general-app-caracteristica {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #333;
}

.general-app-caracteristica i {
    margin-right: 8px;
    color: var(--app-color, #69495b);
    width: 14px;
    text-align: center;
    font-size: 0.7rem;
}

.general-app-acciones {
    display: flex;
    gap: 8px;
}

.general-app-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
}

.general-app-btn-primary {
    color: white;
}

.general-app-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e9ecef;
    display: none;
}

.general-app-btn-secondary:hover {
    background: #e9ecef;
}


/* ===== FOOTER ===== */

.general-footer-completo {
    background: #6b4b5e;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.general-footer-ancho-maximo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.general-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.general-footer-columna h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.general-footer-columna h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #fcdb5a;
    border-radius: 2px;
}

.general-footer-lista {
    list-style: none;
    padding-left: 0px;
}

.general-footer-lista li {
    margin-bottom: 12px;
}

.general-footer-lista a {
    color: #e8d5df;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.general-footer-lista a:hover {
    color: #fcdb5a;
    transform: translateX(5px);
}

.general-footer-lista i {
    margin-right: 10px;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.general-footer-contacto-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.general-footer-contacto-item {
    display: flex;
    align-items: flex-start;
    color: #e8d5df;
}

.general-footer-contacto-item i {
    margin-right: 12px;
    color: #fcdb5a;
    margin-top: 3px;
}

.general-footer-redes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.general-footer-red-social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.general-footer-red-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* Colores específicos para cada red social */
.general-footer-red-social.facebook {
    background: #1877F2;
}

.general-footer-red-social.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.general-footer-red-social.tiktok {
    background: #000000;
}

.general-footer-red-social.youtube {
    background: #FF0000;
}

.general-footer-red-social.whatsapp {
    background: #25D366;
}

.general-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.general-footer-certificaciones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.general-footer-certificacion {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #e8d5df;
    font-size: 0.8rem;
}

.general-footer-certificacion i {
    color: #fcdb5a;
}

.general-footer-copyright {
    text-align: center;
    color: #e8d5df;
    font-size: 0.9rem;
}

.general-footer-copyright a {
    color: #fcdb5a;
    text-decoration: none;
}

.general-footer-copyright a:hover {
    text-decoration: underline;
}

/* ===== TOP ===== */

.general-top {
    background: #fff900;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.general-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.general-top-text {
    flex: 1;
    padding-right: 30px;
}

.general-top-title {
    font-size: 1rem;
    line-height: 1.4;
}

.general-top-highlight {
    color: #2A2A2A;
    font-weight: 800;
}

.general-top-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.general-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    min-width: 150px;
}

.general-top-tiktok {
    background-color: #000000;
    color: white;
}

.general-top-youtube {
    background-color: #FF0000;
    color: white;
}

.general-top-facebook {
    background-color: #1877F2;
    color: white;
}

.general-top-icons {
    font-size: 1.1rem;
}

/* ===== BREADCUMB ===== */

.general-breadcrumb {
  font-size: 18px;
  color: #555;
  display: block;
  padding: 20px 0;
  font-family: 'Roboto', sans-serif;
  margin-top: 35px;
}

.general-breadcrumb-contenedor {
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.general-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.general-breadcrumb li {
  display: inline-block;
  vertical-align: middle;
}

.general-breadcrumb li + li::before {
  content: "›";
  color: #999;
  margin: 0 8px;
}

.general-breadcrumb a {
  text-decoration: none;
  color: #000;
}

.general-breadcrumb a:hover {
  text-decoration: underline;
}

.general-breadcrumb [aria-current="page"] {
  color: #222;
  font-weight: bold;
}


/* MODAL */

.general-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 100;
}

.general-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.general-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.general-popup-image {
    max-width: 90vw;
    max-height: 90vh;
}

/* ===== BOTON WHASTAPP ===== */

.general-btn-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 12px 18px 12px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.general-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.general-btn-whatsapp-icon-container {
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 15px;
}

.general-btn-whatsapp-icon {
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: general-btn-whatsapp-pulse 2s infinite;
}

.general-btn-whatsapp-icon i {
    font-size: 22px;
    color: white;
}

.general-btn-whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: general-btn-whatsapp-badge-pulse 1.5s infinite;
    border: 2px solid white;
}

.general-btn-whatsapp-text {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-right: 10px;
}

.general-btn-whatsapp-action {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.general-btn-whatsapp:hover .general-btn-whatsapp-action {
    background: #128C7E;
    transform: scale(1.05);
}

@keyframes general-btn-whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes general-btn-whatsapp-badge-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .general-btn-whatsapp {
        bottom: 65px;
        padding: 5px;
    }
    
    .general-btn-whatsapp-icon-container {
        width: 50px;
        height: 50px;
        margin-right: 0px;
    }
    
    .general-btn-whatsapp-icon i {
        font-size: 30px;
    }
    
    .general-btn-whatsapp-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .general-btn-whatsapp-text, .general-btn-whatsapp-action  {
        display: none;
    }
    
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .general-top-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .general-top-btn {
        min-width: 120px;
        padding: 10px 0px;
    }

    .general-top-title{
        margin: 0px;
    }

    .general-top-text {
        flex: 1;
        padding-right: 0px;
    }

    .general-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .general-footer-bottom {
        text-align: center;
    }

    .general-apps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-height: 550px;
        overflow: auto;
    }

    .general-app-card {
        padding: 15px;
    }

    .general-seccion-body {
        padding: 10px;
    }

    .carrusel-upselling {
        padding: 0px;
    }

    .swiper-wrapper .general-producto-card{
        min-width: unset;
    }

    .swiper-slide .general-producto-acciones{
        flex-direction: column;
    }

    .general-breadcrumb {
        padding: 0px 0px 10px 0;
        font-size: 15px;
    }

    .general-productos-contenedor {
        padding: 0 15px;
    }

    .general-categoria-header {
        padding: 15px;
    }

    .general-categoria-titulo {
        font-size: 1.2rem;
    }

    .general-productos-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        display: flex;
    }

    .general-producto-info {
        padding: 15px;
    }

    .mobile-only {
        display: inline-block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .general-tendencias-lista {
        grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
    }

    .general-servicios-grid {
        max-height: 500px;
        overflow-y: scroll;
        padding-right: 15px;
    }

    .general-header-search-btn {
        right: 15px;
    }

    .general-productos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .general-categoria-titulo {
        font-size: 1.1rem;
    }

    .general-seccion-completo {
        padding: 10px;
        box-sizing: border-box;
    }

    .general-list-card {
        width: calc(50% - 10px);
    }

    .general-banner-container {
        padding: 0px;
    }

    .general-servicios-grid {
        grid-template-columns: repeat(auto-fill, minmax(95%, 1fr));
        gap: 10px;
    }

    .general-header-top {
        padding-bottom: 0px;
    }
    .mobile-only {
        display: inline-block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .general-header-mobile {
        display: inline-block;
    }
    
    .general-header-logo {
        width: 140px;
    }
    
    .general-header-search {
        display: none;
    }
    
    .general-header-nav {
        display: none;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 10;
    }
    
    .general-header-nav-item {
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: solid 1px #9b85927d;
    }

    .general-header-nav-link {
        padding: 10px 20px;
    }
    
    .general-header-border {
        height: 30px;
        background-size: contain;
    }
    
    .general-header-btn {
        padding: 8px;
    }
    
    .general-header-dropdown-menu {
        right: -10px;
        min-width: 160px;
    }

    .general-resumen-tab {
        padding: 10px;
    }

    .general-cta-btn {
        padding: 10px 8px;
        margin: 0px;
        font-size: 14.5px;
        min-width: unset;
        border-radius: 10px;
    }

    .general-cta-contenedor {
        padding: 0px;
    }

    .general-servicio-imagen {
        width: 135px;
        height: 135px;
    }

    .general-servicio-info {
        width: calc(100% - 145px);
    }

    .general-servicio-info .general-producto-titulo{
        text-align: left;
    }

    .general-producto-detalle {
        gap: 5px;
        font-size: 15px;
    }

    .general-list-acciones {
        flex-direction: column;
    }
}

@media (min-width: 1600px) {
    .general-header-contenedor {
        max-width: 1500px;
    }
}
