
/* Contenedor de la intro en pantalla completa */
.intro-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgb(0, 0, 0);
}

/* Video adaptado al contenedor */
.intro-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botón de saltar intro */
.skip-button {
  position: absolute;
   width: 6vw;
  height: 4vh;
  top: 5%;
  right: 5%;
  background-color: rgba(255, 136, 0, 0.425);
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 11px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1;
  transition: background-color 0.3s;
}

.skip-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
 
}

/* Logo centrado y animable */
.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  max-width: 500px;
  min-width: 370px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 3;
}

.show-logo {
  opacity: 1;
}

.hide-logo {
  opacity: 0;
}


/* Contenido principal */


.fade-out {
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .skip-button {
    font-size: 14px;
    padding: 8px 16px;
    top: 15px;
    right: 15px;
  }

  .intro-logo {
    width: 40vw;
  }
}

@media (max-width: 480px) {
  .skip-button {
    font-size: 13px;
    padding: 6px 14px;
  }

  .intro-logo {
    width: 50vw;
  }
}


@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");


.container {

 
  align-items: center;
  display:contents;
  justify-content: center;
  height: 100vh;
  z-index: 5;
  position: relative;
}

.logo {
 
  position:relative;
padding-top: 8%;
  margin-left: 35%;
}


.menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  grid-area: 1/1/2/2;
  position: relative;
}




/* ===== NAVBAR PRINCIPAL ===== */
.main-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1900px;
  height: 80px;
  background: rgba(0, 0, 0, 0.322);
  border: 1px solid #ffe600;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
z-index: 10;
  pointer-events: auto;
  transition: all 0.3s ease;
}

/* ===== CONTENEDOR INTERNO ===== */
.nav-inner {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
}

/* ===== ÁREA DE MARCA ===== */
.brand-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 2px rgba(255,215,0,0.4));
}

.mi-marca {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.mi-marca:hover {
  color: rgb(255, 174, 0); /* Cambia el color a rojo */
  text-decoration: none; /* Añade un subrayado */
  font-weight: 400;
}



/* ===== MENÚ DE ENLACES ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: rgb(255, 196, 0);
  padding: 8px 6px;
  border-radius: 6px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  display: inline-block;
}

.nav-links a:hover,
.nav-links a:focus {
   color: rgba(0, 0, 0, 0.85);
  border: 1px solid rgb(255, 166, 0);
  background: rgba(255, 196, 0, 0.479);
  outline: none;
  transform: translateY(-1px);
}


/* ===== BOTONES ===== */
.auth {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

/* ---- BOTÓN: REGÍSTRATE ---- */
.auth-btn {
  background: #ffc400;
  color: #000;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transform-origin: center;
}

.auth-btn:hover {
  background: #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
  color: #ff9900;
  font-weight: 500;
}

.auth-btn:active {
  background: #e6c300;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
  transform: scale(0.97);
}
/* ---- BOTÓN: SUBMIT ---- */
.auth-submt {
  background:#000;
  color: #ffc400;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(247, 189, 1, 0.3);
  transform-origin: center;
}

.auth-submt:hover {
  background: #3d3d3d;
  box-shadow: 0 0 10px rgba(247, 149, 1, 0.7);
  transform: scale(1.05);
  color: #fff;
  font-weight: 500;
}

.auth-submt:active {
  background: #000;
  box-shadow: inset 0 0 6px rgba(247, 189, 1, 0.5);
  transform: scale(0.97);
}

/* ---- BOTÓN: INICIAR SESIÓN ---- */
.btn.ghost {
  background: transparent;
  color: #FFD700;
  border: 1px solid #ffbb00;
  font-weight: 500;
  transform-origin: center;
}

.btn.ghost:hover {
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}

.btn.ghost:active {
  background: #e6c300;
  color: #000;
  transform: scale(0.96);
  box-shadow: inset 0 0 5px rgba(0,0,0,0.4);
}

/* ===== BOTÓN MENÚ (MÓVIL) ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffbb00;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== EFECTO X ===== */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ===== ACCESIBILIDAD ===== */
a:focus, .btn:focus {
  box-shadow: 0 0 0 3px rgba(255,215,0,0.3);
}

/* ===== AJUSTE ANCLAS ===== */
:target::before {
  content: "";
  display: block;
  height: 60px;
  margin-top: -60px;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 1024px) {
  .main-nav {
    width: 96%;
    height: auto;
    padding: 10px 0;
  }
  .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links,
  .auth {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    border-top: 1px solid #ffbb00;
  }

  .nav-links.show,
  .auth.show {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px;
  }

  .auth-btn,
  .btn.ghost {
    width: 80%;
    text-align: center;
  }
}

/* Animación suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}






  /* inicia Estilos para la sección de texto */

  
#mi-seccion-form {
  /* Estilos para la sección del formulario de registro y logueo */
  position: relative;
  min-height: auto;
  margin: 20px auto;
  padding: 10px;
  padding-top: 7%;
  width: 30%; 
  height: auto; 
}
  
#mi-seccion {
  /* Estilos para la sección */
  position: relative;
  min-height: auto;
  margin: 20px auto;
  padding: 10px;
  padding-top: 0%;
  width: 60%; 
  height: 15%; 
}

