body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif;
  background-image: url("fondo.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
}

header {
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
  padding: 20px;
}

header img {
  width: 150px;
}

h1, h2 {
  color: gold;
  text-align: center;
}

p {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contenido-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px auto;
}

img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  border: 2px solid gold;
}

h1, h2 {
  color: gold;
  font-family: 'Cinzel', serif;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  margin: 20px 0;
}
p {
  font-family: 'Lora', serif;
  color: #f0f0f0;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 20px;
}
.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.productos img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 2px solid gold;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.producto img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.videos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.videos video {
  width: 300px;
  border: 2px solid gold;
  border-radius: 10px;
}
footer {
  text-align: center;
  padding: 20px;
}

footer img {
  width: 40px;
  margin: 0 10px;
}

.centrado {
  display: flex;
  justify-content: center;
  gap: 20px; /* espacio entre imágenes */
  flex-wrap: wrap; /* para que se acomoden bien si hay muchas */
  margin-top: 15px;
}
.centrado img {
  max-width: 150px;
  border-radius: 10px;
}

.imagenes-inicio {
  text-align: center;
}

.imagenes-inicio img {
  margin: 10px;
  width: 200px; /* puedes ajustar el tamaño */
  height: auto;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

p {
  font-size: 19px;
}

.videos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.productos img {
  width: 160px;         /* o ajusta el tamaño como prefieras */
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s;
}

.productos img:hover {
  transform: scale(1.05);
.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.productos img {
  width: 160px;         
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s;
}

.productos img:hover {
  transform: scale(1.05);
}

.galeria-productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.producto img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  background-color: white;
}

.producto:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px gold;

}

.nombre-producto {
  color: #ffd700;
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
  text-shadow: 1px 1px 2px black;
}

.mensaje-emprendedores {
  background-color: #111;
  color: gold;
  padding: 30px 20px;
  text-align: center;
  margin-top: 20px;
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
}

.mensaje-emprendedores h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.mensaje-emprendedores p {
  font-size: 18px;
  line-height: 1.6;
}
.imagenes-inicio {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.imagenes-inicio img {
  max-width: 300px;
  border: 2px solid gold;
  border-radius: 10px;
}
.galeria-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.galeria-videos video {
  width: 250px;
  height: auto;
  border: 2px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 10px gold;
  transition: transform 0.3s ease;
}

.galeria-videos video:hover {
  transform: scale(1.05);
}
/* Para secciones generales: Inicio, Nosotros, etc. */
.seccion-info {
  background-color: #111;
  color: #ffd700; /* dorado más claro */
  padding: 30px 20px;
  text-align: center;
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
  margin-top: 20px;
}

/* Títulos dorados con sombra */
.seccion-info h2 {
  font-size: 28px;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 4px black;
  margin-bottom: 15px;
}

/* Párrafos con mejor legibilidad */
.seccion-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffd700;
  text-shadow: 1px 1px 2px #000;
}

/* Links dorados con efecto hover */
.seccion-info a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: bold;
}

.seccion-info a:hover {
  color: #ffffff;
}

.btn-lotes {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  border: 2px solid gold;
  color: gold;
  background-color: transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-lotes:hover {
  background-color: gold;
  color: black;
}
.contenedor-lotes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.contenedor-lotes img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 2px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contenedor-lotes img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.logo-animado {
  width: 180px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.logo-animado:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}
nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: gold;
    color: black;
}

nav a.activo {
    background-color: white;
    color: black;
    font-weight: bold;
}
.sub-menu {
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 10px;
}


}
.galeria-productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.producto {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  background-color: #111;
}

.producto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto:hover {
  transform: scale(1.05);
}

  .galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.galeria a {
  display: block;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background-color: #111;
  transition: transform 0.3s;
}

.galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.galeria a:hover img {
  transform: scale(1.1);
}
.imagen-portada {
  width: 400px;
  max-width: 100%;
  border: 2px solid gold;
  border-radius: 10px;
  transition: transform 0.3s;
}

.imagen-portada:hover {
  transform: scale(1.05);
}

nav {
  background-color: #000000dd;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3); /* sombra dorada */
  border-bottom: 2px solid gold;
}


nav a {
  color: white;
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}


nav a:hover {
  background-color: gold;
  color: black;
}

/* NAVBAR GENERAL */
.navbar {
  background-color: black;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.logo img {
  height: 50px;
  max-height: 60px;
}

 <div style="text-align: center; margin: 20px 0;">
  <img src="logo.png.PNG"
       alt="Goyery Luxe"
       style="width: 200px; max-width: 90vw; border: 2px solid gold; border-radius: 12px;">
 }
  

  body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif;
  background-image: url("fondo.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
}

header {
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
  padding: 20px;
}

header img {
  width: 150px;
}

h1, h2 {
  color: gold;
  text-align: center;
}

p {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contenido-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px auto;
}

img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  border: 2px solid gold;
}

  /* Títulos dorados con mejor estilo */
h1, h2 {
  color: gold;
  font-family: 'Cinzel', serif;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  margin: 20px 0;
}

/* Párrafos más elegantes */
p {
  font-family: 'Lora', serif;
  color: #f0f0f0;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 20px;
}

/* Contenedor de productos centrado */
.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* Imágenes de productos uniformes */
.productos img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 2px solid gold;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.producto img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Videos centrados */
.videos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.videos video {
  width: 300px;
  border: 2px solid gold;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 20px;
}

footer img {
  width: 40px;
  margin: 0 10px;
}

