
/* Fuentes Poppins alojadas localmente para privacidad y rendimiento */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/poppins-light.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/poppins-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/poppins-medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins-semibold.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/poppins-bold.woff2') format('woff2');
}

/* REMOVIDO: @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */

:root {
    --naranja-amazon: #ff9900;
}

/* Estilos generales - Diseño moderno inspirado en Xataka */
* {
    box-sizing: border-box;
}

/* Estilos globales para enlaces de texto */
a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:visited,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #f5f5f5;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Breadcrumbs - Estilo minimalista */
.breadcrumbs {
    background-color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    width: 100%;
    overflow-x: hidden;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #1a1a1a;
}

.breadcrumbs span {
    color: #999;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb-square {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #1a1a1a;
    margin-right: 8px;
    vertical-align: middle;
}

/* Cabecera - Diseño elegante y minimalista */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

header .logo {
    margin: 0;
}

header .logo a {
    display: flex;
    align-items: center;
    gap: 0;
    color: white;
    text-decoration: none;
}

header .logo-icon {
    display: none;
}

header .logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
}

header .logo-t {
    font-size: 32px;
    color: white;
    font-weight: 900;
    background-color: #ff9900;
    padding: 8px 12px;
    margin-right: 5px;
    line-height: 1;
    display: inline-block;
}

/* Menu hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    /* Asegurar que no interfiera con enlaces en desktop */
    pointer-events: none;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    display: inline-block;
    margin-left: 25px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Menú desplegable */
nav ul li {
    position: relative;
}

nav ul li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav ul li:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

nav ul li .submenu li {
    display: block;
    margin: 0;
    width: 100%;
}

nav ul li .submenu li a {
    display: block;
    padding: 10px 20px;
    color: white;
    white-space: nowrap;
    border-radius: 0;
    font-size: 14px;
}

nav ul li .submenu li a:hover {
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    color: white;
}

nav ul li.has-submenu > a::after {
    content: ' ▾';
    font-size: 12px;
    margin-left: 4px;
}

