:root {
    --blanco: #ffffff;
    --gris: #f0f2f5;
    --negro: #0a0a0a;
    --negro_claro: #5a5a5a;
    --azul: #3577b1;
    --azul_suave: rgba(53, 119, 177, 0.08);
    --sombra_sutil: 0 1px 3px rgba(0, 0, 0, 0.04);
    --sombra_elevada: 0 8px 30px rgba(0, 0, 0, 0.08);
    --radio_grande: 1.6rem;
    --radio_pequeno: 0.8rem;
    --transicion: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 56.5%;
    font-family: "Nunito", sans-serif;
    background-color: var(--gris);
    color: var(--negro);
    scroll-behavior: smooth;
    --x: 50%;
    --y: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html::before {
  content: '';
  position: fixed;
  top: var(--circle-y, 50%);
  left: var(--circle-x, 50%);
  width: 300vmax;
  height: 300vmax;
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--circle-color, rgba(97, 204, 174, 0.3));
  border-radius: 50%;
  opacity: 0;
  transition:
    transform 1.3s ease,
    opacity 0.6s ease,
    background-color 0.6s ease;
  z-index: -1;
  pointer-events: none;
}

html.hover-bg::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

*, *::after, *::before {
    box-sizing: border-box;
}

body {
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    display: none;
}

h2 {
    padding-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

header {
    height: 42rem;
    width: 95%;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    background-position: left center;
    margin: 1.5% auto 0.6rem auto;
    border-radius: var(--radio_grande) var(--radio_grande) var(--radio_pequeno) var(--radio_pequeno);
    background-color: var(--blanco);
    position: relative;
    box-shadow: var(--sombra_sutil);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .deco {
    position: absolute;
    width: 14rem;
    height: 14rem;
    pointer-events: none;
    overflow: hidden;
}

header .deco-tl {
    top: 0;
    left: 0;
}

header .deco-br {
    bottom: 0;
    right: 0;
}

/* ==================== NAVEGACIÓN ==================== */
nav {
    background-color: var(--blanco);
    width: 95%;
    height: 6rem;
    margin: 0 auto;
    border-radius: var(--radio_pequeno);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    transition: all var(--transicion);
    position: relative;
    z-index: 100;
    box-shadow: var(--sombra_sutil);
}

.nav_contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

/* Navegación flotante */
.nav_fijo {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    box-shadow: var(--sombra_elevada);
    animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radio_grande);
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.92);
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.nav_enlaces {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

nav a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--negro_claro);
    text-decoration: none;
    transition: color var(--transicion);
    letter-spacing: 0.01em;
}

nav a:hover {
    color: var(--negro);
}

.activo {
    color: var(--negro);
    font-weight: 600;
}

/* ==================== BOTÓN USUARIO ==================== */
.btn_usuario {
    background: linear-gradient(135deg, var(--gris));
    color: var(--negro_claro);
    border: none;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transicion);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.btn_usuario:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.usuario_icono {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.btn_texto {
    font-size: 1.4rem;
    display: inline-block;
}

/* ==================== MODAL DE AUTENTICACIÓN ==================== */
.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal_overlay.modal_activo {
    opacity: 1;
    visibility: visible;
}

.modal_contenido {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 36px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modal_activo .modal_contenido {
    transform: scale(1);
}

.modal_cerrar {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal_cerrar:hover {
    background: #f3f4f6;
}

.modal_cerrar svg {
    width: 24px;
    height: 24px;
    color: #6b7280;
}

/* ==================== TABS ==================== */
.auth_tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e5e7eb;
}

.auth_tab {
    flex: 1;
    padding: 12px 16px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6b7280;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.auth_tab:hover {
    color: var(--azul);
}

.auth_tab-activo {
    color: var(--azul);
    border-bottom-color: var(--azul);
}

/* ==================== FORMULARIOS ==================== */
.auth_form {
    display: none;
}

.auth_form-activo {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth_titulo {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--negro);
}

.form_grupo {
    margin-bottom: 14px;
}

.form_label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 1.4rem;
    font-weight: 500;
}

.form_input {
    width: 100%;
    padding: 10px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1.5rem;
    font-family: inherit;
    transition: border-color var(--transicion), box-shadow var(--transicion);
    background: #fafafa;
}

.form_input:focus {
    outline: none;
    border-color: var(--negro);
    background: var(--blanco);
    box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}

.input_password {
    position: relative;
    display: flex;
    align-items: center;
}

.btn_ver_password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.btn_ver_password svg {
    width: 20px;
    height: 20px;
}

.form_ayuda {
    display: block;
    margin-top: 6px;
    color: #6b7280;
    font-size: 1.2rem;
}

.form_extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.checkbox_label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox_label input {
    cursor: pointer;
}

.link_recuperar {
    color: var(--azul);
    text-decoration: none;
    transition: opacity 0.2s;
}

.link_recuperar:hover {
    opacity: 0.8;
}

.btn_submit {
    width: 100%;
    padding: 14px;
    background: var(--azul);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transicion);
    letter-spacing: 0.01em;
}

.btn_submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 119, 177, 0.4);
}