.centrado {
  display: flex;
  justify-content: center;
  gap: 20px; /* espacio entre imágenes */
  flex-wrap: wrap; /* para que se acomoden bien si hay muchas */
  margin-top: 15px;
}
.centrado img {
  max-width: 150px;
  border-radius: 10px;
}

.imagenes-inicio {
  text-align: center;
}

.imagenes-inicio img {
  margin: 10px;
  width: 200px; /* puedes ajustar el tamaño */
  height: auto;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

p {
  font-size: 19px;
}

.videos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.productos img {
  width: 160px;         /* o ajusta el tamaño como prefieras */
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s;
}

.productos img:hover {
  transform: scale(1.05);
}.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.productos img {
  width: 160px;         
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s;
}

.productos img:hover {
  transform: scale(1.05);
}

.galeria-productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.producto img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  background-color: white;
}
/* Efecto zoom */
.producto:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px gold;

}

.nombre-producto {
  color: #ffd700;
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
  text-shadow: 1px 1px 2px black;
}

.mensaje-emprendedores {
  background-color: #111;
  color: gold;
  padding: 30px 20px;
  text-align: center;
  margin-top: 20px;
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
}

.mensaje-emprendedores h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.mensaje-emprendedores p {
  font-size: 18px;
  line-height: 1.6;
}
.imagenes-inicio {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.imagenes-inicio img {
  max-width: 300px;
  border: 2px solid gold;
  border-radius: 10px;
}
.galeria-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.galeria-videos video {
  width: 250px;
  height: auto;
  border: 2px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 10px gold;
  transition: transform 0.3s ease;
}

.galeria-videos video:hover {
  transform: scale(1.05);
}
/* Para secciones generales: Inicio, Nosotros, etc. */
.seccion-info {
  background-color: #111;
  color: #ffd700; /* dorado más claro */
  padding: 30px 20px;
  text-align: center;
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
  margin-top: 20px;
}

/* Títulos dorados con sombra */
.seccion-info h2 {
  font-size: 28px;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 4px black;
  margin-bottom: 15px;
}

/* Párrafos con mejor legibilidad */
.seccion-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffd700;
  text-shadow: 1px 1px 2px #000;
}

/* Links dorados con efecto hover */
.seccion-info a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: bold;
}

.seccion-info a:hover {
  color: #ffffff;
}

.btn-lotes {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  border: 2px solid gold;
  color: gold;
  background-color: transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-lotes:hover {
  background-color: gold;
  color: black;
}
.contenedor-lotes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.contenedor-lotes img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 2px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contenedor-lotes img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: gold;
    color: black;
}

nav a.activo {
    background-color: white;
    color: black;
    font-weight: bold;
}
.sub-menu {
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 10px;
}

.sub-menu a {
  margin: 0 15px;
  color: gold;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.sub-menu a:hover {
  color: white;
}

  .galeria-productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.producto {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  background-color: #111;
}

.producto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto:hover {
  transform: scale(1.05);
}
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.galeria a {
  display: block;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background-color: #111;
  transition: transform 0.3s;
}

.galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.galeria a:hover img {
  transform: scale(1.1);
}
.imagen-portada {
  width: 400px;
  max-width: 100%;
  border: 2px solid gold;
  border-radius: 10px;
  transition: transform 0.3s;
}

.imagen-portada:hover {
  transform: scale(1.05);
}
/* Estilo del menú principal */
nav {
  background-color: #000000dd;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3); /* sombra dorada */
  border-bottom: 2px solid gold;
}

/* Estilo de los enlaces */
nav a {
  color: white;
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Efecto al pasar el mouse */
nav a:hover {
  background-color: gold;
  color: black;
}

/* Secciones internas como Anillos, Collares */
.submenu {
  text-align: center;
  margin-top: 10px;
}

.submenu a {
  color: gold;
  margin: 0 10px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
}

.submenu a:hover {
  text-shadow: 0 0 5px gold;
}
/* NAVBAR GENERAL */
.navbar {
  background-color: black;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  height: 50px;
  max-height: 60px;
}
/* === SUBMENÚ VISUAL Y ELEGANTE === */
.subnav {
  text-align: center;
  padding: 10px 0;
}

.subnav a {
  all: unset;
  display: inline-block;
  color: gold;
  font-weight: bold;
  font-size: 18px;
  margin: 0 15px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.subnav a:hover {
  color: white;
  text-shadow: 0 0 6px gold;

}

/* NAVIGATION CENTRADA TOTAL */
.navbar {
  background-color: black;
  padding: 15px 0;
  border-bottom: 2px solid gold;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: gold;
}
.seccion-info {
  text-align: center;
  padding: 30px 20px;
  background-color: #111;
  color: #ffd700;
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
  max-width: 900px;
  margin: 0 auto;
}

.seccion-info h2 {
  font-size: 28px;
  font-weight: bold;
  color: gold;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px black;
}

.seccion-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffd700;
  text-shadow: 1px 1px 1px #000;
}

.seccion-info a {
  color: gold;
  font-weight: bold;
  text-decoration: underline;
}

.seccion-info a:hover {
  color: white;
}
.mensaje-emprendedores {
  background-color: #111;
  color: gold;
  padding: 30px 20px;
  text-align: center;
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
}

.mensaje-emprendedores h2 {
  color: gold;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.mensaje-emprendedores p {
  color: gold;
  font-size: 18px;
  line-height: 1.6;
}

.mensaje-emprendedores strong {
  color: gold;
}


