/* === ESTILOS GENERALES === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #111;
  background-color: #fff;
  overflow-x: hidden;
}

/* === ENCABEZADO / STICKY FIJO === */
.encabezado-transparente {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.encabezado-transparente.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.logo img {
  height: 64px;
  max-width: 220px;
}

/* === MENÚ === */
.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 100%;
  overflow-x: auto;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.menu li a:hover {
  text-decoration: underline;
}

/* === BOTÓN HAMBURGUESA === */
.icono-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.icono-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.icono-menu.activo span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.icono-menu.activo span:nth-child(2) {
  opacity: 0;
}
.icono-menu.activo span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO === */
.hero {
  background: url('../assets/portada.jpg') left top 1% / cover no-repeat;
  height: 100vh;
  position: relative;
}

.hero .capa {
  position: absolute;
  top: 70%;
  left: 7%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  max-width: 500px;
}

.hero h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.btn-descubre {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 30px;
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-descubre:hover {
  background: #fff;
  color: #000;
}

/* === COLECCIONES === */
.colecciones {
  display: flex;
  flex-wrap: wrap;
}

.bloque {
  flex: 1 1 50%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}


.bloque .capa {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
}

.bloque h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bloque a {
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

/* === CATÁLOGO === */
.seccion-hombre {
  padding: 4rem 2rem;
  background-color: #fff;
}

.titulo-seccion {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.descripcion-seccion {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tarjeta-producto {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  padding: 1rem;
  background-color: #fafafa;
  transition: transform 0.3s ease;
}

.tarjeta-producto:hover {
  transform: translateY(-5px);
}

.tarjeta-producto img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.tarjeta-producto h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.tarjeta-producto p {
  font-size: 0.95rem;
  color: #555;
}

/* === CONTACTO === */
.seccion-contacto {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.formulario-contacto {
  max-width: 600px;
  margin: 2rem auto;
}

.grupo-formulario {
  margin-bottom: 1.5rem;
}

.grupo-formulario label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.grupo-formulario input,
.grupo-formulario textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.btn-enviar {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #333;
}

.centrado {
  text-align: center;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .nav-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
  }

  .logo img {
    height: 48px;
  }

  .icono-menu {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
    box-sizing: border-box;
  }

  .menu.activo {
    display: flex;
  }

  .menu li a {
    color: white;
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .hero {
    height: 70vh;
    background-position: left top 35%;
  }

  .hero .capa {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .btn-descubre {
    font-size: 1rem;
    padding: 14px 32px;
    margin-top: 12px;
    white-space: nowrap;
    max-width: 95%;
  }
}

.titulo-hero {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,.6);
}

.solo-movil {
  display: none;
}

.solo-desktop {
  display: inline;
}

.zona-servicios {
  display: flex;
  width: 100vw;
  height: 65vh;
  overflow: hidden;
}

.columna {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* Capa de imagen con efecto zoom */
.bg-zoom {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Imagenes específicas */
.bg-traje {
  background-image: url('../assets/traje-de-novio.jpg');
  background-position: 60% center;
}

.bg-camisa {
  background-image: url('../assets/Camisas-JPM.jpg');
  background-position: 40% center;
}

.overlay {
  position: relative;
  z-index: 1;
  padding: 2rem 2.5rem;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.overlay h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.links a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid white;
  transition: 0.3s ease all;
}

.links a:hover {
  color: #ccc;
  border-color: #ccc;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .zona-servicios {
    flex-direction: column;
    height: auto;
  }

  .columna {
    height: 45vh;
  }

  .links {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* Nuevas imágenes de fondo */
.bg-abrigos {
  background-image: url('../assets/abrigos.jpg');
  background-position: 50% center;
}

.bg-zapatos {
  background-image: url('../assets/zapatos.jpg');
  background-position: 40% center;
}

.zona-marcas {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.zona-marcas h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}

.zona-marcas p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2.5rem;
}

.zona-marcas img {
  max-height: 70px;
  margin: 0 15px;

  
}

.zona-testimonios {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.titulo-testimonios {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.subtitulo-testimonios {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.grid-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
}

.testimonio .video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.testimonio .video-thumbnail:hover {
  transform: scale(1.05);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* Nuevo botón de play como imagen */
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px !important;
  height: 60px !important;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: contain; /* <<--- ESTA ES LA CLAVE */
}


/* Modal de video */
.modal-video {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-video.activo {
  display: flex;
}

.modal-contenido {
  width: 90%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-contenido video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

.google-review {
  text-align: center;
  margin-bottom: -60px; /* Quitamos espacio extra debajo */
  padding-bottom: 0;
}

.google-icon {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.google-label {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: #444;
}

.google-stars {
  height: 32px;
  width: auto;
  margin-bottom: 10px;
}

.google-rating a {
  font-size: 1.1rem;
  color: #1a73e8;
  text-decoration: underline;
}

.google-rating a:hover {
  text-decoration: none;
}

.cta-agendar {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 20px 20px; /* Más delgado arriba y abajo */
  margin-top: 0px;    /* Separación con el bloque de reviews */
  margin-bottom: 0;    /* Pegado al mapa */
}

.cta-texto {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.cta-boton {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.cta-boton:hover {
  background-color: #929292;
}

/* ===============================
   ESTILOS PARA historia.php
   =============================== */

body.historia-marca {
  background-color: #ffffff;
  color: #333;
}

.historia-marca h1,
.historia-marca h2,
.historia-marca h3 {
  font-weight: 700;
  color: #111;
}

.historia-marca p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.historia-marca figure {
  margin: 0;
}

.historia-marca img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
/* Espaciado entre secciones */
.historia-marca section {
  margin-bottom: 3rem;
  margin-top: 0px;
}

/* Link personalizado a Instagram */
.historia-marca a.enlace-instagram {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.historia-marca a.enlace-instagram:hover {
  color: #c13584; /* Instagram rosado */
}

/* Responsive: asegurar padding horizontal en móvil */
@media (max-width: 767.98px) {
  .historia-marca .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.franja-superior {
  height: 105px;
  background-color: #000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
}

@media (max-width: 767.98px) {
  .historia-marca .col-lg-6 {
    text-align: center;
  }
}

/* === HERO PRENSA === */
.hero-prensa {
  position: relative;
  background-color: #111;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.capa-prensa {
  width: 100%;
  max-width: 900px;
}

.contenido-prensa-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3em;
  margin-top: 50px;
}

.contenido-prensa-header p {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

/* === ZONA DE NOTAS DE PRENSA === */
.zona-prensa {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contenedor-prensa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nota-prensa {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.nota-prensa:hover {
  transform: translateY(-4px);
}

.nota-prensa img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.contenido-prensa {
  padding: 20px;
}

.contenido-prensa h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
}

.contenido-prensa p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

.btn-prensa {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: #0d6efd;
  transition: color 0.2s ease;
}

.btn-prensa:hover {
  color: #06338c;
  text-decoration: underline;
}

/* === RESPONSIVE HEADER PRENSA === */
@media (max-width: 768px) {
  .hero-prensa {
    height: 200px;
  }

  .contenido-prensa-header h1 {
    font-size: 1.5rem;
  }

  .contenido-prensa-header p {
    font-size: 1rem;
  }
}

/* === HERO CONTACTO (con fondo negro, sin imagen) === */
.hero-contacto {
  position: relative;
  background-color: #111; /* Fondo negro sólido */
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.capa-contacto {
  width: 100%;
  max-width: 900px;
}

.contenido-contacto-header {
  color: #fff;
  z-index: 2;
}

.contenido-contacto-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3em;
  margin-top: 50px;
}

.contenido-contacto-header p {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
  .hero-contacto {
    height: 200px;
  }

  .contenido-contacto-header h1 {
    font-size: 1.5rem;
  }

  .contenido-contacto-header p {
    font-size: 1rem;
  }
}

/* === FORMULARIO CONTACTO === */
.formulario-contacto .form-control {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.formulario-contacto .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

.formulario-contacto .btn-dark {
  background-color: #000;
  color: #fff;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.formulario-contacto .btn-dark:hover {
  background-color: #222;
}

/* HERO fondo negro exclusivo */
.hero-trajes-novio {
  background-color: #000;
  padding-top: 50px;
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#trajes-novio .contenido-prensa-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

#trajes-novio .contenido-prensa-header p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

#trajes-novio .cta-boton {
  background-color: #fff;
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

#trajes-novio .cta-boton:hover {
  background-color: #f5f5f5;
  transform: scale(1.03);
}

/* GALERÍA */
#trajes-novio .row.g-3 img {
  transition: transform 0.3s ease;
  border-radius: 8px;
}

#trajes-novio .row.g-3 img:hover {
  transform: scale(1.03);
}

/* TESTIMONIO */
#trajes-novio blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
}

#trajes-novio blockquote footer {
  font-size: 0.95rem;
  color: #555;
}


/* RESPONSIVE */
@media (max-width: 767px) {
  #trajes-novio .contenido-prensa-header h1 {
    font-size: 2rem;
  }

  #trajes-novio .contenido-prensa-header p {
    font-size: 1rem;
  }

  #trajes-novio .cta-boton,
  #trajes-novio .cta-agendar .cta-boton {
    width: 100%;
    text-align: center;
  }
}


/* GALERÍA de inspiración */
#trajes-novio .row.g-3 img {
  transition: transform 0.3s ease;
  border-radius: 8px;
}

#trajes-novio .row.g-3 img:hover {
  transform: scale(1.03);
}

/* TESTIMONIO destacado */
#trajes-novio blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
}

#trajes-novio blockquote footer {
  font-size: 0.95rem;
  color: #555;
}

/* Franja negra de CTA a ancho completo */
.cta-trajes-novio-full {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  width: 100%;
}

.cta-trajes-novio-full .contenido-cta {
  max-width: 768px;
  padding: 0 20px;
}

.cta-trajes-novio-full .cta-boton {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 40px;
  padding: 12px 30px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cta-trajes-novio-full .cta-boton:hover {
  background-color: #f1f1f1;
  color: #111;
}

.carousel-elegidos {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.elegido-img {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 150px;
  height: 225px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.elegido-img:hover {
  transform: scale(1.05);
}

.elegidos .swiper {
  padding-bottom: 40px;
}

.elegidos .swiper-slide {
  width: 180px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.elegidos .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.elegidos .swiper-slide img:hover {
  transform: scale(1.05);
}

.elegidos .swiper-button-prev,
.elegidos .swiper-button-next {
  color: #ffffff;
}

/* ===============================
   LANDING ROPA A LA MEDIDA
   =============================== */

/* Cómo lo hacemos */
.proceso-medida {
  text-align: center;
  padding: 60px 20px;
}
.proceso-medida h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.proceso-medida p.intro {
  max-width: 900px;
  margin: 0 auto 40px;
}
.proceso-medida .pasos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.proceso-medida .paso {
  max-width: 300px;
}
.proceso-medida .paso img {
  width: 60px;
  margin-bottom: 15px;
}
.proceso-medida .paso h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.proceso-medida .paso p {
  font-size: 0.95rem;
}

/* Cuadrícula de productos */
.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.producto {
  text-align: center;
}
.producto img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.producto h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.producto p {
  font-size: 0.95rem;
  color: #444;
}
.producto ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
.producto ul li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
}
.producto ul li::before {
  content: "✔";
  color: #000;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CTA final */
.cta-ropa-full {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta-ropa-full h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cta-ropa-full p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.cta-ropa-full .cta-boton {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.cta-ropa-full .cta-boton:hover {
  background-color: #f2f2f2;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .hero-ropa-medida h1 {
    font-size: 2rem;
  }
  .grid-productos {
    grid-template-columns: 1fr;
  }
  .proceso-medida .pasos {
    flex-direction: column;
    gap: 30px;
  }
}




