/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --negro:       #0A0A0F;
  --negro-mid:   #13131A;
  --azul-osc:    #0D1B2A;
  --azul-med:    #1B3A5C;
  --azul-vivo:   #1E6FBF;
  --blanco:      #FFFFFF;
  --blanco-humo: #E8EDF2;
  --gris:        #6B7280;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', 'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-pill: 50px;

  --glass-bg:    rgba(13, 27, 42, 0.45);
  --glass-border: rgba(30, 111, 191, 0.15);
  --glass-blur:  12px;
}

html {
  scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--negro);
}
::-webkit-scrollbar-thumb {
  background: var(--azul-med);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--azul-vivo);
}

body {
  background-color: var(--negro);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  padding: 10px 40px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--azul-vivo);
  transition: transform 0.3s ease;
}

.navbar__logo:hover .navbar__logo-img {
  transform: rotate(10deg) scale(1.1);
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 1.0px;
  color: var(--blanco);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar__links a {
  color: var(--blanco-humo);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azul-vivo);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: var(--azul-vivo);
}

.navbar__links a:hover::after {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--negro) 40%, var(--azul-osc) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 30% 20%, rgba(30, 111, 191, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 70% 80%, rgba(27, 58, 92, 0.15) 0%, transparent 70%);
  animation: heroGradientShift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGradientShift {
  0%   { opacity: 0.6; transform: scale(1) translate(0, 0); }
  50%  { opacity: 1;   transform: scale(1.1) translate(2%, -2%); }
  100% { opacity: 0.7; transform: scale(1.05) translate(-1%, 1%); }
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(30, 111, 191, 0.25);
  top: 10%;
  left: 5%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(30, 111, 191, 0.20);
  bottom: 15%;
  right: 5%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.hero__orb--3 {
  width: 220px;
  height: 220px;
  background: rgba(30, 111, 191, 0.18);
  top: 50%;
  left: 60%;
  animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.15); }
  66%      { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, -40px) scale(1.2); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(30px, 40px) scale(1.1); }
  80%      { transform: translate(-25px, -15px) scale(0.9); }
}

.hero__video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__logo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--azul-vivo);
  padding: 5px;
}

/* Hero text staggered reveal */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5rem);
  letter-spacing: 4px;
  color: var(--blanco);
  line-height: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--blanco);
  opacity: 0;
  max-width: 420px;
  transform: translateY(20px);
  animation: heroRevealSub 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero .btn-primary {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

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

@keyframes heroRevealSub {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.85;
    transform: translateY(0);
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 48px;
  background: transparent;
  color: var(--blanco);
  border: 2px solid var(--azul-vivo);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Shimmer sweep effect */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 111, 191, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: var(--azul-vivo);
  color: var(--blanco);
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(30, 111, 191, 0.35),
    0 0 60px rgba(30, 111, 191, 0.15);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe58 100%);
  color: var(--blanco);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.35),
    0 0 60px rgba(37, 211, 102, 0.1);
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== CATÁLOGO ===== */

.catalogo {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.catalogo__header {
  text-align: center;
  margin-bottom: 64px;
}

.catalogo__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  color: var(--blanco);
}

.catalogo__sub {
  margin-top: 12px;
  color: var(--blanco);
  font-size: 1.05rem;
}

/* ===== GRID CATEGORÍAS ===== */
.categorias__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Glassmorphism category cards */
.categoria__card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.categoria__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(30, 111, 191, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.categoria__card:hover {
  border-color: rgba(30, 111, 191, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(30, 111, 191, 0.1);
}

.categoria__card:hover::after {
  opacity: 1;
}

.categoria__card.activa {
  border-color: var(--azul-vivo);
  box-shadow:
    0 0 20px rgba(30, 111, 191, 0.3),
    0 0 60px rgba(30, 111, 191, 0.1);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(30, 111, 191, 0.3), 0 0 60px rgba(30, 111, 191, 0.1); }
  50%      { box-shadow: 0 0 30px rgba(30, 111, 191, 0.45), 0 0 80px rgba(30, 111, 191, 0.15); }
}

.categoria__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(180deg, var(--azul-osc) 0%, rgba(13,27,42,0.6) 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.categoria__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.categoria__card:hover .categoria__img-wrap img:not(.logo-31hats) {
  transform: scale(1.20);
}

.categoria__card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  padding: 16px 12px 4px;
  color: var(--blanco);
}

.categoria__arrow {
  display: block;
  padding-bottom: 14px;
  color: var(--azul-vivo);
  font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.categoria__card.activa .categoria__arrow {
  transform: rotate(180deg);
}

/* ===== PANEL PRODUCTOS ===== */
.productos__panel {
  display: none;
  max-width: 1100px;
  margin: 40px auto 0;
}

.productos__panel.visible {
  display: block;
  animation: panelReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

.panel__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--azul-vivo);
  margin-bottom: 24px;
  border-left: 3px solid var(--azul-vivo);
  padding-left: 14px;
}

.productos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* Product cards */
.producto__card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.producto__card:hover {
  border-color: rgba(30, 111, 191, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.producto__card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: var(--azul-osc);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.producto__card:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.producto__nombre {
  padding: 14px 16px 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blanco-humo);
}

.producto__precio {
  padding: 0 16px 16px;
  font-size: 0.9rem;
  color: var(--azul-vivo);
  font-weight: 500;
}

/* ===== CONTACTO ===== */
.contacto {
  background: linear-gradient(135deg, var(--azul-osc), var(--negro));
  text-align: center;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative gradient divider at top */
.contacto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azul-vivo), transparent);
}

