/* Fuentes elegantes */
@import url('https://fonts.googleapis.com/css2?family=Lora&family=Playfair+Display&display=swap');

body {
  margin: 0;
  font-family: 'Lora', serif;
  background-color: #f8f8f8;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

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

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #888;
}

.hero {
  min-height: 90vh;
  padding: 60px 20px 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* ANTES: center → ahora alinea arriba */
  text-align: center;
  background: url('img/marmol_2.jpg') no-repeat center center/cover;
  position: relative;
  color: #222;
}


.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85); /* Velado blanco elegante */
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px 20px; /* añade espacio arriba si hace falta */
  margin-top: 60px; /* este es el que realmente "sube" el texto visualmente */
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  display: block;
  height: 2px;
  width: 60%;
  background: #d4af7f;
  margin: 8px auto 0;
  transition: width 0.4s ease;
}

.hero h1:hover::after {
  width: 90%;
}

.hero p {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: #555;
}

/* Flecha rebotando */
.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px; /* Subido de 38px → 48px */
  color: #d4af7f;
  animation: bounce 1.5s infinite;
  opacity: 0.9;
  transition: opacity 0.4s ease, transform 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.scroll-arrow:hover {
  transform: translateX(-50%) scale(1.1);
  text-shadow: 0 0 8px rgba(212, 175, 127, 0.6);
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 14px); } /* Rebote más marcado */
}


/* Fade-in para el resto */
.fade-section.invisible {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}


.sobre-mi-bloque {
  background: #fff;
  padding: 2rem;
  border-left: 4px solid #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #000;
  display: inline-block;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
}
.subsection.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 4rem;
}

.about-content {
  flex: 1 1 500px;
}

.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  max-width: 280px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .subsection.about {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fondo texturizado sutil */
.experiencia-lujo {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.experiencia-lujo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.lux-card {
  background: #fff;
  border: 1px solid #e5d9c5; /* Beige elegante */
  border-left: 5px solid #c2a97f; /* Dorado suave */
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease;
}

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

.lux-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: #222;
}

.lux-card .empresa {
  font-size: 0.95rem;
  font-style: italic;
  color: #777;
  margin-bottom: 1rem;
}

.lux-card ul {
  padding-left: 1.2rem;
  list-style: disc;
  color: #444;
}

.lux-card li {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.idiomas-visual {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.idiomas-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #111;
}

.idioma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.idioma-block {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.idioma-block:hover {
  transform: translateY(-6px);
}

.idioma-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.idioma-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.idioma-overlay p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #555;
}

.idioma-block.ingles {
  background-image: url('img/ingles.jpg'); /* Fondo: Big Ben, paisaje británico, bandera difusa... */
}

.idioma-block.frances {
  background-image: url('img/frances.jpg'); /* Fondo: Torre Eiffel, calle parisina, bandera suave... */
}
.habilidades-section {
  padding: 80px 40px;
  background-color: #fcfcfc;
  text-align: center;
}

.habilidades-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.medallones-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.medallon {
  flex: 0 0 calc(33.33% - 2rem);
  text-align: center;
}

.medallon .circle {
  width: 100px;
  height: 100px;
  border: 1.5px solid #d6b56f; /* dorado elegante */
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 0 auto 15px auto;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.1),
    0 0 12px rgba(218, 180, 102, 0.3); /* brillo dorado sutil */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medallon .circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.4),
    transparent 60%
  );
  z-index: 1;
}

.medallon .circle span {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #222;
  display: block;
  padding: 30px 10px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.medallon .circle:hover {
  transform: scale(1.07);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(218, 180, 102, 0.5); /* brillo más marcado al hover */
}

.medallon p {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: #555;
  line-height: 1.3;
  margin: 0;
}

.titulo-principal {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
}

.titulo-principal::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #d4af7f, #f3e3c3);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 30px;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #caa75c; /* dorado suave */
  margin: 10px auto 0;
}
.estudios-destacado {
  text-align: center;
  margin-top: 60px;
}

.estudio-tarjeta {
  border: 1px solid #d4af7f; /* dorado suave */
  border-radius: 16px;
  padding: 30px 40px;
  max-width: 500px;
  margin: 0 auto;
  background: #fffefc;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  position: relative;
}

.estudio-tarjeta::before {
  
  font-size: 30px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fffefc;
  padding: 0 10px;
}

.estudio-contenido h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: #222;
}

.estudio-contenido .centro {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #555;
  margin: 0;
}

.estudio-contenido .carrera {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #666;
  margin: 6px 0;
}

.estudio-contenido .fechas {
  font-size: 14px;
  color: #999;
  font-style: italic;
}
.fade-section.invisible {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.estudio-icono {
  text-align: center;
  margin-bottom: 12px;
}
.contacto-footer {
  padding: 2rem 1.5rem;
  background-color: transparent;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Lora', serif;
  border-top: 1px solid #e0dcd2;
}

.contacto-footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: #111;
}

.contacto-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacto-footer li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: #444;
}

.contacto-footer .icono {
  flex-shrink: 0;
}

