/* --------------------
RESET
-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5efe9;
  color: #333;
}

/* --------------------
NAV
-------------------- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
}

/* --------------------
LOGO
-------------------- */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 2px;

  color: #caa18a;

  text-shadow:
    0 0 6px rgba(202, 161, 138, 0.4),
    0 0 12px rgba(202, 161, 138, 0.25);
}

/* --------------------
HERO VIDEO
-------------------- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-fondo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

/* --------------------
TÍTULO (MÁS GRANDE Y PROTAGONISTA)
-------------------- */
.hero-content h2 {
  font-size: 3.8rem;
  letter-spacing: 8px;
  font-weight: 500;

  font-family: "Cormorant Garamond", serif;

  color: #f6e8de;

  text-shadow:
    0 3px 0 rgba(0,0,0,0.35),
    0 12px 25px rgba(0,0,0,0.35),
    0 0 10px rgba(246, 232, 222, 0.35),
    0 0 22px rgba(246, 232, 222, 0.25),
    0 0 35px rgba(246, 232, 222, 0.15);
}

/* --------------------
SUBTÍTULO (SIMILAR PERO MÁS CHICO)
-------------------- */
.typing {
  margin-top: 12px;
  font-size: 2rem; /* 👈 importante: más cercano al título */
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 3px;

  color: #f0d7c7;

  text-shadow:
    0 0 6px rgba(240, 215, 199, 0.35),
    0 0 12px rgba(240, 215, 199, 0.25);
}

/* --------------------
FRASE
-------------------- */
.frase {
  text-align: center;
  padding: 60px 20px;
  font-style: italic;
  font-size: 1.3rem;
}

/* --------------------
CATÁLOGO
-------------------- */
.catalogo {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card img {
  width: 100%;
  border-radius: 15px;
}

.catalogo-boton {
  margin-top: 40px;
}

.btn-modelos {
  background: #c27b5b;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
}

/* --------------------
QUIÉNES SOMOS
-------------------- */
.quienes {
  padding: 100px 20px;
  text-align: center;
}

.quienes-box {
  max-width: 800px;
  margin: auto;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
}

/* TEXTO CURSIVA */
.intro,
.cursiva {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
}

/* --------------------
TÍTULO QUIÉNES SOMOS (NEÓN SUAVE)
-------------------- */
.neon-titulo {
  font-size: 2.8rem;
  letter-spacing: 6px;

  font-family: "Cormorant Garamond", serif;

  color: #e0b39a;

  text-shadow:
    0 0 5px rgba(224, 179, 154, 0.6),
    0 0 12px rgba(224, 179, 154, 0.5),
    0 0 20px rgba(224, 179, 154, 0.3),
    0 0 35px rgba(224, 179, 154, 0.2);

  margin-bottom: 40px;
}

/* --------------------
REDES
-------------------- */
.redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px;
}

.btn-wsp, .btn-ig {
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
}

.btn-wsp {
  background: #25D366;
}

.btn-ig {
  background: #E1306C;
}

/* --------------------
FOOTER
-------------------- */
footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  margin-top: 50px;
}