.auth_divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #6b7280;
    font-size: 1.3rem;
}

.auth_divider::before,
.auth_divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth_divider span {
    padding: 0 16px;
}

.auth_redes {
    display: flex;
    gap: 12px;
}

.btn_red {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s;
}

.btn_red:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.btn_red svg {
    width: 20px;
    height: 20px;
}

.inicio_imagen {
    width: 90%;
    height: auto;
    max-width: 85rem;
    display: block;
    object-fit: contain;
}

footer {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 3rem 2rem;
    padding: 2rem 0;
    font-size: 1.6rem;
    color: var(--negro_claro);
}

footer a {
    text-decoration: none;
    color: var(--negro_claro);
    font-weight: 500;
    transition: color var(--transicion);
}

footer a:hover {
    color: var(--negro);
}

section {
    background-color: var(--blanco);
    width: 95%;
    margin: 0.6rem auto;
    border-radius: var(--radio_pequeno);
    padding: 3rem 3rem 7rem 3rem;
}

.titulo {
    font-family: "Nunito", sans-serif;
    font-size: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: var(--negro);
}

/* Iconos decorativos para títulos */
.titulo_ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 1.2rem;
    flex-shrink: 0;
}

.titulo_ico.azul {
    background: rgba(53, 119, 177, 0.15);
    color: var(--azul);
}

.titulo_ico.naranja {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
}

.titulo_ico svg {
    width: 2.4rem;
    height: 2.4rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icono {
    height: 7rem;
    width: 7rem;
    margin: 1.5rem;
    border-radius: 1rem;
}

.image-3d {
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateZ(0);
}

.image-3d.reset {
  transform: translateZ(0);
}

/* ==================== PRODUCTOS ==================== */
.productos-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  max-width: 900px;
  margin: 0 auto;
}

.producto-card {
  width: 100%;
  border-radius: var(--radio_grande);
  padding: 3rem 3.5rem;
  transition: transform var(--transicion), box-shadow var(--transicion);
  overflow: hidden;
}

.producto-card.cloud {
  background: linear-gradient(135deg, #e8f5f0 0%, #d4ede5 100%);
}

.producto-card.kael {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.producto-card:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.producto-card__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.producto-card__header {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.image-container {
  perspective: 1200px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
}

.icono {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  display: block;
  margin: 0;
}

.producto-card__nombre {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--negro);
}

.estado-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  width: fit-content;
}

.estado-badge::before {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  display: inline-block;
}

.estado-badge--verde {
  background: rgba(97, 204, 174, 0.2);
  color: #2a9d6e;
}

.estado-badge--verde::before {
  background: #61ccae;
}

.estado-badge--naranja {
  background: rgba(255, 140, 0, 0.15);
  color: #c56a00;
}

.estado-badge--naranja::before {
  background: #ff8c00;
}

.producto-card__desc {
  font-size: 1.7rem;
  line-height: 1.6;
  color: var(--negro_claro);
  margin: 0;
  max-width: 50ch;
}

.producto-card:hover .image-3d {
  transform: scale(1.05) translateY(-5px) translateZ(0);
  will-change: transform;
  animation: bounce-elastic 0.6s ease-in-out;
}

@keyframes bounce-elastic {
  0% { transform: scale(1) translateY(0) translateZ(0); }
  30% { transform: scale(1.07) translateY(-9px) translateZ(0); }
  50% { transform: scale(1.01) translateY(-4px) translateZ(0); }
  70% { transform: scale(1.05) translateY(-7px) translateZ(0); }
  100% { transform: scale(1.05) translateY(-5px) translateZ(0); }
}

.canales_section {
    height: auto;
    border-bottom-right-radius: var(--radio_grande);
    border-bottom-left-radius: var(--radio_grande);
    padding-bottom: 5rem;
}

/* ==================== CANALES GRID ==================== */
.canales-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.canal-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2.5rem 2.5rem;
    border-radius: var(--radio_grande);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transicion), box-shadow var(--transicion);
    position: relative;
    overflow: hidden;
}

.canal-card__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.canal-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 160px;
    height: 160px;
    pointer-events: none;
    transition: opacity var(--transicion);
}

