/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000; /* Fondo negro */
  color: #fff; /* Texto blanco */
  line-height: 1.6;
}

/* ENCABEZADO */
header {
  background-color: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444;
}
.tabla-ficha {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  color: #fff;
  font-size: 16px;
}

.tabla-ficha td {
  padding: 8px 10px;
  border-bottom: 1px solid #555;
}


.logo img {
  height: 50px;
}

/* MENÚ */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #d4af37; /* Dorado */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #fff;
}

/* FRASE PRINCIPAL */
.frase-principal {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
  color: #d4af37; /* Dorado */
  font-size: 1.5rem;
}

/* VEHÍCULO DESTACADO */
.vehiculo-destacado {
  text-align: center;
  padding: 40px 20px;
}

.vehiculo-destacado h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.caja-coche {
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 0 10px #333;
}

.caja-coche img {
  width: 300px;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.precio {
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: bold;
}

.precio span {
  color: #bbb;
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #d4af37;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}

/* SOBRE NOSOTROS */
.sobre-nosotros {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.sobre-nosotros h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.sobre-nosotros p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  color: #ccc;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
/* Animación para el botón flotante de WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  animation: pulso 2s infinite;
  transition: transform 0.3s ease;
}

.floating-whatsapp img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes pulso {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.descripcion {
  font-size: 15px;
  color: #ccc;
  margin: 5px 0 10px 0;
  text-align: center;
}
.divider {
  border: none;
  height: 1px;
  background-color: #555;
  margin: 40px auto;
  width: 80%;
}

.footer {
  text-align: center;
  padding: 20px;
  color: #ccc;
  background-color: #111;
  font-size: 14px;
  margin-top: 20px;
  border-top: 1px solid #333;
}
.boton-dorado {
  display: inline-block;
  background-color: #d4af37; /* Dorado */
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;.logo-container {
  text-align: center;
  padding: 20px 0;
}

.logo-container img {
  max-width: 280px;
  height: auto;
  display: inline-block;
}
  margin-top: 10px;
}

.boton-dorado:hover {
  background-color: #b89b30;
  color: #fff;
}
.logo {
  width: 180px;
  height: auto;
  margin-top: 20px;
}
/* Contenedor del header */
.header-contenido {
  display: flex;
  align-items: center;
  gap: 60px;
justify-content: flex-start;
  padding: 20px 40px;
  background-color: #000; /* Fondo negro elegante */
}

/* Logo */
.logo-img {
  max-width: 180px;
  height: auto;
}

/* Menú */
.menu-principal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.menu-principal a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu-principal a:hover {
  color: #d4af37; /* Dorado al pasar el cursor */
}
.seccion-contacto {
  background-color: #111;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.seccion-contacto h2 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 20px;
}

.seccion-contacto p {
  font-size: 16px;
  margin-bottom: 15px;
}

.seccion-contacto .boton-dorado {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.seccion-contacto .boton-dorado:hover {
  background-color: #b89b30;
  color: #fff;
}
.seccion-servicios {
  background-color: #0d0d0d;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.seccion-servicios h2 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 40px;
}

.contenedor-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio {
  background-color: #1a1a1a;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.servicio:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.servicio h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.servicio p {
  font-size: 15px;
  line-height: 1.5;
  color: #ccc;
}

.proximamente {
  color: #d4af37;
  font-size: 13px;
  font-weight: bold;
}
.ficha-coche {
  background-color: #0d0d0d;
  color: white;
  font-family: Arial, sans-serif;
  padding-bottom: 60px;
}

.detalle-coche {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.subinfo {
  color: #ccc;
  margin-bottom: 20px;
}

.galeria-coche {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.galeria-coche img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #333;
}

.precio h2 {
  color: #d4af37;
  font-size: 28px;
  margin: 10px 0;
}

.descripcion {
  font-size: 16px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 30px;
}

.footer {
  text-align: center;
  padding: 30px 0;
  background-color: #000;
  color: white;
}
.galeria-coche {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 40px auto;
  max-width: 1000px;
}

.galeria-coche a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.galeria-coche a:hover {
  transform: scale(1.03);
}

.galeria-coche img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #333;
  border-radius: 8px;
}
/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.lightbox-close {
  position: fixed;
  top: 30px;
  right: 40px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 18px;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
  border-radius: 50%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: #d4af37;
  color: #000;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}
.detalle-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px auto;
  max-width: 1100px;
}

.columna-descripcion {
  flex: 1;
  min-width: 300px;
  color: #ccc;
}

.columna-descripcion h3 {
  color: white;
  margin-bottom: 15px;
}

.columna-descripcion p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 15.5px;
}

.columna-precio {
  flex: 0 0 340px;
}
.detalle-columna {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.columna-descripcion {
  color: #ccc;
}

.columna-descripcion h3 {
  color: white;
  margin-bottom: 15px;
}

.columna-descripcion p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 15.5px;
}
.formulario-contacto {
  background-color: #0d0d0d;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.formulario-contacto h2 {
  color: #d4af37;
  margin-bottom: 15px;
}

.formulario-contacto form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: white;
  font-size: 16px;
}

.formulario-contacto input::placeholder,
.formulario-contacto textarea::placeholder {
  color: #888;
}
.formulario-contacto {
  background-color: #0d0d0d;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.formulario-contacto h2 {
  color: #d4af37;
  margin-bottom: 15px;
}

.formulario-contacto form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: white;
  font-size: 16px;
}