/* Subtle dot pattern */
.contacto::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 111, 191, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.contacto > * {
  position: relative;
  z-index: 1;
}

.contacto h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 3px;
}

.contacto p {
  color: var(--blanco-humo);
  opacity: 0.8;
  font-size: 1.05rem;
  max-width: 480px;
}

/* ===== FOOTER ===== */
.footer {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 28px;
  color: var(--blanco);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* ===== LOGO SCALE OVERRIDES ===== */
.logo-barbas {
  transform: scale(1.15);
}

.logo-dandy {
  transform: scale(1.00);
}

.logo-31hats {
  transform: scale(1.70);
}

.categoria__card:hover .logo-barbas {
  transform: scale(1.30);
}

.categoria__card:hover .logo-dandy {
  transform: scale(1.15);
}

.categoria__card:hover .logo-31hats {
  transform: scale(2.00);
}

.categoria__card:hover .logo-otras {
  transform: scale(1.20);
}

/* ===== MODELOS GRID (nivel 2 — portadas) ===== */
.modelos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.modelo__card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  text-align: center;
}

.modelo__card:hover {
  border-color: rgba(30, 111, 191, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modelo__card.activa {
  border-color: var(--azul-vivo);
  box-shadow: 0 0 20px rgba(30, 111, 191, 0.35);
}

.modelo__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--azul-osc) 0%, rgba(13,27,42,0.4) 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
}

/* Image overlay gradient for depth */
.modelo__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,10,15,0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.modelo__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.modelo__card:hover .modelo__img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.modelo__nombre {
  padding: 12px 12px 2px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blanco-humo);
}

.modelo__precio {
  font-size: 0.85rem;
  color: var(--azul-vivo);
  font-weight: 500;
  padding: 0 12px 4px;
}

.modelo__ver {
  display: block;
  font-size: 0.78rem;
  color: var(--gris);
  padding-bottom: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.modelo__card:hover .modelo__ver {
  color: var(--azul-vivo);
}

/* ===== DETALLE (nivel 3 — 3 fotos + WhatsApp) ===== */
.detalle__panel {
  display: none;
  margin-top: 32px;
}

.detalle__panel.visible {
  display: block;
  animation: panelReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.detalle__inner {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(30, 111, 191, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.detalle__titulo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--azul-vivo);
  margin-bottom: 20px;
  border-left: 3px solid var(--azul-vivo);
  padding-left: 14px;
}

.detalle__fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.detalle__foto-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--azul-osc) 0%, rgba(13,27,42,0.4) 100%);
  border-radius: var(--radius-sm);
}

.detalle__foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 12px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.detalle__foto-wrap:hover img {
  transform: scale(1.06);
}

.detalle__wa {
  display: inline-flex;
  font-size: 1rem;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card entrance */
.card-stagger {
  opacity: 0;
  transform: translateY(30px);
  animation: cardStaggerIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardStaggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 3D TILT SUPPORT ===== */
.tilt-card {
  transform-style: preserve-3d;
}

.tilt-card > * {
  transform: translateZ(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .categorias__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar {
    padding: 12px 20px;
  }

  .navbar__links {
    gap: 20px;
  }

  .navbar__links a {
    font-size: 0.8rem;
  }

  .navbar__brand {
    font-size: 1.2rem;
  }

  .detalle__fotos {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .categorias__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero__logo {
    width: 100px;
    height: 100px;
  }

  .navbar__links {
    gap: 14px;
  }

  .detalle__fotos {
    grid-template-columns: 1fr;
  }

  .modelos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== CONTACTO LINKS ===== */
.contacto__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

.contacto__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--blanco);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacto__btn:hover {
  transform: translateY(-3px);
}

.contacto__btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.contacto__btn--ig:hover {
  box-shadow: 0 10px 30px rgba(253, 29, 29, 0.3);
}

.contacto__btn--wa {
  background: linear-gradient(135deg, #25D366, #1ebe58);
}

.contacto__btn--wa:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contacto__btn--tt {
  background: linear-gradient(135deg, #010101, #333);
  border: 1px solid rgba(255,255,255,0.1);
}

.contacto__btn--tt:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contacto__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
/* ===== MODAL NOSOTROS ===== */
.navbar__logo {
  background: none;
  border: none;
  cursor: pointer;
}

.modal__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.modal__overlay.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  animation: fadeIn 0.3s ease;
}

.modal__box {
  position: relative;
  width: 90%;
  max-width: 420px;
  min-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(30, 111, 191, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanco);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.modal__close:hover {
  background: rgba(255,255,255,0.2);
}

.modal__content {
  position: relative;
  z-index: 1;
  padding: 48px 36px;
}

.modal__titulo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--blanco);
  margin-bottom: 20px;
}

.modal__texto {
  color: var(--blanco-humo);
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}