/* ====== BASE / NAV / HERO (negro + rojo) ====== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 3px solid #e60000;
}

header img {
  width: 120px;
  height: auto;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #000 0%, #111 100%);
  border-bottom: 3px solid #e60000;
}
.hero h2 {
  color: #e60000;
  font-size: 2.5rem;
  margin: 0 0 10px;
}
.hero p {
  color: #fff;
}

/* ===== CARRUSEL MIXTO ===== */
.carrusel-mixto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #000;
  border-bottom: 3px solid #e60000;
}

/* Lados */
.carrusel-lado {
  position: relative;
  width: 25%;
  height: 90%;
  overflow: hidden;
  border-radius: 10px;
}

/* Centro */
.carrusel-centro {
  position: relative;
  width: 45%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

/* ===== IMÁGENES SIN RECORTES ===== */
.carrusel-lado img,
.carrusel-centro img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centra la imagen */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* muestra la imagen completa */
  background-color: #000; /* fondo si la imagen no llena el área */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carrusel-lado img.active,
.carrusel-centro img.active {
  opacity: 1;
}



.productos {
  padding: 80px 20px;
  text-align: center;
}

.productos h3 {
  color: #e60000;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Pestañas */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.tab-link {
  background: #111;
  color: #fff;
  border: 2px solid #e60000;
  padding: 25px 70px;   /* Antes 10px 20px, agrandamos */
  margin: 5px;
  cursor: pointer;
  font-size: 1.3rem;    /* Aumenta tamaño del texto */
  transition: 0.3s;
  border-radius: 40px;   /* Opcional, para que se vean más redondos */
  .tab-link {
  min-width: 150px;  /* ancho mínimo de cada pestaña */
  text-align: center;
}

}

.tab-link.active, .tab-link:hover {
  background: #e60000;
  color: #fff;
}

/* Contenedores de pestañas */
.tab-content {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tab-content.active {
  display: flex;
}

/* Producto individual */
.producto {
  position: relative;
  width: 260px;
  padding: 25px;
  border-radius: 18px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition: all 0.35s ease;
}



.producto:hover {
  transform: translateY(-10px) scale(1.03);

  box-shadow:
    0 25px 80px rgba(230,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.1);
}



.tab-content .producto {
  background: #111;
  border: 2px solid #e60000;
  width: 300px;       /* Antes 220px, agranda aquí */
  padding: 100px;      /* Puedes aumentar el padding también */
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tab-content .producto img {
  width: 100%;
  height: auto;           /* deja que la imagen use su tamaño natural */
  max-height: 500px;      /* límite para no romper el diseño */
  object-fit: contain;    /* muestra la imagen completa */
  border-radius: 5px;
  background-color: #000; /* por si la imagen no llena el espacio */
}




.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255,0,0,0.5);
}

.producto img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.producto h4 {
  color: #e60000;
  margin: 10px 0 5px;
}

.producto p {
  color: #fff;
  margin: 5px 0;
}

.producto .valor {
  font-weight: bold;
}

/* Modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 20px;
  border: 2px solid #e60000;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  position: relative;
}

.modal-content img {
  width: 100%;
  height: auto;          /* permite ver toda la imagen */
  max-height: 400px;     /* evita que sea demasiado grande */
  object-fit: contain;   /* muestra la imagen completa */
  border-radius: 5px;
  background-color: #000; /* rellena si sobra espacio */
}