.bee-logo{
padding-top: 7%;
font-family: "Arial", Helvetica, sans-serif;
font-size: 25px;
font-weight: 400;
text-align: center;
color: #000000;
}

.bee{
    width: 75px;
  height: 75px;
}

#mi-seccion h2 {
  /* Estilos para el título */
padding-top: 7%;
  text-align: center;
  font-size: 48px;
	font-weight: 600;
	letter-spacing: -0.02em;
	position:relative;
	top: 10px;
	font-family: "Arial", Arial, sans-serif;
  -webkit-background-clip: text;
	background-clip: text;
	color: #000000;
}

#mi-seccion p {
  /* Estilos para el párrafo */
  padding-top: 7%;
  padding-bottom: 10%;
  font-size: 21px;
  line-height: 1.2;
 text-align: center;
  color: #000000;
}

.strong{
  font-weight: bold;
}


#mi-seccion div {
  /* Estilos para el div */

  padding: 10px;

}


/* fin Estilos para la sección de texto */


* {
	
	box-sizing: border-box;
	font-family: "Arial", Helvetica, sans-serif;
}




/*DIRECTORIO Y MI TARJETA*/


/*=====================================
=           ESTILOS GENERALES           =
=====================================*/

body {

  font-family: Arial, sans-serif;
  margin: 0;
  background-image: url(../img/fondo.jpg);
  background-repeat: no-repeat;
  background-size: cover; /* Se ajusta al ancho completo */
  color: #242424;
  background-attachment: fixed;


 
}

/* Separación entre secciones */
section, main {
  margin-bottom: 5%;
}

/* Botones generales (para ambas secciones) */
.btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}

.btn:hover {
  opacity: 0.9;
}

