* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Poppins";
}

:root {
  --bg-color: #f5f4f4;
  --second-bg-color: #101010;
  --text-color: rgb(44, 43, 43);
  --main-color: #007bc2;
  --box-color: #007bc280;
}

html {
  font-size: 60%;
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
   font-family: 'Poppins', 'Bruno Ace SC', 'Orbitron', Arial, sans-serif;
}

/* ---------------------- SECCION 0 - HEADER,LOGO-NAV- ---------------------- */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 4rem 15%;
  background: rgba(243, 243, 245, 0.705);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 2px solid rgba(97, 98, 99, 0.308);
}

#menu-icon {
  font-size: 3.5rem;
  color: var(--text-color);
  display: none;
}

 .logo {
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  font-family: "Bruno Ace SC", sans-serif;
  letter-spacing: 1.5px;
}

.logo:hover {
  transform: scale(1.1);
}

span {
  background: linear-gradient(270deg, #08b4df 10%, #0e25a7 100%);
  background-clip: text;
  color: transparent;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 600;
}

.navbar a {
  font-size: 1.7rem;
  color: var(--text-color);
  margin-left: 3rem;
  font-weight: 400;
  transition: 0.3s ease-in-out;
  border-right: 2px solid rgba(31, 30, 30, 0.459);
  padding: 0.4rem 1.4rem;
  letter-spacing: 1.5px;
}

.navbar a:hover {
  background-color: var(--main-color);
  color: whitesmoke;
 /* border-right: 3px solid var(--main-color); */
}



/* -------------------------------------- SECCION 1 - HOME ------------------------------------*/

section {
  min-height: 100vh;
  padding: 10rem 15%;
}

.home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
}

.home-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.home-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  line-height: 1;
}

.home-content h3 {
  margin: 1rem 0;
  font-size: 2.7rem;
  font-weight: 500;
}

.home-content p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
}

/* ------- IMG CIRCLE ---------*/

.home-img img {
  width: 100%;               /* Ocupa su contenedor */
  max-width: 600px;          /* No más que 600px */
  height: auto;
  border-radius: 50%;
  box-shadow: none;          /* ⚠️ Evita esto al inicio */
  transition: box-shadow 0.4s ease-in-out;
  z-index: 3;
  position: relative;
}

.home-img img:hover {
  box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color),
    0 0 100px var(--main-color);
}

/* --------SOCIAL ICONS ---------*/

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 1rem;
  background: transparent;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 0.5rem;
  transition: 0.3s ease-in-out;
}

.social-icons a:hover {
  color: whitesmoke;
  background-color: var(--main-color);
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 0 25px var(--main-color);
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  letter-spacing: 2.5px;
}

.btn {
  display: inline-block;
  padding: 0.7rem 5rem;
  background-color: var(--main-color);
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 3rem;
  font-size: 1.8rem;
  color: #f1f1f1;
  border: 2px solid transparent;
  font-weight: 400;
  transition: 0.3s ease-in-out;
  font-family: "Bruno Ace SC", sans-serif;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color);
}

/* -----------------  boton seccion ABOUT - down arrow! ------*/
.btn3 {
  display: inline-block;
  padding: 0.7rem 25rem;
  background-color: #d7d8db75;
  box-shadow: 0 0 5px transparent;

  font-size: 2rem;
  color: #464343;
  border: 2px solid transparent;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  font-family: "Bruno Ace SC", sans-serif;
}
.btn3:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px #2347a8, 0 0 10px gray;
  color: #1e3a86;
}
/* -----------------  boton seccion ABOUT - down arrow! ------*/

.btn-group a:nth-of-type(2) {
  background-color: #f1f1f1;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  box-shadow: 0 0 25px transparent;
}

.btn-group a:nth-of-type(2):hover {
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
  color: #e5e5ebce;
}


/* ---------------------------- SECCION 2 - ABOUT  ------------------------------------------*/

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  background: var(--bg-color);
  padding-top: 0;
  padding-bottom: 0;
}

.about-img img {
  width: 23vw;
  box-shadow: 0 0 25px var(--main-color);
  transition: 0.4s ease-in-out;
  border-radius: 50%;
}

.about-img img:hover {
  box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color),
    0 0 100px var(--main-color);
}

.about-content {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
 /* border: 1px dashed blue; */
  flex: 1;
}