.modal-content .acciones button {
  background: #e60000;
  color: #fff;
  border: none;
  padding: 7px 15px;
  margin: 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content .acciones button:hover {
  background: #ff1a1a;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}



/* Pie de pagina  */

footer {
  position: relative;
  z-index: 7;
  box-sizing: border-box;
  width: 100%;
  margin-top: auto;
  padding: clamp(34px, 6vw, 56px) 20px calc(26px + env(safe-area-inset-bottom, 0px));
  color: #fff6f1;
  background:
    radial-gradient(circle at top right, rgba(255, 72, 36, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, #080808 100%);
  border-top: 1px solid rgba(255, 88, 48, 0.18);
  font-family: inherit;
  overflow: hidden;
  isolation: isolate;
}

footer *,
footer *::before,
footer *::after {
  box-sizing: border-box;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 47, 18, 0), rgba(255, 47, 18, 0.9), rgba(255, 47, 18, 0));
}

footer .footer-container,
footer .footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

footer .footer-container {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(150px, 0.65fr) minmax(360px, 1.45fr) minmax(180px, 0.72fr);
  gap: 30px clamp(38px, 4vw, 62px);
  align-items: start;
}

footer .footer-brand,
footer .footer-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  gap: 14px;
}

footer .footer-kicker,
footer .footer-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff7a56;
}

footer .footer-brand h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

footer .footer-copy,
footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 246, 241, 0.72);
  line-height: 1.65;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer .footer-column--contact {
  min-width: 0;
}

footer .footer-column--social {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-links--social {
  display: grid;
  gap: 12px;
}

footer .footer-links--social a {
  width: 100%;
  justify-content: flex-start;
}

footer .footer-contact-card {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 92, 58, 0.26);
  background:
    radial-gradient(circle at top left, rgba(255, 76, 44, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.24);
}

footer .footer-contact-heading {
  margin: 0;
  color: #fff7f2;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  line-height: 1;
}

footer .footer-contact-lead {
  margin: 0;
  color: rgba(255, 246, 241, 0.82);
  line-height: 1.7;
}

footer .footer-contact-list {
  display: grid;
  gap: 10px;
}

footer .footer-contact-item {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

footer .footer-contact-item span {
  color: #ff8665;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

footer .footer-contact-item strong,
footer .footer-contact-item strong a {
  min-width: 0;
  max-width: 100%;
  color: #fff8f3;
  font-size: 0.96rem;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
}

footer .footer-contact-item small {
  color: rgba(255, 246, 241, 0.64);
  line-height: 1.55;
}

footer .footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer .footer-contact-cta,
footer .footer-contact-ghost {
  min-height: 46px;
}

footer .footer-contact-cta {
  background: linear-gradient(135deg, #ff3d19, #821500);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(148, 18, 0, 0.22);
}

footer .footer-contact-ghost {
  background: rgba(255, 255, 255, 0.025);
}

footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff6f1;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

footer a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 76, 0.48);
  background: rgba(255, 84, 48, 0.12);
  color: #ffffff;
}

footer .footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 22px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  footer .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 48px;
  }

  footer .footer-column--social {
    padding-left: 32px;
  }
}

@media (max-width: 780px) {
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  footer .footer-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  footer .footer-column--social {
    padding-left: 0;
    border-left: 0;
  }

  footer .footer-contact-actions {
    flex-direction: column;
  }

  footer .footer-contact-cta,
  footer .footer-contact-ghost {
    width: 100%;
  }

  footer .footer-bottom {
    margin-top: 22px;
    padding-top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== FONDO BENIGNO CINEMATOGRÁFICO ===== */

/* Imagen base */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url('../img/benigno-logo.png') no-repeat center center;
  background-size: cover;

  filter: blur(50px) brightness(0.08) saturate(120%);
  transform: scale(1.15);

  z-index: -2;
  pointer-events: none;
}

/* Oscurecimiento elegante + profundidad */
body::after {
  content: "";
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at center,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0.85) 60%,
      rgba(0,0,0,0.98) 100%
    );

  z-index: -1;
  pointer-events: none;
}


/* ===== CARRUSEL MIXTO ===== */
.carrusel-mixto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #000;
  border-bottom: 3px solid #e60000;
  box-shadow: 0 0 80px rgba(230,0,0,0.25);
  
}

/* Lados */
.carrusel-lado {
  position: relative;
  width: 25%;
  height: 90%;
  overflow: hidden;
  border-radius: 10px;
}
.carrusel-lado img 
/* ===== IMÁGENES SIN RECORTES ===== */
.carrusel-lado img,
.carrusel-centro img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centra la imagen */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: none; /* evita cortes y deformaciones */
  background-color: #000; /* rellena fondo */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carrusel-lado img.active,