.canal-card:hover::after {
    opacity: 0.35;
}

.canal-card--github::after {
    opacity: 0.15;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%231a1f25' stroke-width='2'%3E%3Crect x='15' y='15' width='110' height='110' rx='22' transform='rotate(15 80 80)'/%3E%3Crect x='35' y='35' width='70' height='70' rx='14' transform='rotate(15 80 80)'/%3E%3Crect x='55' y='55' width='30' height='30' rx='7' transform='rotate(15 80 80)'/%3E%3C/svg%3E") no-repeat center;
}

.canal-card--instagram::after {
    opacity: 0.18;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e65100' stroke-width='2'%3E%3Crect x='25' y='25' width='70' height='70' rx='18' transform='rotate(15 60 60)'/%3E%3Crect x='40' y='40' width='40' height='40' rx='10' transform='rotate(15 60 60)'/%3E%3Crect x='100' y='95' width='40' height='40' rx='12' transform='rotate(-10 120 115)'/%3E%3Crect x='110' y='105' width='20' height='20' rx='6' transform='rotate(-10 120 115)'/%3E%3C/svg%3E") no-repeat center;
}

.canal-card--playstore::after {
    opacity: 0.2;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%239080c0' stroke-width='2'%3E%3Ccircle cx='75' cy='65' r='45'/%3E%3Ccircle cx='75' cy='65' r='28'/%3E%3Ccircle cx='75' cy='65' r='12'/%3E%3Crect x='110' y='110' width='28' height='28' rx='6' transform='rotate(15 124 124)'/%3E%3Crect x='115' y='85' width='18' height='18' rx='4' transform='rotate(-10 124 94)'/%3E%3C/svg%3E") no-repeat center;
}

.canal-card--x::after {
    opacity: 0.2;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.5'%3E%3Cline x1='10' y1='5' x2='120' y2='115'/%3E%3Cline x1='30' y1='5' x2='140' y2='115'/%3E%3Cline x1='50' y1='5' x2='160' y2='115'/%3E%3Cline x1='70' y1='5' x2='180' y2='115'/%3E%3Ccircle cx='110' cy='125' r='16'/%3E%3Ccircle cx='110' cy='125' r='26'/%3E%3Ccircle cx='110' cy='125' r='36'/%3E%3C/svg%3E") no-repeat center;
}

.canal-card:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.canal-card__icono {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 1.2rem;
}