/* Main */
main {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.producto {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.producto:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.producto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #e5e5e5;
}

.producto h3 {
    margin: 20px 20px 10px;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.producto p {
    margin: 0 20px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Contenedor del botón con animación de corazones */
.btn-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
}

/* Contenedor del botón con posición relativa para los corazones */
.btn-container {
    position: relative;
    display: inline-block;
}

/* Botones de compartir en redes sociales - Alineados a la derecha en escritorio */
.compartir-social {
    display: inline-flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

.compartir-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-right: 5px;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-share:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-share svg {
    width: 20px;
    height: 20px;
}

.btn-facebook {
    background-color: #1877f2;
}

.btn-facebook:hover {
    background-color: #0c63d4;
}

.btn-twitter {
    background-color: #1da1f2;
}

.btn-twitter:hover {
    background-color: #0d8ecf;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1faa52;
}

.btn-telegram {
    background-color: #0088cc;
}

.btn-telegram:hover {
    background-color: #006699;
}

.btn-signal {
    background-color: #3a76f0;
}

.btn-signal:hover {
    background-color: #2958c7;
}

/* Estilo del botón principal - Diseño tipo Instagram con gradiente exacto v2 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    padding: 14px 50px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: visible;
    border: none;
    width: auto;
    max-width: 420px;
    text-transform: none;
}

.btn:hover {
    background: linear-gradient(90deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #b11e8a 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
    color: white !important;
}

.btn:active {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
    color: white !important;
}

.btn:visited {
    color: white !important;
}

.btn:focus {
    color: white !important;
    outline: none;
}

/* Animación de corazones voladores saliendo del botón */
.hearts-flying {
    position: absolute;
    top: 0;
    right: 10px;
    width: 60px;
    height: 40px;
    pointer-events: none;
    z-index: 10;
}

.flying-heart {
    position: absolute;
    font-size: 1.5rem;
    color: #ff9900;
    animation: fly-out-right 2s ease-out infinite;
    opacity: 0;
    top: 0;
    right: 0;
}

.flying-heart:nth-child(1) { animation-delay: 0s; }
.flying-heart:nth-child(2) { animation-delay: 0.3s; }
.flying-heart:nth-child(3) { animation-delay: 0.6s; }
.flying-heart:nth-child(4) { animation-delay: 0.9s; }
.flying-heart:nth-child(5) { animation-delay: 1.2s; }

@keyframes fly-out-right {
    0% {
        transform: translate(0, 0) scale(0.8) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(30px, -40px) scale(1.2) rotate(15deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(50px, -70px) scale(0.5) rotate(30deg);
        opacity: 0;
    }
}

/* Footer - Elegante y minimalista */
footer {
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 2rem 0;
    margin-top: 60px;
    border-top: 1px solid #333;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Imagen principal del producto - Diseño tipo artículo de revista tech */
.producto-principal {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    border: none;
    padding: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    box-shadow: 0 4px 20px rgba(19, 25, 33, 0.4);
}

.producto-principal img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    border-radius: 12px;
    cursor: zoom-in;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.producto-principal img:hover {
    transform: scale(1.05);
}

/* Categorías del producto */
.producto-imagen-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.producto-categorias {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 350px;
}

.categoria-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255, 153, 0, 0.3);
    text-transform: capitalize;
}

.categoria-badge:link,
.categoria-badge:visited,
.categoria-badge:active {
    color: white;
}

.categoria-badge:hover {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.5);
    color: white;
}

.categorias-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.producto-principal .descripcion {
    flex: 1;
}

.producto-principal .descripcion h1 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Rating estrellas */
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.rating-link:hover,
.rating-link:visited,
.rating-link:active {
    text-decoration: none;
    color: inherit;
}

.title-link {
    text-decoration: none;
    color: #ffffff !important;
}

.rating .stars {
    color: #ff9900;
    font-size: 20px;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.rating .rating-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Pros y contras mini en producto-principal */
.pros-contras-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.pro-mini,
.contra-mini {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.pro-mini {
    background: rgba(76, 175, 80, 0.15);
    border-left: 3px solid #4caf50;
}

.contra-mini {
    background: rgba(244, 67, 54, 0.15);
    border-left: 3px solid #f44336;
}

.pro-mini .icon {
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.contra-mini .icon {
    color: #f44336;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.pro-mini .text,
.contra-mini .text {
    color: #ffffff;
    flex: 1;
}

.producto-principal .descripcion p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.producto-principal .descripcion .btn {
    display: inline-block;
    font-size: 16px;
    padding: 14px 36px;
    margin: 0;
    background: linear-gradient(135deg, #ff9900 0%, #ffad33 100%);
    color: #131921;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.producto-principal .descripcion .btn:hover {
    background: linear-gradient(135deg, #ffad33 0%, #ffc266 100%);
    color: #0f1111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.5);
}

/* Descripción larga - Estilo artículo editorial */
.descripcion-larga {
    background-color: #ffffff;
    padding: 0;
    border-radius: 12px;
    margin-bottom: 40px;
    border: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.descripcion-larga h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
    padding: 30px 40px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.descripcion-larga h4 {
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
    padding: 0 40px;
    text-align: justify;
    position: relative;
    padding-left: 60px;
}

.descripcion-larga h4::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 1px;
}

.descripcion-larga > p,
.descripcion-larga > ul {
    padding: 0 40px;
}

.descripcion-larga > p:first-of-type {
    padding-top: 30px;
}

.descripcion-larga > p:last-of-type,
.descripcion-larga > ul:last-child {
    padding-bottom: 30px;
}

.descripcion-larga p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 17px;
    color: #444;
    text-align: justify;
}

.descripcion-larga ul {
    margin: 20px 0;
    padding-left: 40px;
    list-style: none;
}

.descripcion-larga ul li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #444;
    font-size: 17px;
    padding-left: 25px;
    position: relative;
}

.descripcion-larga ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #ff9900;
    border-radius: 0;
}

/* Subtítulo destacado dentro de descripción larga */
.descripcion-larga .subtitle-destacado {
    font-size: 20px;
    margin: 30px -40px 20px -40px;
    padding: 20px 40px 20px 80px;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Índice de Contenidos - NUEVO SIMPLE */
.indice-box {
    background: #f8f8f9;
    border-radius: 12px;
    margin: 0 0 40px 0;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.3s ease;
}

.indice-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.indice-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: left;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.indice-btn:hover {
    background: rgba(255, 153, 0, 0.05);
}

.indice-btn:active {
    background: rgba(255, 153, 0, 0.1);
}

.indice-icon {
    font-size: 22px;
    color: #ff9900;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.indice-content {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #e8e8e8;
}

.indice-link {
    display: block;
    padding: 12px 16px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.indice-link:hover {
    background: #fff;
    color: #ff9900;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.indice-link:active {
    color: #ff6600;
}

/* Sección de opiniones y reviews - Estilo profesional */
.opiniones-section {
    background-color: #ffffff;
    padding: 0;
    border-radius: 12px;
    margin-bottom: 40px;
    border: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.opiniones-section h3 {
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    color: white;
    padding: 30px 40px;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.opiniones-rating {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 20px 40px;
    margin: 0;
    border: none;
}

.opiniones-rating .rating-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.opiniones-rating .rating-link:hover {
    opacity: 0.9;
}

.opiniones-rating .stars {
    color: #ffa41c;
}

.opiniones-rating .rating-text {
    color: #e6e6e6;
}

.opiniones-section p {
    line-height: 1.9;
    margin-bottom: 20px;
    color: #444;
    font-size: 17px;
    padding: 0 40px;
}

.opiniones-section p:first-of-type {
    margin-top: 30px;
}

.opiniones-section p:last-of-type {
    margin-bottom: 30px;
}

/* Opiniones - Intro y conclusión con estilo destacado */
.opiniones-intro {
    font-size: 18px !important;
    color: #1a1a1a !important;
    font-weight: 500;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 40px !important;
    margin: 0 !important;
    border-left: 4px solid #ff9900;
}

.opiniones-conclusion {
    font-size: 17px !important;
    color: #2c3e50 !important;
    padding: 25px 40px !important;
    margin: 0 !important;
    background-color: #f8f9fa;
    border-top: 2px dashed #dee2e6;
}

/* Aspectos valorados - Diseño mejorado con iconos */
.aspectos-valorados {
    padding: 30px 40px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.aspectos-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff9900;
}

.icono-destacado {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.lista-aspectos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aspecto-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #4CAF50;
}

.aspecto-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.aspecto-icono {
    font-size: 22px;
    color: #4CAF50;
    font-weight: bold;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.aspecto-contenido {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.aspecto-titulo {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 600;
    display: block;
}

.aspecto-descripcion {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Puntos a considerar - Diseño con ícono de atención */
.puntos-considerar {
    padding: 30px 40px;
    background: linear-gradient(to bottom, #fffbf0 0%, #fff8e1 100%);
    border-top: 2px solid #ffe082;
}

.puntos-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffa726;
}

.icono-atencion {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.lista-puntos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.punto-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #ff9800;
}

.punto-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.punto-icono {
    font-size: 24px;
    color: #ff9800;
    font-weight: bold;
    min-width: 20px;
    line-height: 1;
}

.punto-texto {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    flex: 1;
}

/* Sección de Características Destacadas con título con fondo */
.pros-contras-section {
    background-color: #ffffff;
    padding: 0;
    border-radius: 12px;
    margin-bottom: 40px;
    border: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.pros-contras-section h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
    padding: 30px 40px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Pros y Contras - Diseño moderno con colores sutiles */
.pros-contras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.pros, .contras {
    padding: 0;
    border: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pros, .contras {
    border-radius: 0;
}

.pros h4, .contras h4 {
    font-size: 22px;
    margin: 0;
    padding: 20px 30px;
    font-weight: 600;
    color: white;
}

.pros h4 {
    background-color: #2d7a3e;
}

.contras h4 {
    background-color: #a63838;
}

.pros ul, .contras ul {
    list-style: none;
    padding: 30px;
    margin: 0;
    background-color: #ffffff;
}

.pros ul li, .contras ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
    color: #2c2c2c;
    font-size: 16px;
}

.pros ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: bold;
    font-size: 20px;
}

.contras ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #a63838;
    font-weight: bold;
    font-size: 20px;
}

/* Botón Ver Ofertas en sección de ventajas */
.pros ul {
    margin-bottom: 30px;
}

.btn-wrapper-ventajas {
    margin-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
}

.btn-wrapper-ventajas .btn-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.btn-wrapper-ventajas .btn-ofertas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    padding: 14px 50px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    letter-spacing: 0.5px;
    position: relative;
}

.btn-wrapper-ventajas .btn-ofertas:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.5);
}

/* Productos relacionados - Card única después de descripción */
#productos-relacionados {
    margin: 50px 0;
    padding: 30px 0;
}

#productos-relacionados h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

#productos-relacionados .productos-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

#productos-relacionados .producto {
    display: flex;
    gap: 25px;
    align-items: center;
    background-color: #ffffff;
    border: none;
    padding: 25px;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#productos-relacionados .producto:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

#productos-relacionados .producto img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
    border: none;
    border-radius: 8px;
}

#productos-relacionados .producto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#productos-relacionados .producto h4 {
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
}

#productos-relacionados .producto p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

#productos-relacionados .producto .btn {
    align-self: flex-start;
    margin: 5px 0 0 0;
    padding: 10px 24px;
    font-size: 14px;
}

/* Styling para producto-relacionado (generado dinámicamente) */
.producto-relacionado {
    display: flex;
    gap: 25px;
    align-items: center;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto-relacionado:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.producto-relacionado img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}

.producto-relacionado .producto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.producto-relacionado h4 {
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
}

.producto-relacionado h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.producto-relacionado h4 a:hover {
    color: #ff9900;
}

.producto-relacionado p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.producto-relacionado .btn {
    align-self: flex-start;
    margin: 5px 0 0 0;
    padding: 10px 24px;
    font-size: 14px;
}

/* Últimas Novedades - Sección con 3 productos recientes */
#ultimas-novedades {
    margin: 60px 0 50px 0;
    padding: 40px 0 30px 0;
}

#ultimas-novedades h3 {
    font-size: 26px;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

#ultimas-novedades .novedades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.producto-novedad {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto-novedad:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.producto-novedad-imagen {
    display: block;
    padding: 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.producto-novedad-imagen img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.producto-novedad:hover .producto-novedad-imagen img {
    transform: scale(1.05);
}

.producto-novedad-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.producto-novedad h4 {
    margin: 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
}

.producto-novedad h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.producto-novedad h4 a:hover {
    color: #ff9900;
}

.producto-novedad-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.producto-novedad-rating .estrellas {
    color: #FFA500;
    font-size: 16px;
}

.producto-novedad-rating .rating-num {
    font-weight: 700;
    color: #1a1a1a;
}

.producto-novedad-rating .valoraciones {
    color: #666;
}

.producto-novedad-desc {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.producto-novedad-acciones {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

.producto-novedad-acciones .btn-secundario {
    flex: 1;
    padding: 10px 16px;
    background: #f5f5f5;
    color: #1a1a1a;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.producto-novedad-acciones .btn-secundario:hover {
    background: #e8e8e8;
    border-color: #ff9900;
}

.producto-novedad-acciones .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    text-align: center;
}

/* Responsive - Optimizado para móviles */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        font-size: 14px;
    }

    main {
        padding: 5px 0;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Logo responsive */
    header .logo-text {
        font-size: 20px;
    }

    header .logo-t {
        font-size: 24px;
        padding: 6px 10px;
    }

    nav ul {
        float: none;
        text-align: center;
        margin-top: 15px;
    }

    /* Menu hamburguesa móvil */
    .menu-toggle {
        display: flex;
        pointer-events: auto;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #1a1a1a;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        float: none;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        display: block;
        margin: 0;
        margin-bottom: 10px;
    }

    nav ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
    }

    nav ul li a .menu-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    nav ul li .submenu {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background: #252525;
        margin: 8px 0 0 0;
        padding: 0;
        border-radius: 8px;
    }

    nav ul li.has-submenu.active .submenu {
        display: block;
    }

    nav ul li .submenu li a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        background: transparent;
    }

    nav ul li .submenu li a:hover {
        background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    }

    nav ul li.has-submenu > a::after {
        float: right;
    }

    .productos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .producto-principal {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }

    .producto-imagen-wrapper {
        width: 100%;
    }

    .producto-categorias {
        max-width: 100%;
        justify-content: center;
    }

    .categoria-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .categoria-badge:link,
    .categoria-badge:visited,
    .categoria-badge:active,
    .categoria-badge:hover {
        color: white;
    }

    .producto-principal img {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto;
    }

    .producto-principal .descripcion h1 {
        font-size: 22px;
        text-align: center !important;
    }

    .producto-principal .descripcion h1 a {
        text-align: center;
        display: block;
    }

    .producto-principal .rating {
        justify-content: center;
        margin-bottom: 0;
    }

    .producto-principal .descripcion .rating {
        justify-content: center;
        margin-bottom: 0;
    }

    /* Reducir tamaño de fuentes en móvil */
    .producto-principal .descripcion p {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
    }

    .rating .stars {
        font-size: 18px;
    }

    .rating .rating-text {
        font-size: 12px;
    }

    .pro-mini .text {
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 40px;
    }

    .descripcion-larga {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 12px;
    }

    .descripcion-larga h3 {
        font-size: 20px;
        border-radius: 0;
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .descripcion-larga h4 {
        font-size: 17px;
        padding: 0 25px;
        padding-left: 40px;
        margin-top: 30px;
        margin-bottom: 14px;
    }

    .descripcion-larga h4::before {
        left: 25px;
        width: 7px;
        height: 7px;
    }

    .descripcion-larga > p,
    .descripcion-larga > ul {
        padding: 0 25px;
    }

    .descripcion-larga p {
        font-size: 15px;
        line-height: 1.7;
    }

    .descripcion-larga ul li {
        font-size: 14px;
        line-height: 1.6;
    }

    .descripcion-larga .subtitle-destacado {
        font-size: 18px;
        margin: 20px -25px;
        padding: 15px 25px 15px 50px;
    }

    /* Índice de Contenidos en móvil */
    .indice-box {
        margin: 0 0 30px 0;
    }

    .indice-btn {
        padding: 14px 16px;
        font-size: 14px;
    }

    .indice-icon {
        font-size: 20px;
    }

    .indice-content {
        padding: 0 16px 16px 16px;
    }

    .indice-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* Características Destacadas en móvil */
    .pros-contras-section {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 12px;
    }

    .pros-contras-section h3 {
        font-size: 20px;
        border-radius: 0;
        width: auto;
    }

    .opiniones-section h3 {
        font-size: 20px;
        padding: 25px;
    }

    .opiniones-section p {
        padding: 0 25px;
        font-size: 15px;
    }

    .opiniones-section p:first-of-type {
        margin-top: 20px;
    }

    .opiniones-section p:last-of-type {
        margin-bottom: 20px;
    }

    /* Estilos responsive para opiniones mejoradas */
    .opiniones-intro {
        font-size: 16px !important;
        padding: 20px 25px !important;
    }

    .opiniones-conclusion {
        font-size: 15px !important;
        padding: 20px 25px !important;
    }

    .aspectos-valorados,
    .puntos-considerar {
        padding: 25px 20px;
    }

    .aspectos-titulo,
    .puntos-titulo {
        font-size: 18px;
        gap: 10px;
        padding-bottom: 12px;
    }

    .icono-destacado,
    .icono-atencion {
        font-size: 22px;
    }

    .lista-aspectos,
    .lista-puntos {
        gap: 15px;
    }

    .aspecto-item {
        padding: 15px;
        gap: 12px;
        border-left-width: 3px;
    }

    .aspecto-icono {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .aspecto-titulo {
        font-size: 15px;
    }

    .aspecto-descripcion {
        font-size: 14px;
    }

    .punto-item {
        padding: 12px 15px;
        gap: 12px;
        border-left-width: 3px;
    }

    .punto-icono {
        font-size: 20px;
    }

    .punto-texto {
        font-size: 14px;
    }

    .pros-contras {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .pros h4,
    .contras h4 {
        font-size: 18px;
        padding: 18px 20px;
    }

    .pros ul,
    .contras ul {
        padding: 20px;
    }

    .pros ul li,
    .contras ul li {
        font-size: 14px;
    }

    #productos-relacionados .productos-grid {
        flex-direction: column;
    }

    #productos-relacionados .producto {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    #productos-relacionados .producto img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    #productos-relacionados .producto .btn {
        align-self: center;
    }

    .producto-relacionado {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .producto-relacionado img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .producto-relacionado .btn {
        align-self: center;
        width: 100%;
        max-width: 280px;
    }

    /* Últimas Novedades en móvil */
    #ultimas-novedades .novedades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .producto-novedad-acciones {
        flex-direction: column;
        gap: 12px;
    }

    .producto-novedad-acciones .btn,
    .producto-novedad-acciones .btn-secundario {
        width: 100%;
    }

    /* Botón centrado en móvil con mismo tamaño que escritorio */
    .producto-principal .descripcion {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Reducir espacios entre elementos en móvil */
    .rating {
        margin-bottom: 6px;
    }

    .producto-principal .descripcion p {
        margin-bottom: 6px;
    }

    .pros-contras-mini {
        margin: 6px 0;
    }

    .btn-wrapper {
        align-self: center;
        margin: 20px auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: auto;
        padding: 14px 50px;
        position: relative;
    }

    /* Reposicionar corazones en móvil */
    .hearts-flying {
        position: absolute;
        top: 0;
        right: 10px;
        transform: none;
    }

    /* Botones de compartir en móvil - texto arriba, iconos abajo */
    .compartir-social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .compartir-label {
        font-size: 13px;
        margin-right: 0;
        width: 100%;
        text-align: center;
        order: -1;
    }

    .btn-share {
        width: 32px;
        height: 32px;
    }

    .btn-share svg {
        width: 16px;
        height: 16px;
    }
}

/* ====================================
   NUEVAS FUNCIONALIDADES HOME
   ==================================== */

/* ============ HERO SECTION ============ */
.hero-section {
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-primary {
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 148, 51, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #131921;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ff9900;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #ccc;
}

/* ============ TRUST SIGNALS ============ */
.trust-signals {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-icon {
    font-size: 24px;
}

.trust-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* ============ CATEGORÍAS ============ */
.categorias-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.categorias-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.categorias-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.categoria-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.categoria-btn:hover {
    border-color: #ff9900;
    transform: translateY(-2px);
}

.categoria-btn.active {
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.categoria-icon {
    font-size: 18px;
}

/* ============ BADGES EN PRODUCTOS ============ */
.producto {
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.producto-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-descuento {
    background: #ff4444;
    color: white;
}

.badge-destacado {
    background: #ffb900;
    color: #1a1a1a;
}

.producto-rating {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ff9900;
    font-size: 18px;
}

.rating-text {
    font-size: 13px;
    color: #666;
}

.producto-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.spec-item {
    font-size: 12px;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
    color: #333;
}

.producto-precio {
    margin: 15px 0;
    display: none; /* Ocultar precios */
}

.precio-original,
.precio-actual {
    display: none; /* Ocultar precios */
}

.precio-destacado,
.descuento-tabla {
    display: none; /* Ocultar precios */
}

.badge-descuento {
    display: none; /* Ocultar badges de descuento */
}

.precio-row {
    display: none; /* Ocultar fila de precios en tablas */
}

.producto-trust {
    margin: 10px 0;
}

.trust-badge {
    font-size: 12px;
    color: #2d7a3e;
    font-weight: 500;
}

/* ============ TABLA COMPARATIVA ============ */
.comparativa-section {
    padding: 60px 0;
    background: white;
}

.comparativa-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.comparativa-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.tabla-comparativa-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 50px;
    margin-bottom: 50px;
}

.tabla-comparativa {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.tabla-comparativa th {
    background: linear-gradient(135deg, #232f3e 0%, #131921 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.tabla-comparativa td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.caracteristica-label {
    font-weight: 600;
    text-align: left;
    background: #f8f8f8;
}

.precio-row td {
    background: #fffbf0;
    font-size: 18px;
}

.precio-destacado {
    color: #ff4444;
    font-size: 22px;
}

.descuento-tabla {
    color: #2d7a3e;
    font-size: 14px;
    font-weight: 600;
}

/* Botones dentro de la tabla comparativa - Más pequeños */
.tabla-comparativa .btn {
    padding: 10px 24px;
    font-size: 16px;
    max-width: 180px;
    border-radius: 8px;
}

.tabla-comparativa .btn:hover {
    transform: scale(1.02);
}

.btn-comparativa {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-comparativa:hover {
    transform: translateY(-2px);
}

/* ============ POR QUÉ TECHPIX ============ */
.why-techpix-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.why-techpix-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.why-item p {
    color: #666;
    line-height: 1.6;
}

/* ============ ÚLTIMAS ENTRADAS ============ */
.ultimas-entradas-section {
    padding: 60px 0;
    background: white;
}

.ultimas-entradas-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.ultimas-entradas-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.ultimas-entradas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.entrada-item {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.entrada-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ============ PORTÁTILES SECTION ============ */
.portatiles-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.portatiles-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.portatiles-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.portatiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ============ TABLETS SECTION ============ */
.tablets-section {
    padding: 60px 0;
    background: #ffffff;
}

.tablets-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.tablets-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.tablets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ============ BOTÓN VER MÁS ============ */
.ver-mas-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-ver-mas {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.btn-ver-mas:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    background: linear-gradient(135deg, #ff6b00 0%, #ff9900 100%);
}

.btn-ver-mas:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

/* ============ MÁS PRODUCTOS SECTION ============ */
.mas-productos-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.mas-productos-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.mas-productos-link:hover {
    transform: translateY(-2px);
}

.mas-productos-link h2 {
    text-align: center;
    font-size: 32px;
    margin: 0;
    color: #1a1a1a;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mas-productos-link:hover h2 {
    color: var(--naranja-amazon);
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.btn-newsletter {
    padding: 16px 32px;
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
}

.newsletter-privacy {
    font-size: 13px;
    color: #999;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 30px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categorias-grid {
        justify-content: flex-start;
    }

    .categoria-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }

    .tabla-comparativa {
        font-size: 14px;
    }

    .tabla-comparativa th,
    .tabla-comparativa td {
        padding: 10px;
    }

    /* Responsive Últimas Entradas */
    .ultimas-entradas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ultimas-entradas-section h2 {
        font-size: 24px;
    }

    .ultimas-entradas-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn-ver-mas {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ============ ÚLTIMAS ENTRADAS (TELÉFONOS) ============ */
.ultimas-entradas-section {
    padding: 60px 0;
    background: white;
}

.ultimas-entradas-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.ultimas-entradas-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.ultimas-entradas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.entrada-item {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.entrada-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ============ PORTÁTILES SECTION ============ */
.portatiles-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.portatiles-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.portatiles-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.portatiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ============ ICONOS EN MEN� DE NAVEGACI�N ============ */
.menu-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

/* ============ ICONO DE COMPARACIÓN ============ */
.compare-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 10px;
}

/* ============ SECCIÓN FAQ ============ */
.faq-section {
    background-color: #ffffff;
    padding: 0;
    border-radius: 12px;
    margin-bottom: 40px;
    border: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-section h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
    padding: 30px 40px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.faq-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 40px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 24px;
    color: #ff9900;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 40px 25px 40px;
    background-color: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

.faq-answer p {
    margin: 20px 0 0 0;
    line-height: 1.7;
    color: #444;
    font-size: 16px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section h3 {
        font-size: 20px;
        padding: 25px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 16px;
        gap: 12px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 25px 20px 25px;
    }

    .faq-answer p {
        font-size: 14px;
        margin-top: 15px;
    }
}

/* ============ SECCIÓN PROYECTORES ============ */
.proyectores-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.proyectores-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.proyectores-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.proyectores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.ver-mas-container {
    text-align: center;
}

.btn-ver-mas {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.btn-ver-mas:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    color: white;
}

    .btn-ver-mas {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ============ SECCIÓN BLACK FRIDAY ============ */
.black-friday-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #654321 100%);
    position: relative;
    overflow: hidden;
}

.black-friday-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text fill="rgba(255,255,255,0.1)" font-size="20" y="50%">⚡</text></svg>') repeat;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.black-friday-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #232f3e 0%, #131921 50%, #0f1111 100%);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.black-friday-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.black-friday-text h2 {
    font-size: 42px;
    color: white;
    margin: 0;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: center;
}

.black-friday-subtitle {
    font-size: 18px;
    color: white;
    margin: 10px 0 0 0;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
}

.black-friday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.black-friday-item {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 2px solid #8b4513;
}

.black-friday-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.black-friday-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff0000 0%, #ff4500 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    z-index: 3;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.black-friday-btn {
    background: linear-gradient(135deg, #dc143c 0%, #b22222 100%);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.black-friday-btn:hover {
    background: linear-gradient(135deg, #b22222 0%, #8b0000 100%);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

/* Responsive Black Friday */
@media (max-width: 768px) {
    .black-friday-section {
        padding: 40px 0;
    }

    .black-friday-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .black-friday-text h2 {
        font-size: 32px;
    }

    .black-friday-subtitle {
        font-size: 16px;
    }

    .black-friday-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .black-friday-item {
        padding: 15px;
    }
}