.carrusel-centro img.active {
  opacity: 1;
}

/* Centro */
.carrusel-centro {
  position: relative;
  width: 45%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.carrusel-centro img 
/* ===== IMÁGENES SIN RECORTES ===== */
.carrusel-lado img,
.carrusel-centro img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centra la imagen */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: none; /* evita cortes y deformaciones */
  background-color: #000; /* rellena fondo */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carrusel-lado img.active,
.carrusel-centro img.active {
  opacity: 1;
}

.carrusel-centro img.active {
  opacity: 1;
}

/* ===== FIX: mostrar imágenes completas en el carrusel (sin recortes) ===== */
/* Aplica a ambos carruseles usados (carousel-fade y carrusel-mixto) para asegurarnos */
.carousel-fade .slide,
.carrusel-mixto .carrusel-centro img,
.carrusel-mixto .carrusel-lado img {
  position: absolute;            /* posicionar en el centro del contenedor */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centrar exactamente */
  width: auto;                   /* usar tamaño natural */
  height: auto;
  max-width: 100%;               /* ajustar al contenedor sin recortar */
  max-height: 100%;
  object-fit: contain;           /* mostrar la imagen completa (sin recortes) */
  object-position: center center;
  background-color: transparent; /* evita fondo negro si no lo quieres */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

/* Mostrar la imagen activa */
.carousel-fade .slide.active,
.carrusel-mixto .carrusel-centro img.active,
.carrusel-mixto .carrusel-lado img.active {
  opacity: 1;
}


/* ===================== Productos ===================== */
.producto {
  position: relative; /* para que el botón se posicione sobre el producto */
  width: 200px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 15px;
  text-align: center;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}



/* ===== FRANJA PREMIUM OPCIONES ===== */
.menu-info{
  position: relative;
  display:flex;
  justify-content:center;
  gap:25px;
  padding:60px 20px;
  flex-wrap:wrap;
  overflow:hidden;

  /* rojo profundo base */
  background: linear-gradient(
    180deg,
    #2b0000,
    #8b0000,
    #2b0000
  );

  box-shadow: 0 10px 40px rgba(255,0,0,0.25);
}

/* luces suaves premium */
.menu-info::before{
  content:"";
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at 20% 50%, rgba(255,0,0,0.45), transparent 40%),
  radial-gradient(circle at 80% 50%, rgba(255,0,0,0.35), transparent 40%);

  filter:blur(60px);
  animation:luces-suaves 8s ease-in-out infinite alternate;
}

/* brillo superior elegante */
.menu-info::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;

  background:linear-gradient(90deg, transparent, #ff0000, transparent);
  box-shadow:0 0 15px #ff0000;
}

/* animación suave */
@keyframes luces-suaves{
  0%{ transform:translateX(-5%) scale(1); }
  100%{ transform:translateX(5%) scale(1.1); }
}


.btn-info{
  background:#111;
  color:white;
  padding:18px 35px;
  border-radius:50px;
  text-decoration:none;
  border:2px solid #e60000;
  font-size:1.1rem;
  transition:0.3s;
}

.btn-info:hover{
  background:#e60000;
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(230,0,0,0.6);
}




button,
.btn-info {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}


button::before,
.btn-info::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg,
    transparent,
    rgba(230,0,0,0.8),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}


button:hover::before,
.btn-info:hover::before {
  opacity: 1;
}



body {
  box-shadow:
    inset 0 0 200px rgba(0,0,0,0.9),
    inset 0 0 80px rgba(230,0,0,0.1);
}




body {
  animation: fadeInPage 1s ease;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.carrusel-mixto {
  box-shadow:
    0 0 120px rgba(230,0,0,0.25),
    inset 0 0 60px rgba(0,0,0,0.8);
}



.hero h2 {
  letter-spacing: 2px;
  text-shadow:
    0 0 20px rgba(230,0,0,0.6),
    0 0 40px rgba(230,0,0,0.4);
}



header {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230,0,0,0.4);
}