.about-content h2 {
  font-size: 5rem;
  text-align: left;
  font-family: "Bruno Ace SC", sans-serif;
  letter-spacing: 1rem;
  font-weight: 500;
}

.about-content h2 .cat {
  font-size: 5rem;
  font-weight: 500;
}

.about-content p {
  width: 100%;
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 0 auto;
  line-height: 1.6;
 /* border: 1px dashed greenyellow;*/
}



 .about-content {
    width: 100%; /* ocupa todo el ancho */
    max-width: none; /* evita limitaciones */
    padding: 0 0.5rem; /* espacio interno sin afectar el ancho */
  }

  .about-content p {
    width: 100%;
  }


.about-content .btn {
  margin: 3rem 0;
}

/* -------------- SECCION 2.5 - ABOUT 2.5 -----------------------*/
.about0 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  background: var(--bg-color);
}

.about0-img img {
  width: 25vw;
  box-shadow: 0 0 25px var(--main-color);
  transition: 0.4s ease-in-out;
  border-radius: 50%;
}

.about0 .contentBx {
  max-width: 50%;
  width: 50%;
  text-align: left;
  padding-left: 40px;
}

.contentBx h2 {
  font-size: 5rem;
  text-align: left;
  font-family: "Bruno Ace SC", sans-serif;
  letter-spacing: 1rem;
  font-weight: 500;
}

.contentBx p {
  font-size: 1.8rem;
  color: var(--text-color);
}

.acontentBx .btn {
  margin: 3rem 0;
}

section.about2:nth-of-type(2) {
  background-color: #07376da6;
}

section.about2:nth-of-type(2) h2,
section.about2:nth-of-type(2) p,
section.about2:nth-of-type(2) i {
  color: #fff;
}

/* ------------ABOUT 1 ------------*/

.about1 {
  min-height: 500px !important;
  position: relative;
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: #d5d9e477;
}

.about1 .contentBx {
  max-width: 50%;
  width: 50%;
  text-align: left;
  padding-right: 40px;
}

.about-content h2 {
  margin-top: 70px; /* o lo que necesites */
  color: #333; /* prueba con color para confirmar que lo esté tomando */
}

.about2 {
  min-height: 900px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  background: var(--bg-color);
  margin-top: -5rem; /* Ajustá según lo que necesites */
}

.about2 .contentBx {
  max-width: 50%;
  width: 50%;
  text-align: left;
  padding-left: 40px;
}

.about2 .imgBx {
  position: relative;
  min-width: 50%;
  width: 50%;
  min-height: 500px;
}

.about2 .fitBg {
  border-radius: 50%;
  width: 27vw;
  margin-right: 15px; /* esto crea espacio entre la imagen y el texto */
}

hr {
  border: none; /* Quita el borde por defecto */
  height: 1.3px; /* Altura del "línea" */
  background-color: #8e9ab157; /* Cambia el color */
  margin: 20px 0; /* Espacio arriba y abajo */
  width: 100%;
}

.titleText {
  font-weight: 600;
  color: #111;
  font-size: 5rem;
  margin-bottom: 10px;
}

.title-text {
  color: #111;
  font-size: 2em;
}

.about1 .imgBx {
  position: relative;
  min-width: 50%;
  width: 50%;
  min-height: 500px;
}

.about1 .fitBg {
  border-radius: 50%;
  width: 27vw;
}

.btn2 {
  position: relative;
  display: inline-block;
  margin-top: 35px;
  padding: 15px 40px;
  background: #fff;
  border: 0.8px solid #111;
  color: #333;
  text-decoration: none;
  transition: 0.5s;
  font-size: 2rem;
}

.btn2:hover {
  background-color: var(--main-color);
  border: none;
  color: #fff;
}
/* ---------- scroll - effect color  ------------*/

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    rgba(181, 196, 196, 0.62) 0%,
    rgba(155, 164, 171, 0.44) 50%
  );
}

::-webkit-scrollbar-track {
  background-color: var(--bg-color);
}

.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 0;
  background-color: #b0bac262;
  color: rgb(37, 36, 36);
  font-weight: 600;
  padding: 5px 13px;
  font-size: 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(89, 89, 94, 0.171);
}

.scroll-up:hover {
  background-color: #166eb6d0;
  color: #fff;
  transform: scale(1.1);
}

/* ---------------------------- SECCION 3 - SERVICES  ------------------------------------------*/