.canal-card__nombre {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.canal-card__texto {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.canal-card__usuario {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--negro_claro);
    margin: 0;
    opacity: 0.7;
}

.canal-card__desc {
    font-size: 1.5rem;
    color: var(--negro_claro);
    margin: 0;
    line-height: 1.4;
}

/* Colores por plataforma */
.canal-card--github {
    background: linear-gradient(135deg, #e8e8ec 0%, #d8d8de 100%);
}
.canal-card--github .canal-card__icono {
    background: #1a1f25;
    color: white;
}

.canal-card--instagram {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}
.canal-card--instagram .canal-card__icono {
    background: linear-gradient(135deg, #f9a825, #f57c00, #e65100);
    color: white;
}

.canal-card--playstore {
    background: linear-gradient(135deg, #f8f0d8 0%, #f0e2c8 100%);
}
.canal-card--playstore .canal-card__icono {
    background: white;
}

.canal-card--x {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
}
.canal-card--x .canal-card__icono {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}
.canal-card--x .canal-card__desc,
.canal-card--x .canal-card__usuario {
    color: rgba(255, 255, 255, 0.8);
}

.feedback_section {
    padding-top: 4rem;
}

.feedback-card {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8c8 100%);
    border-radius: var(--radio_grande);
    padding: 4.5rem 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.feedback-card__titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--negro);
    margin: 0 0 0.8rem 0;
}

.feedback-card__desc {
    font-size: 1.7rem;
    color: var(--negro_claro);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.feedback-card__acciones {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transicion);
}

.feedback-btn--email {
    background: var(--negro);
    color: var(--blanco);
}

.feedback-btn--email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.feedback-btn--instagram {
    background: var(--blanco);
    color: var(--negro);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.feedback-btn--instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.desktop_only {
    display: block;
}

.movil_only {
    display: none;
}


@media (min-width: 768px) {
  .productos-list {
    gap: 2.5rem;
  }

  .producto-card {
    padding: 3.5rem 4rem;
  }

  .producto-card__nombre {
    font-size: 2.2rem;
  }
}

@media (max-width: 1300px) {
    .nav_fijo {
        width: 85%;
    }
}

@media (max-width: 1024px) {
    header {
        height: 30rem;
    }

    .inicio_imagen {
        width: 85%;
        max-width: 65rem;
        padding-top: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .titulo {
        font-size: 3.2rem;
    }

    .icono {
        width: 5.5rem;
        height: 5.5rem;
    }

    .titulo_ico {
        width: 4.2rem;
        height: 4.2rem;
    }

    .titulo_ico svg {
        width: 2.1rem;
        height: 2.1rem;
    }

    footer {
        gap: 0.8rem;
        align-items: center;
    }

    header .deco {
        width: 10rem;
        height: 10rem;
    }

}

@media (max-width: 750px) {
    body {
        font-size: 1.6rem;
    }

    header {
        height: auto;
        min-height: 12rem;
        padding: 1rem 0.5rem;
    }

    header .deco {
        width: 7rem;
        height: 7rem;
    }

    .inicio_imagen {
        width: 80%;
        max-width: 50rem;
        padding-top: 1rem;
        margin: 1rem auto;
    }

    h1 {
        font-size: 1.4rem;
        margin-right: 0.6rem;
        margin-left: 0.6rem;
    }

    nav {
        width: 95%;
        border-radius: 0.5rem;
        padding: 0 1.5rem;
    }

    .nav_fijo {
        border-radius: 1.5rem;
    }

    .nav_enlaces {
        gap: 1.5rem;
    }

    nav a {
        font-size: 1.4rem;
    }

    .barra-nav {
        height: 4rem;
    }

    .btn_usuario {
        padding: 0.8rem 1.2rem;
        gap: 0.5rem;
    }

    .usuario_icono {
        width: 18px;
        height: 18px;
    }

    .btn_texto {
        font-size: 1.3rem;
    }

    .titulo {
        font-size: 2.8rem;
        text-align: center;
    }

    .titulo_ico {
        width: 3.8rem;
        height: 3.8rem;
        border-radius: 0.9rem;
    }

    .titulo_ico svg {
        width: 1.9rem;
        height: 1.9rem;
    }

    .producto-card {
        padding: 2rem 1.8rem;
        border-radius: 1.2rem;
    }

    .producto-card__info {
        gap: 1rem;
    }

    .producto-card__header {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .producto-card__nombre {
        font-size: 1.6rem;
    }

    .producto-card__desc {
        font-size: 1.4rem;
    }

    .image-container {
        width: 5rem;
        height: 5rem;
    }

    .estado-badge {
        font-size: 1.1rem;
        padding: 0.2rem 0.8rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .canales-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .canal-card {
        flex-direction: row;
        align-items: center;
        padding: 1.6rem 1.8rem;
        gap: 1.2rem;
    }

    .canal-card__icono {
        width: 4.2rem;
        height: 4.2rem;
    }

    .canal-card__texto {
        display: none;
    }

    .canal-card__desc {
        font-size: 1.4rem;
        margin: 0;
    }

    .canal-card::after {
        width: 100px;
        height: 100px;
    }

    /* Modal en móvil */
    .modal_contenido {
        width: 95%;
        padding: 24px;
    }

    .auth_titulo {
        font-size: 2rem;
    }

    .btn_texto {
        display: none;
    }

    .btn_usuario {
        padding: 0.6rem 1rem;
        gap: 0;
        width: auto;
        height: auto;
    }

    .usuario_icono {
        width: 16px;
        height: 16px;
    }

}

@media (max-width: 633px) {
    .desktop_only {
        display: none;
    }

    .feedback-card {
        padding: 2.5rem 2rem;
    }

    .feedback-card__titulo {
        font-size: 1.8rem;
    }

    .feedback-card__desc {
        font-size: 1.4rem;
    }

    .feedback-btn {
        font-size: 1.3rem;
        padding: 0.7rem 1.4rem;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 380px) {
    .inicio_imagen {
        width: 90%;
        max-width: 35rem;
    }

    header .deco {
        width: 5rem;
        height: 5rem;
    }

    .titulo {
        font-size: 2.4rem;
    }

    .titulo_ico {
        width: 3.2rem;
        height: 3.2rem;
        border-radius: 0.7rem;
    }

    .titulo_ico svg {
        width: 1.6rem;
        height: 1.6rem;
    }

    .modal_contenido {
        padding: 20px;
    }

    nav a {
        font-size: 1.2rem;
    }

    .nav_enlaces {
        gap: 1rem;
    }

    .btn_usuario {
        padding: 0.5rem 0.9rem;
        gap: 0;
        width: auto;
        height: auto;
    }

    .btn_texto {
        display: none;
    }

    .usuario_icono {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 350px) {
    .canal-card::after {
        display: none;
    }
}