.particulas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230,0,0,0.15) 2px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(230,0,0,0.12) 2px, transparent 2px);
  animation: moverParticulas 60s linear infinite;
}

@keyframes moverParticulas {
  from { transform: translateY(0); }
  to { transform: translateY(-1000px); }
}





body::before {
  animation: respirarLogo 8s ease-in-out infinite;
}

@keyframes respirarLogo {
  0%,100% {
    transform: scale(1);
    filter: blur(20px);
  }
  50% {
    transform: scale(1.05);
    filter: blur(24px);
  }
}




body::after {
  animation: luzAmbiente 12s linear infinite;
}

@keyframes luzAmbiente {
  0% { background: radial-gradient(circle at 20% 30%, rgba(255,0,0,0.12), transparent 60%); }
  50% { background: radial-gradient(circle at 80% 70%, rgba(255,0,0,0.12), transparent 60%); }
  100% { background: radial-gradient(circle at 20% 30%, rgba(255,0,0,0.12), transparent 60%); }
}








button:hover,
.btn-info:hover {
  animation: pulsoRojo 1.2s infinite;
}

@keyframes pulsoRojo {
  0% { box-shadow: 0 0 0 0 rgba(230,0,0,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(230,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,0,0,0); }
}




section {
  opacity: 0;
  transform: translateY(60px);
  animation: aparecer 1s ease forwards;
}

section:nth-child(1){animation-delay:0.5s;}
section:nth-child(2){animation-delay:0.8s;}
section:nth-child(3){animation-delay:0.9s;}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


body{
  letter-spacing:0.4px;
}

h2,h3,h4{
  text-shadow:0 0 20px rgba(226, 6, 6, 0.25);
}


/* ===== LINEA DIVISORA DEL CARRUSEL ===== */
.carrusel-mixto{
  border-top: 2px solid #ff0000;
  box-shadow: 0 -2px 10px rgba(255,0,0,0.4);
}


#whatsapp-btn{
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 200px;
  height: 200px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: 0.3s;
}

#whatsapp-btn:hover{
  transform: scale(1.1);
}

#whatsapp-btn svg{
  width: 100px;
}


.producto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


.texto-vicio {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ff0000;

  /* efecto glow suave premium */
  text-shadow:
    0 0 10px rgba(255,0,0,0.4),
    0 0 20px rgba(255,0,0,0.2);

  /* animación suave */
  transition: 0.3s ease;
}

/* efecto hover pro */
.texto-vicio:hover {
  transform: scale(1.03);
  letter-spacing: 10px;
}



@media (max-width: 768px) {
  .texto-vicio {
    font-size: 50px;
    letter-spacing: 3px;
  }
}



.texto-vicio {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px;
  letter-spacing: 6px;
  text-transform: uppercase;

  background: linear-gradient(90deg, #ff0000, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.contenedor-bienvenida {
  display: flex;
  justify-content: center; /* centro horizontal */
  align-items: center;     /* centro vertical */
  text-align: center;
}



.texto-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.texto-track {
  display: inline-block;
  white-space: nowrap;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 8px;
  color: rgba(255, 0, 0, 0.08);
  animation: moverTexto 25s linear infinite;
}

/* Animación infinita */
@keyframes moverTexto {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



.texto-track {
  animation: moverTexto 40s linear infinite;
}

.texto-scroll:hover .texto-track {
  animation-play-state: paused;
}




/* ===== FLASH MESSAGES ===== */

.flash {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    animation: fadeOut 4s forwards;
}

.flash.success {
    background: #0f5132;
    color: #d1e7dd;
    border: 1px solid #198754;
}

.flash.error {
    background: #842029;
    color: #f8d7da;
    border: 1px solid #dc3545;
}

@keyframes fadeOut {
    0% {opacity:1;}
    70% {opacity:1;}
    100% {opacity:0; display:none;}
}



.oculto {
  display: none !important;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