.heading {
  text-align: center;
  font-size: 5rem;
  margin: 5rem 0;
  letter-spacing: 0.8rem;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 500;
  text-align: center;
}

.services {
  background-color: var(--bg-color);
  color: black;
}

.services h2 {
  color: var(--text-color);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 2.5rem;
}

.service-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(img/servicehover7.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 555px;
  border-radius: 3rem;
  cursor: pointer;
  border: 1px solid var(--box-color);
  transition: 0.4s ease-in-out;
  opacity: 1;
  box-shadow: 0 0 5px var(--main-color);
}

.service-box:hover {
  background-image: url(img/servicehover5.jpg);
  color: black;
  transform: scale(1.03);
  border: 1px solid rgba(255, 255, 255, 0.582);
}
.services-container .service-box:last-child {
  background-image: url(img/hosting.jpg); /* o el color que prefieras */
  /* puedes agregar más estilos como border, box-shadow, etc. */
  color: #fff;
}
.services-container .service-box:last-child:hover {
  /* fondo cuando pasa el mouse */
  transform: scale(1.05); /* efecto de agrandar ligeramente el div */
  background: none;
}
.services-container .service-box:last-child h4 {
  font-size: 2.8rem; /* o el tamaño que prefieras */
}



.texto-real {
  position: relative;
  z-index: 1;
}

.service-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 5rem;
}

.service-info h4 {
  font-size: 4rem;
  margin: 2rem 0;
  font-weight: 500;
}

.service-info p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}

.service-info i {
  font-size: 8rem;
}
/* ---------------------------- SECCION 4 - PORTFOLIO  ------------------------------------------*/

.projects {
  background-color: var(--bg-color);
}

.projects-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  place-items: center;
  gap: 3rem;
  row-gap: 5rem;
}

.project-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-color);
  border: 1px solid var(--main-color);
  border-radius: 3rem;
  gap: 2rem;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 3px var(--main-color);
  transition: 0.3s ease;
  height: 500px;
}

.project-card:hover {
  box-shadow: 0 0 5px var(--main-color), 0 0 30px var(--main-color);
  transform: scale(1.02);
}

.project-card img {
  max-width: 300px;
  border-radius: 2em;
  object-fit: cover;
}

.project-card h3 {
  font-size: 3rem;
  font-weight: 500;
}

.project-card p {
  font-size: 1.6rem;
}

.projects h2 {
  font-size: 5rem;
  text-align: center;
  font-family: "Bruno Ace SC", sans-serif;
  letter-spacing: 1rem;
  font-weight: 500;
}

/* ---------------------------- SECCION 4 - BLOG -----------------------------------------*/
.parrafo-resumen {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limita a 3 líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.titulo-blog {
  white-space: nowrap; /* Fuerza una sola línea */
  overflow: hidden; /* Oculta lo que se pasa del contenedor */
  text-overflow: ellipsis; /* Muestra "..." si el texto es largo */
  max-width: 100%; /* Asegura que no crezca fuera del card */
  display: block; /* Asegura el comportamiento en bloque */
  font-size: 1.2rem; /* Ajusta al tamaño que necesites */
}
/* ---------------------------- SECCION 5 - CONTACT -----------------------------------------*/

.contact {
  background-color: var(--bg-color);
}

.contact h2 {
  margin-bottom: 3rem;
  color: var(--text-color);
}

.contact form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 5rem 0;
  text-align: center;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 2.5rem;
  font-size: 1.8rem;
  color: var(--text-color);
  background-color: var(--bg-color);
  border-radius: 2rem;
  border: 2px solid var(--main-color);
  margin: 1.5rem 0;
  resize: none;
}

/* ---------------------------- SECCION 4 - FOOTER -----------------------------------------*/

.footer {
  background-color: var(--second-bg-color);
  padding: 50px;
}

.footer .social-icons {
  text-align: center;
}

.footer ul {
  text-align: center;
  font-size: 1.8rem;
}

.footer ul li {
  display: inline-block;
  margin-left: 20px;
}

.footer ul li a {
  color: white;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
}

.footer ul li a:hover {
  border-bottom: 3px solid var(--main-color);
}

.footer .copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: white;
}

/* ---------------------------- SECCION MEDIA - @ MEDIA -----------------------------------------*/