.formulario-contacto input::placeholder,
.formulario-contacto textarea::placeholder {
  color: #888;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #000;
}

.logo-container img {
  height: 130px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 80px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 10px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #d4af37;
}
.barra-navegacion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0; /* Eliminamos margen lateral */
  margin: 0 60px; /* Asegura que no esté totalmente pegado al borde si lo deseas */
}

/* MENÚ A LA IZQUIERDA */
.menu-navegacion {
  margin-left: 0;
}

.menu-navegacion ul {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
}

.menu-navegacion a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

/* REDES A LA DERECHA */
.redes-sociales {
  display: flex;
  gap: 15px;
  margin-right: 0;
}

.icono-red {
  width: 42px;
  height: 42px;
}
.pie-pagina {
  text-align: center;
  color: white;
  font-size: 14px;
  padding: 20px 0;
  background-color: #000;
}

.redes-footer {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.icono-footer {
  width: 55px;
  height: 55px;
  filter: brightness(0) invert(1); /* Para que se vean blancos si el fondo es oscuro */
}
.frase-elegante {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  padding: 40px 20px;
}

.frase-elegante .marca {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #d4af37; /* dorado elegante */
}

.frase-elegante .destacado {
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(212, 175, 55, 0.4);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.frase-elegante {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  padding: 40px 20px;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

.frase-elegante .marca {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #d4af37;
}

.frase-elegante .destacado {
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(212, 175, 55, 0.4);
}
.footer-elegante {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.footer-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}

.logo-footer img {
  height: 180px;
}

.info-footer p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #ccc;
}

.info-footer a {
  color: #d4af37;
  text-decoration: none;
}

.copyright {
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 15px;
}
.redes-footer a img {
  width: 55px;
  height: 55px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.redes-footer a img:hover {
  transform: scale(1.1);
}
.boton-dorado {
  background-color: #d4af37;
  color: #111;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  font-family: 'Playfair Display', serif;
}

.boton-dorado:hover {
  background-color: #e0c255;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}
.redes-footer a img {
  width: 55px;
  height: 55px;
  margin: 0 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.redes-footer a img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.frase-elegante {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
  opacity: 0;
  animation: aparecer 2s ease forwards;
}

@keyframes aparecer {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.floating-whatsapp img {
  width: 28px;
  height: 28px;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  
}
body {
  background: linear-gradient(180deg, #0e0e0e 0%, #1a1a1a 100%);
  color: #fff;
}
body {
  background-color: #111;
  background-image: url('img/textura-carbono.png');
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
  color: #fff;
}
.lightbox-link img {
  transition: transform 0.4s ease;
}

.lightbox-link:hover img {
  transform: scale(1.05);
}
.logo-container img {
  animation: aparecerLogo 1.2s ease-out;
}

@keyframes aparecerLogo {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.opiniones-clientes {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.opiniones-clientes h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 40px;
  color: gold;
}

.opiniones-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.opinion {
  background-color: #1a1a1a;
  border-left: 4px solid gold;
  padding: 25px 20px;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.opinion:hover {
  transform: translateY(-5px);
}

.opinion p {
  font-style: italic;
  font-size: 0.95em;
}

.opinion h4 {
  margin-top: 15px;
  color: #ccc;
  font-weight: normal;
}
.opiniones-clientes {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.opiniones-clientes h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 40px;
  color: gold;
}

.swiper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.swiper-slide.opinion {
  background-color: #1a1a1a;
  border-left: 4px solid gold;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.swiper-slide.opinion:hover {
  transform: translateY(-5px);
}

.swiper-slide.opinion p {
  font-style: italic;
  font-size: 0.95em;
}

.swiper-slide.opinion h4 {
  margin-top: 15px;
  color: #ccc;
  font-weight: normal;
}

.estrellas {
  color: gold;
  font-size: 1.2em;
  margin-left: 8px;
}
.testimonio {
  text-align: center;
  max-width: 0px;
  margin: 0 auto;
  font-style: italic;
  color: #ccc;
  position: relative;
  padding: 20px;
}

.testimonio::before {
  content: "❝";
  font-size: 40px;
  position: absolute;
  left: -20px;
  top: -10px;
  color: gold;
}

.testimonio::after {
  content: "❞";
  font-size: 40px;
  position: absolute;
  right: -20px;
  bottom: -10px;
  color: gold;
}

}.galeria {
  padding: 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

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

.card {
  background: #111;
  border-radius: 20px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s;
  text-align: center;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.card h3 {
  margin-top: 15px;
  font-size: 1.2em;
  color: gold;
}

.card p {
  font-size: 0.9em;
  color: #ccc;
}

.boton-dorado {
  margin-top: 15px;
  padding: 12px 24px;
  background-color: gold;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.boton-dorado:hover {
  background-color: #d4af37;
}

.oculto {
  display: none;
}
.titulo-dorado {
  color: gold;
}
.lista-equipamiento {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  color: #fff;
  font-size: 16px;
}

.lista-equipamiento li {
  margin-bottom: 8px;
}
.lista-condiciones {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #fff;
  font-size: 16px;
}

.lista-condiciones li {
  margin-bottom: 10px;
}
/* ===== RESPONSIVE GENERAL ===== */
@media (max-width: 768px) {
  .detalle-coche {
    padding: 20px;
  }

  .galeria-coche {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .galeria-coche img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .detalle-columna {
    display: block;
  }

  .precio-box,
  .columna-descripcion {
    width: 100%;
    padding: 10px 0;
  }

  .columna-descripcion {
    font-size: 15px;
  }

  .tabla-ficha td {
    display: block;
    width: 100%;
    padding: 6px 0;
    border-bottom: 1px solid #444;
  }

  .boton-dorado {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    margin-top: 20px;
  }

  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .footer-elegante {
    text-align: center;
  }

  .footer-contenido {
    flex-direction: column;
    align-items: center;
  }

  .footer-contenido > div {
    margin: 10px 0;
  }
img {
  max-width: 100%;
  height: auto;
}
.boton-flotante-vender {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #d4af37;
  color: #111;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  box-shadow: 0 0 10px #d4af37aa;
  z-index: 999;
  transition: all 0.3s ease;
}

.boton-flotante-vender:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #d4af37;
}
.boton-flotante-vender {
  bottom: 130px; /* En lugar de 80px */
}
.formulario-contacto {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #111;
  border-radius: 20px;
  box-shadow: 0 0 15px #d4af37aa;
  color: #fff;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.formulario-contacto input,
.formulario-contacto textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
}

.formulario-contacto textarea {
  height: 120px;
  resize: none;
}

.boton-flotante-vender {
  position: fixed;
  bottom: 100px;
  left: 20px;
  background-color: #d4af37;
  color: #111;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  box-shadow: 0 0 12px #d4af37aa;
  z-index: 1000;
  transition: all 0.3s ease;
}

.boton-flotante-vender:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px #d4af37;
}
.opiniones-clientes {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.opiniones-clientes h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 40px;
  color: gold;
}

.opiniones-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.opinion {
  background-color: #1a1a1a;
  border-left: 4px solid gold;
  padding: 25px 20px;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
  animation: aparecer 1s ease forwards;
  opacity: 0;
}

.opinion:hover {
  transform: translateY(-5px);
}

.opinion p {
  font-style: italic;
  font-size: 0.95em;
}

.opinion h4 {
  margin-top: 15px;
  color: #ccc;
  font-weight: normal;
}

.estrellas {
  color: gold;
  font-size: 1.2em;
  margin-left: 8px;
}

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



/* 🔧 Mejoras responsive adicionales para móviles pequeños */
@media (max-width: 480px) {
  body {
    font-size: 15px;
    padding: 0 10px;
  }

  header {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .logo-img {
    max-width: 150px;
    height: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .menu-navegacion ul {
    flex-direction: column;
    gap: 20px;
  }

  .frase-principal,
  .frase-elegante {
    font-size: 1.3rem;
    padding: 20px 10px;
  }

  .galeria-coche {
    grid-template-columns: 1fr !important;
  }

  .card {
    width: 90%;
    margin: auto;
  }

  .footer-contenido {
    flex-direction: column;
    gap: 20px;
  }

  .logo-footer img {
    height: 100px;
  }

  .formulario-contacto {
    padding: 20px;
  }

  .formulario-contacto input,
  .formulario-contacto textarea {
    font-size: 15px;
  }

  .boton-dorado {
    font-size: 16px;
    padding: 10px 20px;
  }
}