/* Botones específicos (Mi Card) */
.btn-facebook { background-color: #3b5998; color: #fff; }
.btn-facebook:hover { background-color: #2d4373; }

.btn-llamar { background-color: #28a745; color: #fff; }
.btn-llamar:hover { background-color: #1e7e34; }

.btn-whatsapp { background-color: #25d366; color: #fff; }
.btn-whatsapp:hover { background-color: #1da851; }

.btn-email { background-color: #ff9800; color: #fff; }
.btn-email:hover { background-color: #e68900; }

.btn-instagram { background-color: #e4405f; color: #fff; }
.btn-instagram:hover { background-color: #c32aa3; }

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

.btn-like { background-color: #007bff; color: #fff; }
.btn-like:hover { background-color: #0056b3; }

.btn-share { background-color: #6c757d; color: #fff; }
.btn-share:hover { background-color: #5a6268; }

.btn-outline {
  background: transparent;
  color: #ffb400;
  border: 1px solid #ffb400;
}

.btn-outline:hover {
  background: #ffb400;
  color: #000000;
}
.icolnk {
  background: transparent;
  color: #fff;
}

.icolnk:hover {
  color: #000000;
}

/*=====================================
=           SECCION DIRECTORIO          =
=====================================*/

.wrap {
  
  max-width: 1220px;
  margin: auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.199);
  border-radius: 12px;

  padding-bottom: 20px;
}

/* Encabezado con buscador */
.vitrina-header {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #000000, #000000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  letter-spacing: 1px;
  transition: background 0.5s ease;
  cursor: default;
}

.site-title:hover {
  background: linear-gradient(45deg, #ffe680, #ffcc33, #ffb400);
  /*-webkit-background-clip: text;*/
  -webkit-text-fill-color: transparent;
}

.site-subtitle {
  font-size: 1.5rem;
  color: #000000;
  margin: 10px 0 30px 0;
  font-style: normal;
  text-align: left;
}

/* Buscador */
#buscador {
  padding: 8px 15px;
  border-radius: 20px;
  border: 2px solid #ffb400;
  outline: none;
  font-size: 1rem;
  width: 220px;
  background-color: rgba(255 255 255 / 0.9);
  transition: box-shadow 0.3s ease;
}

#buscador:focus {
  border-color: #e09b00;
  box-shadow: 0 0 15px #ffb400;
}

/* Contenedor de tarjetas */
.vitrina-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Tarjetas como enlaces */
.tarjeta {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.3s ease;
  cursor: pointer;
  min-height: 400px;
}

.tarjeta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  border-color: #ffcc33;
}

/* Media (imagen/video) */
.vitrina .media img,
.vitrina .media video {
  width: 100%;
  display: block;
  flex-shrink: 0;
  height: 200px;
  object-fit: cover;
}

/* Contenido interno */
.card-body {
  padding: 15px;
  flex-grow: 1;
}

.card-title {
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.card-desc {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* Footer */
.card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 15px;
  background: #fafafa;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
}

.meta {
  color: #777;
}

/* Responsive */
@media (max-width: 480px) {
  .vitrina-header {
    flex-direction: column;
    align-items: stretch;
  }
  #buscador {
    width: 100%;
  }
  .site-title {
    text-align: center;
  }
  .site-subtitle {
    text-align: center;
  }
}

/*=====================================
=          SECCION MI CARD              =
=====================================*/

.wall {
  position: relative;
  max-width: 998px;
  margin: auto;
  padding: 20px;
  padding-top: 3%;
  background-color: rgba(0, 0, 0, 0.199);
  border-radius: 12px;


}

.encabezado {
  position: relative;
  padding: 0%;
  margin-left: 32%;
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #000000;
}

.back {
  text-decoration: none;
  color: #252525;
}

.back:hover {
  color: #000000;
}

/* CONTENEDOR PRINCIPAL */
.contenedor-principal {
  position: relative;
  width: 960px;
  height: 550px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.39);
  margin-top: 20px;
  margin-right: 2%;
}

.bloque {
  width: 100%;
  height: calc(50% - 2.5px);
}

.bloque-superior {
  position: relative;
  margin-bottom: 5px;
}

.tu_logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 60px;
  z-index: 2;
}

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

.bloque-inferior {
  background-color: #d3d3d3;
  text-align: center;
  padding: 60px 20px 20px;
  box-sizing: border-box;
}

.bloque-inferior h2 {
  margin: 10px 0;
  font-size: 1.8rem;
  color: #07b601;
}

.bloque-inferior h3 {
  margin: 5px 0;
  font-size: 1.2rem;
  color: #000000;
}

.bloque-inferior p {
  margin: 10px 0 20px;
  font-size: 1rem;
  color: #000000;
}

/* Botones específicos Mi Card */
.botones {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* FOTO CENTRAL */
.foto-marco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  z-index: 5;
}

.foto-usuario img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  border: 4px solid #fff;
}

/* SECCIÓN EXTRA */
.extra {
  margin-left: 2%;
  margin-top: 30px;
  text-align: center;
  max-width: 960px;
}

.extra h2 {
  padding-top: 20px;
  margin-top: 20px;
  font-size: 1.6rem;
  color: #000000;
}

.extra h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #000000;
}

.extra p {
  margin-top: 10px;
  color: #000000;
}

.publicidad {
  width: 73vh;
  height: auto;
  margin: 20px auto;
  background-color: #00000080;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-weight: bold;
  position: relative;
  padding: 10px;

}

.qr-area {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed #999;
  border-radius: 8px;
  gap: 10px;
}

.final-text {
  font-size: 1.3rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #000;
}

/*TERMINA DIRECTORIO Y MI TARJETA*/




section {
    padding: 20px 0;
    min-height: 80vh;
}

.pie{
padding-top: 0%;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-footer{
  position: relative;

}

.footer-content{
  position: relative;
  padding: 85px 0px 80px 0px;
}
.footer-content:before{
  position: absolute;
  content: '';
  background: url(../img/world-map.png);
  width: 744px;
  height: 365px;
  top: 25px;
  right: 10%;
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: float-bob;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.footer-content .logo-widget{
  position: relative;
  margin-top: -10px;

}
.footer-content .logo-widget .footer-social li{
  position: relative;
  display: inline-block;
  margin-right: 13px;
    margin-left: 35%;
  margin-right: -35%;
  

}
.footer-content .logo-widget .footer-social li:last-child{
  margin-right: 0px;
}
.footer-content .logo-widget .footer-social li a{
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #000000;
  color: #ffbb00;
  text-align: center;
  border-radius: 50%;

}
.footer-content .logo-widget .footer-social li a:hover{
  color: #ffffff;
  background: #ff9100;

}
.footer-content .logo-widget .logo-box{
  margin-bottom: 25px;
}
.footer-content .logo-widget .text p{
  color: #000000;
  margin-bottom: 32px;
   margin-left: 35%;
  margin-right: -35%;
  text-align: justify
}
.footer-content .footer-title{
  position: relative;
  font-size: 24px;
  line-height: 35px;
  font-family: 'Playfair Display', serif;
  color: #000000;
  font-weight: 700;
  margin-bottom: 27px;
  text-align: center;
}
.footer-content .service-widget .list li{
  display: block;
  margin-bottom: 10px;
  text-align: left;
}
.footer-content .service-widget .list li a{
  position: relative;
  display: inline-block;
  color: #000000;
  margin-left: 100px;
  margin-right: 10%;
}
.footer-content .service-widget .list li a:hover{
  color: #727272;
}
.footer-content .contact-widget p{
  color: #000000;
  margin-bottom: 10px;
  text-align: right;
  font-size: 15px;
}
.footer-content .contact-widget{
  margin-left: -30px;
  margin-right: 45%;
  text-align: right;
}
.footer-content .contact-widget .footer-title{
  margin-bottom: 29px;
}

/** footer-bottom **/

.footer-bottom{
  position: relative;
  background: #000000a4;
  padding: 15px 0px 10px 0px;
}
.footer-bottom .copyright,
.footer-bottom .copyright a,
.footer-bottom .footer-nav li a{
  position: relative;
  color: #ffae00;
text-align: center;
}
.footer-bottom .copyright a:hover,
.footer-bottom .footer-nav li a:hover{
  color: #ffc400;
}
.footer-bottom .footer-nav{
  position: relative;
  text-align: center;
  margin-right: 5%;


}
.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-left: 29px;
}
.footer-bottom .footer-nav li:first-child{
  margin-left: 0px;
}
.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background: #ffffff;
  width: 1px;
  height: 14px;
  top: 7px;
  left: -18px;
}
.footer-bottom .footer-nav li:first-child:before{
  display: none;
}
.logo-box img {
    max-width: 600px;
    margin-left: 35%;
}


.cool{

position: relative;

  margin: 20px auto;
  padding: 10px;
 padding-top: 0%;

  align-items: center;
  text-align: justify;
   width: 60%; 
  height: 15%; 


}

.cool h2{

  text-align: center;
  font-size: 2.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	position:relative;
 padding-top: 0%;
	font-family: "Arial", Arial, sans-serif;
  -webkit-background-clip: text;
	background-clip: text;
	color: #000000;
}

 .cool .bee-logo{
          
 padding-top: 3%;
font-family: "Arial", Helvetica, sans-serif;
font-size: 25px;
font-weight: 400;
text-align: center;
color: #000000;
}
          
.cool .bee{
  width: 75px;
  height: 75px;
  
 }

 .cool p{
  /* Estilos para el párrafo */
 padding-top: 3%;
  font-size: 21px;
  line-height: 1.2;
 text-align: center;
  color: #000000;
}

/* blog */

    header {
      position: relative;
      text-align: center;
      color: white;
      overflow: hidden;
    }

    .banner {
      width: 100%;
      height: 400px;
      background: url('../img/b-400.jpg') center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: zoomIn 10s ease-in-out infinite alternate;
    }

    .banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.404), rgba(255,0,0,0.7));
    }

    .banner-content {
      position: relative;
      color: white;
      text-align: center;
      z-index: 1;
      animation: fadeInUp 1.5s ease;
    }

    .banner-content h1 {
      margin: 0;
      font-size: 2.8rem;
      animation: slideIn 1.5s ease;
    }

    .banner-content p {
      font-size: 1.2rem;
      margin-top: 0.5rem;
      animation: fadeIn 2s ease;
    }

    .principal {
      max-width: 900px;

      margin: 2.5rem auto;
      padding: 2rem;
      background: rgba(0, 0, 0, 0.26);
      border-radius: 16px;
      box-shadow: 0 6px 14px rgba(0,0,0,0.1);
      animation: fadeIn 2s ease;
    }

   .textos {
      margin-bottom: 3rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

   

    .textos h2 {
      color: #000000;
      margin-bottom: 1rem;
      position: relative;
    }

    .textos h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 50px;
      height: 3px;
      background: #ff0000;
      animation: expandLine 1.2s ease;
    }

    .textos p {
      margin: 1rem 0;
      font-size: 1.1rem;
      color: #ffffff;
      font-family:"Arial", Helvetica, sans-serif;
      font-weight: 300;
    }

    .content-img {
      width: 100%;
      border-radius: 12px;
      margin: 1.5rem 0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      transition: transform 0.4s ease;
    }

    

    .highlight {
      color: #000000;
      font-weight: bold;
    }


#Tarjeta-1{
 position: relative;

padding-top: 8%;
padding-bottom: 8%;
}
 
   

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

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

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes expandLine {
      from { width: 0; }
      to { width: 50px; }
    }

    @keyframes zoomIn {
      from { transform: scale(1); }
      to { transform: scale(1.1); }
    }

    /* termina blog  */


    