@media (max-width: 1285px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 50%;
    padding: 1rem 3rem;
    background: rgba(224, 224, 224, 0.842);
    border-bottom-left-radius: 2rem;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    display: none;
  }

  .navbar a {
    display: block;
    font-size: 1.7rem;
    margin: 3rem 0;
    color: rgb(43, 41, 41);
    font-family: "Bruno Ace SC", sans-serif;
    border-right: none;
  }

  .navbar.active {
    display: block;
  }

  .gradient-btn {
    display: none;
  }

  .home {
    flex-direction: column-reverse;
    margin: 5rem 0;
    gap: 5rem;
  }

  .home-content {
    align-items: center;
    text-align: center;
  }

  .home-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
  }

  .home-content h3 {
    margin: 3rem 0;
    font-size: 2.1rem;
    font-weight: 500;
  }

  .home-img img {
    width: 45vw;
  }
  /*------------------00000000*/
  .about {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about h2 {
    text-align: center;
    margin: 2rem 0;
    font-size: 2.8rem;
  }

  .about img {
    width: 45vw;
  }

  .about2 {
    flex-direction: column-reverse;
    text-align: center;
    scroll-margin-top: 100px;
  }
  .about2 img {
    width: 45vw;
  }

  section.about2 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  /* Texto arriba */
  section.about2:nth-of-type(1) .about-content,
  section.about2:nth-of-type(2) .about-content,
  section.about2:nth-of-type(3) .about-content {
    order: 1;
  }

  /* Imagen abajo */
  section.about2:nth-of-type(1) .about-img,
  section.about2:nth-of-type(2) .about-img,
  section.about2:nth-of-type(3) .about-img {
    order: 2;
  }

  .contact form {
    flex-direction: column;
  }

  .service-box {
    height: 500px;
  }
  .heading {
    font-size: 3rem;
  }
  .service-info h4 {
    font-size: 2.7rem;
  }

  .btn2 {
    margin-bottom: 30px;
  }

  .about-content .btn {
    margin-bottom: -25px;
  }

  .about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 0.7rem;
  }

  .small-img {
    height: 250px;
    width: 400px;
  }

  .projects .heading {
    font-size: 3rem;
  }

  .small-img {
    height: 180px;
    width: 280px;
  }
  .hero h1 {
    margin-top: 75px;
    font-size: 3.5rem !important; /* Fondo oscuro semitransparente para que el texto se vea */
    color: #2c2a2ae8;
  }
  .texto-lateral h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 1080px) {
  .hosting {
    font-size: 2rem !important;
  }
  a.btn-promo {
    font-size: 12px; /* Reduce el tamaño del texto del botón */
    padding: 8px 12px; /* Ajusta el tamaño del botón */
    /* También puedes ajustar border-radius, margin, etc. */
  }
}

@media (max-width: 530px) {
  .hosting {
    font-size: 2rem !important;
  }
  a.btn-promo {
    font-size: 12px; /* Reduce el tamaño del texto del botón */
    padding: 8px 12px; /* Ajusta el tamaño del botón */
    /* También puedes ajustar border-radius, margin, etc. */
  }
}

@media screen and (max-width: 480px) {
  section {
    padding: 3rem 1rem; /* reduce los márgenes laterales */
  } 
  
  .header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      padding: 2rem 5%;
      z-index: 1000;
    }
  
  .logo {
  font-size: 2.2rem;
  color: var(--text-color);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3 ease-in-out;
  font-family: "Bruno Ace SC", sans-serif;
  letter-spacing: 1.5px;
}
 

 .seccion-img-texto {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }

  .seccion-img-texto img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .texto-lateral {
    width: 100% !important;
  }
  
  .banna {
      size: 8px !important;
      
  }

}

@media screen and (max-width: 375px) {
    .header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      padding: 2rem 15%;
      z-index: 1000;
    } 
    
     .project-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 450px;
  }
    
    
    .home-content h1 {
      font-size: 2.5rem !important;
    }
    .projects-grid {
      grid-template-columns: 1fr;
    }
  }

/*-------------------------------------------END media---------------------------*/

/*  Particles Effect on Backgound with JS     */

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  /* Detrás del contenido */
  pointer-events: none;
}