.contacto-footer a {
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contacto-footer a:hover {
  border-bottom: 1px solid #c2a97f;
}

.portfolio-horizontal {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

/* Título principal */
.portfolio-horizontal .titulo-principal {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Flecha de desplazamiento animada */
.scroll-indicator {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 2rem;
  opacity: 0.3;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  animation: bounceRight 1.2s ease-in-out infinite;
}

@keyframes bounceRight {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50%) translateX(10px);
    opacity: 0.6;
  }
}

/* Gradiente lateral solo cuando hay más contenido */
.portfolio-horizontal::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, #fafafa, transparent);
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.portfolio-horizontal.hide-gradient::after {
  opacity: 0;
}

/* Galería desplazable horizontalmente */
.galeria-horizontal {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Estilo del scrollbar */
.galeria-horizontal::-webkit-scrollbar {
  height: 6px;
}
.galeria-horizontal::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.bloque-campaña {
  position: relative;
  min-width: 300px;
  max-width: 90vw;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloque-campaña:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.bloque-campaña img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Lightbox background */
#lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  cursor: zoom-out;
  transition: transform 0.3s ease;
}

#lightbox.show {
  display: flex;
}

.grupo-imagenes {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: center;
  overflow-x: auto;
}

.grupo-imagenes img {
  width: auto;
  max-height: 280px;
  height: auto;
}

.imagenes-secundarias {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.expo-texto {
  margin-top: 1rem;
  padding: 0 1rem;
}

.expo-texto h4 {
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.expo-texto .categoria {
  font-size: 0.9rem;
  color: #888;
}

.expo-texto .descripcion {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .bloque-campaña {
    min-width: 85%;
    max-width: 90%;
  }

  .grupo-imagenes img {
    max-height: 200px;
  }

  .scroll-indicator {
    font-size: 1.5rem;
    top: auto;
    bottom: 10px;
    right: 10px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .portfolio-horizontal {
    padding: 3rem 1rem;
  }

  .titulo-principal {
    font-size: 1.5rem;
  }

  .expo-texto h4 {
    font-size: 1rem;
  }

  .expo-texto .descripcion {
    font-size: 0.9rem;
  }
}
.dior-collage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fila-horizontal img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.fila-pegada {
  display: flex;
  gap: 0;
}

.fila-pegada img {
  width: 50%;
  object-fit: cover;
  border-radius: 0;
}

img.ampliable {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

img.ampliable:hover {
  transform: scale(1.02);
}
/* Pulp collage - imágenes en fila sin recortes */
.pulp-collage {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.pulp-collage img {
  height: auto;
  max-height: 250px;
  width: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Gallo vertical - imágenes una debajo de otra */
.gallo-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallo-vertical img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
/* Carousel contenedor */
.carousel-tienda {
  margin: 20px 0;
  text-align: center;
  position: relative;
  max-width: 100%;
  padding: 0 16px; /* padding lateral para evitar que las flechas se peguen al borde */
  box-sizing: border-box;
}

/* Wrapper con sombra y bordes suaves */
.carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Track con imágenes en fila */
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Cada imagen del carrusel */
.carousel-item {
  flex: 0 0 100%;
  max-width: 100%;
  display: none;
  border-radius: 8px;
  object-fit: contain;
}

/* Imagen visible */
.carousel-item.active {
  display: block;
}

/* Botones izquierdo y derecho */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #f3e3c3;
  color: black;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

/* Responsive para móviles y iPhone */
@media (max-width: 500px) {
  .carousel-wrapper {
    max-width: 100%;
  }

  .carousel-btn.prev {
    left: 0;
  }

  .carousel-btn.next {
    right: 0;
  }

  .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }

  .enlace-tienda {
    font-size: 0.9em;
  }
}

/* Puntos indicadores */
.carousel-dots {
  margin-top: 8px;
}

.carousel-dots .dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #d4af7f;
}

/* Enlace debajo del carrusel */
.enlace-tienda {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  font-size: 0.95em;
  text-decoration: none;
  color: #444;
  transition: color 0.3s;
}

.enlace-tienda:hover {
  color: #000;
}

/* Estilo destacado */
.bloque-campaña.destacado {
  position: relative;
  animation: destello 2s infinite;
  box-shadow: 0 0 15px rgba(212, 175, 127, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

@keyframes destello {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 127, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(212, 175, 127, 0.8);
  }
}

/* Indicador visual elegante para deslizar */
.indicador-desliza {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.burbuja {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 25px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: aparecer 0.8s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Lora', serif;
}

.burbuja .flecha {
  font-size: 20px;
  animation: mover-flecha 1.2s infinite ease-in-out;
  color: #d4af7f;
}

.burbuja .texto {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

@keyframes mover-flecha {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .burbuja {
    padding: 6px 10px;
  }

  .burbuja .flecha {
    font-size: 16px;
  }

  .burbuja .texto {
    font-size: 12px;
  }

  .indicador-desliza {
    left: 6px;
  }
}
/* Indicador flotante */
.indicador-desliza {
  position: absolute;
  top: 50%;
  width: 100%;
  pointer-events: none;
  z-index: 20;
}

.burbuja {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  border-radius: 25px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Lora', serif;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: absolute;
  transform: translateY(-50%);
  opacity: 1;
}

.burbuja .flecha {
  color: #d4af7f;
  font-size: 18px;
}

.burbuja.derecha {
  right: 10px;
  flex-direction: row;
}

.burbuja.izquierda {
  left: 10px;
  flex-direction: row-reverse;
}

.burbuja.centro {
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .burbuja {
    padding: 6px 10px;
    font-size: 12px;
  }

  .burbuja .flecha {
    font-size: 16px;
  }
}
.burbuja .texto {
  transition: opacity 0.3s ease;
}

.burbuja.ocultar-texto .texto {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.contenedor-video {
  margin-top: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background-color: #f4f4f4;
}

.marco-video.elegante {
  max-width: 960px;
  width: 100%;
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
}

.marco-video.elegante::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(to right, #e0e0e0, #ffffff, #e0e0e0);
  border-bottom: 1px solid #ccc;
}

.marco-video.elegante video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 20px 20px;
}