/* -----BLOG 1--------------*/
.hero2 {
  position: relative;
  height: 55vh; /* 50% del alto de la pantalla */
  background-image: url(img/blog9.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1d1a1a;
  text-align: center;
}

.hero2 h1 {
  background-color: #8ebad357;  /* Fondo oscuro semitransparente para que el texto se vea */
  font-size: 5em;
  padding: 10px 20px;
  border-radius: 60px;
  font-family: "Bruno Ace SC", sans-serif;
}


/*----*/

.hero {
  position: relative;
  height: 55vh; /* 50% del alto de la pantalla */
  background-image: url("img/blog6.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1d1a1a;
  text-align: center;
}
.hero .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #eb8c20e7;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero h1 {
  background-color: #8ebad357;
  font-size: 5em; /* Fondo oscuro semitransparente para que el texto se vea */
  padding: 10px 20px;
  border-radius: 60px;
  font-family: "Bruno Ace SC", sans-serif;
}

.contenido {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.seccion-img-texto {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2rem;
  flex-wrap: wrap; /* Opcional, si necesitas que sea responsive */
}

.seccion-img-texto img {
  max-width: 48%;
  height: auto;
}

.seccion-img-texto .texto-lateral {
  flex: 1;
  min-width: 48%;
}


.texto-lateral h2 {
  margin-top: 0;
  font-size: 3rem;
  font-family: "Bruno Ace SC", sans-serif;
  text-transform: uppercase;
}
.texto-lateral p {
  font-size: 1.8rem;
}
.contenido p {
  font-size: 1.8rem;
}

.seccion-img-texto.imagen-derecha {
  flex-direction: row-reverse !important;
}

/* Blue circle BLOG1 -- */

.seccion-img-texto .texto-lateral ul {
  list-style-type: none;
  padding-left: 0;
}

.seccion-img-texto .texto-lateral ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.seccion-img-texto .texto-lateral ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; /* Tamaño del círculo */
  height: 10px;
  border-radius: 50%; /* Hace el círculo */
  background-color: #1e6abbee; /* Color del círculo */
}

/* banner after all content  */

.banna {
  background-image: url(img/banna0.jpg);
  background-color: rgba(11, 11, 63, 0.678);
  font-size: 12px !important;
  padding: 8px 8px;
  color: blue;
  line-height: 30px;
  border-radius: 20px;
}


/* Recursos SEO */
.recursos-seo {
  font-family: "poppins";
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.recursos-seo p {
  font-weight: 600;
  margin-bottom: 15px;
}

.recursos-seo ul {
  list-style: none;
  padding-left: 0;
}

.recursos-seo li {
  margin-bottom: 25px;
  background-color: #fff;
  border-left: 4px solid #4caf50;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.recursos-seo a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}

.recursos-seo a:hover {
  text-decoration: underline;
}

.project-card.wait {
  background-color: white;
  background-size: cover; /* Para que cubra todo el contenedor */
  background-position: center; /* Centrado */
  background-repeat: no-repeat;
  color: black; /* Opcional, mejora contraste si fondo es oscuro */
  padding: 20px; /* Espaciado interno */
  border-radius: 25px; /* Opcional, esquinas redondeadas */
}
.project-card.wait p {
  font-size: 20px;
  color: rgba(119, 120, 126, 0.747);
}

/*-------------ABOUT ENLACE DE HOSTINGER 20% -----------------*/

.promo {
  font-family: sans-serif;
  font-size: 2px;
  padding: 4px 16px;
  border-left: 4px solid #f3f2f259;
  margin: 20px 0;
}

.promo a {
  color: red !important;
  font-weight: 300;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background-color: rgba(241, 236, 236, 0.541);
  border-radius: 15px;
  padding: 2px 4px;
}

.promo a i {
  margin-left: 8px; /* Espacio entre el texto y la flecha */
  font-size: 18px; /* Tamaño de la flecha */
}

.promo a:hover {
  color: blue;
  background-color: #b13cceab;
  text-decoration: none;
}

/*---------  HOSTINGER LINK PROMOTIONAL--------------- */
.promo-hostinger {
  background-image: url(img/hosting.jpg);
  border: 2px solid #4c82af;
  border-radius: 8px;
  padding: 20px;
  margin: 40px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.promo-hostinger h3 {
  margin-top: 0;
  color: #fff;
  font-size: 2rem;
}

.promo-hostinger p {
  margin: 10px 0 20px;
  font-size: 18px;
  color: #fff;
}

.btn-promo {
  background-color: #fff;
  font-size: 1.5rem;
  color: #9e1ed1;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-promo:hover {
  background-color: #a43ff198;
  color: #f1eff3;
  border: 2px solid #fff;
}

