@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&display=swap");

/*base*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 3.5rem 0 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.938rem;
  background: linear-gradient(90deg, #183da4 0%, #08174a 50%);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  color: #fff;
  font-weight: 600;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.938rem;
}

/*reutilisabes*/
.section {
  padding: 4.5rem 0 2rem;
}

.sectiontitle {
  font-size: 2.25rem !important;
  margin-bottom: 2rem;
  text-align: center;
}

.container {
  max-width: 968px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.main {
  overflow: hidden;
}





/*--------------------------------------------------------------------------------------------H E A D E RRR*/

.header { 
  width: 100%;
  background: linear-gradient(90deg, #183da4 0%, #08174a 50%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav {
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navL {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: 500;
}

.navL-img {
  width: 1.25rem;
}

.navLink,
.navL,
.navToggle,
.navclose {
  color: #fff;
}

.navToggle {
  font-size: 1.25rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .navM {
    position: fixed;
    width: 100%;
    background: #000c32;
    top: -150%;
    left: 0;
    padding: 3.5rem 0;
    transition: 0.4s;
    z-index: 100;
    border-radius: 0 0 1.5rem 1.5rem;
  }
}

.navclose {
  font-size: 1.8rem;
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  cursor: pointer;
}

.navList {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.navLink {
  text-transform: uppercase;
  font-weight: 900;
  transition: 0.4s;
}

.navLink:hover {
  color: #fff;
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Change background header */
.scroll-header {
  background: #000c32;
}

/* Active link */
.active-link {
  position: relative;
}

.active-link::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
} 

/*-----------------------------------USER LOGIN */


.userlogin {
  width: 27px; /* Tamaño reducido del ícono */
  height: 27px;
  object-fit: cover; /* Mantiene la proporción y evita distorsión */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: growIcon 0.5s forwards, rotateIcon 3s infinite linear; /* Animación de crecimiento + rotación hacia el frente */
}

.userlogin:hover {
  transform: scale(1.1); /* Efecto de agrandado al pasar el mouse */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra en hover */
  filter: brightness(1.2); /* Efecto luminoso */
}

.userlogin:active {
  transform: rotateY(180deg); /* Gira hacia el frente al hacer clic */
  transition: transform 0.4s ease; /* Suaviza la rotación */
}

/* Animación de crecimiento al cargar la página */
@keyframes growIcon {
  to {
    transform: scale(1);
  }
}

/* Animación de rotación continua hacia el frente */
@keyframes rotateIcon {
  from {
    transform: rotateY(0deg); /* Empieza desde el frente */
  }
  to {
    transform: rotateY(360deg); /* Rota completamente hacia el frente */
  }
}




/*-------------------------------------------------------------------------------------*/





/*----------------------------------------------------------------------------HOME*/
.homecont {
  row-gap: 1rem;
}

.homegroup {
  display: grid;
  position: relative;
  padding-top: 2rem;
}

.homeimg {
  max-width: 90%; /* Limita el ancho al 90% del contenedor */
  height: auto; /* Mantiene las proporciones originales */
  justify-self: center; /* Centrado horizontal */
  animation: float 3s ease-in-out infinite; /* Animación de flotación */
}

@keyframes float {
  0% {
    transform: translateY(0); /* Posición inicial */
  }
  50% {
    transform: translateY(-15px); /* Sube 15px */
  }
  100% {
    transform: translateY(0); /* Regresa a la posición inicial */
  }
}

.hometitle {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 109%;
  margin-bottom: 1rem;
}

.homedes {
  margin-bottom: 1rem;
}

.homebut {
  display: flex;
}

.homebut a {
  margin-left: 10px;
}

.swiper-pagination {
  position: initial;
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
}

.swiper-pagination-bullet-active {
  width: 1.5rem;
  height: 5px;
  border-radius: 0.5rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .homeimg {
    max-width: 80%; /* Reduce aún más el ancho en pantallas medianas */
    height: auto; /* Mantiene proporciones */
  }
}

@media (max-width: 480px) {
  .homeimg {
    max-width: 70%; /* Reduce el ancho en pantallas pequeñas */
    height: auto; /* Mantiene proporciones */
  }
}



/*BUTTONS*/
.button {
    display: inline-block;
    background-color: #3678ff;
    color: #fff;
    padding: 1rem 1.75rem;
    border-radius: .5rem;
    font-weight: 500;
    transition: .3s;
}

.button:hover {
    background-color: #0557fc;
}


.buttonicon {
    font-size: 1.25rem;
}


/*CATEGORIA*/
.categorycontainer {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.categorydata {
    text-align: center;
}

.categoryimg {
    width: 120px;
    margin-bottom: .75rem;
    transition: 3s;
}

.categorytitle {
    margin-bottom: .25rem;
}


.categorydata:hover .categoryimg {
    transform: translateY(-.5rem);
}


/*ABOUT*/
.aboutcontainer {
    row-gap: 2rem;
}

.aboutdata {
    text-align: center;
}

.aboutdescription{
    margin-bottom: 2rem;
}
.aboutimg {
    width: 200px;
    justify-self: center;
}

/*PRODUCT*/

.productcontainer {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1rem;


}

.productcontent{
    position: relative;
    background: #000c32;
    border-radius: 1rem;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    overflow: hidden;
}

.productimg {
    width: 90px;
    transition: .3s;
}

.productsubtitle,
.productprice {
    display: block;
}

.productsubtitle {
    font-size: .75rem;
    margin-bottom: .5rem;
}

.producttitle,
.productprice {
    color: #fff;
    font-weight: 500;
    font-size: .938rem;
}


.productbutton {
    display: inline-flex;
    padding: .5rem;
    border-radius: .25rem .25rem .75rem .25rem;
    position: absolute;
    right: -3rem;
    bottom: 0;
}

.producticon {
    font-size: 1.25rem;
    color: #fff;
}

.productcontent:hover .productimg {
    transform: translateY(-.5rem);
}

.productcontent:hover .productbutton {
    right: 0;
}


/* DESCUENTO - DISCORD */
.discountcontainer {
    background: #000c32;
    border-radius: 1rem;
    padding: 2rem 0 1rem; /* Reduce el padding para un diseño más compacto */
    max-width: 90%; /* Limita el ancho del contenedor */
    margin: auto; /* Centra el contenedor */
    row-gap: .5rem; /* Reduce el espacio entre elementos */
}

.discountdata {
    text-align: center;
}

.discounttitle {
    font-size: 1.2rem; /* Ajusta ligeramente el tamaño del texto */
    margin-bottom: 1.5rem; /* Reduce el margen inferior */
}

.discountimg {
    width: 150px; /* Reduce el tamaño de la imagen */
    justify-self: center;
}

/* Media Queries para pantallas más pequeñas */
@media (max-width: 768px) {
    .discountcontainer {
        padding: 1.5rem 0 1rem; /* Ajusta el padding para pantallas medianas */
        max-width: 80%; /* Reduce el ancho del contenedor */
    }

    .discounttitle {
        font-size: 1.1rem; /* Reduce el tamaño del texto */
    }

    .discountimg {
        width: 120px; /* Reduce aún más el tamaño de la imagen */
    }
}

@media (max-width: 480px) {
    .discountcontainer {
        padding: 1rem 0 0.5rem; /* Reduce más el padding en pantallas pequeñas */
        max-width: 85%; /* Reduce aún más el ancho del contenedor */
    }

    .discounttitle {
        font-size: 1rem; /* Tamaño más pequeño para pantallas pequeñas */
    }

    .discountimg {
        width: 100px; /* Imagen más pequeña en pantallas pequeñas */
    }
}


/*CONTAINER SERVICIOS*/
.newcontainer {
    padding-top: 1rem;
}

.newimg {
    width: 120px;
    margin-bottom: .5rem;
    transition: .3s;
}

.newcontent {
    position: relative;
    background: #000c32;
    width: 242px;
    padding: 2rem 0 1.5rem 0;
    border-radius: .75rem;
    text-align: center;
    overflow: hidden;
}

.newtag {
    position: absolute;
    top: 8%;
    left: 8%;
    background-color: #3678ff;
    color: #fff;
    font-size: .813rem;
    padding: .25rem .5rem;
    border-radius: .25rem;
}

.newtitle {
    font-size: .938rem;
    font-weight: 500;
}

.newsubtitle {
    display: block;
    font-size: .813rem;
    margin-bottom: .5rem;
}

.newprices {
    display: inline-flex;
    align-items: center;
    margin-bottom: .5rem;
}

.newprice {
    font-weight: 500;
    color: #fff;
}

.newdiscount {
    color: #3678ff;
    font-size: .75rem;
    text-decoration: line-through;
    font-weight: 500;
}

.newbutton {
    display: inline-flex;
    padding: .5rem;
    border-radius: .25rem .25rem .75rem .25rem;
    position: absolute;
    bottom: 0;
    right: -3rem;
}

.newicon {
    font-size: 1.25rem;
}

.newcontent:hover .newimg {
    transform: translateY(-.5rem);
}

.newcontent:hover .newbutton {
    right: 0;
}











/*NOTICIAS*/




/* Estilos generales */
.newsld {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.newslf {
  background: #3678ff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.75rem;
}

.newslin {
  width: 70%;
  padding: 0.5rem;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
}

.newslin::placeholder {
  color: #fff;
}

.button2 {
  display: inline-block;
  background: #0557fc;
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.button2:hover {
  background: #0048d6;
}

/* Botones de redes sociales */
.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px; /* Espacio entre los botones */
}

.social-btn {
  background: none; /* Sin color de fondo */
  border: none;
  border-radius: 50%; /* Botones circulares */
  padding: 0; /* Sin relleno adicional */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
  width: 80px; /* Dimensión ampliada del contenedor */
  height: 80px; /* Dimensión ampliada del contenedor */
}

.social-btn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Asegura que la imagen se ajuste correctamente al contenedor */
}

.social-btn:hover {
  transform: scale(1.1);
}

/* Responsividad */
@media (max-width: 768px) {
  .newslin {
    width: 60%;
    font-size: 0.9rem;
  }

  .button2 {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .social-btn {
    width: 70px; /* Tamaño ajustado para pantallas medianas */
    height: 70px;
  }

  .social-buttons {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .newslin {
    width: 100%;
    font-size: 0.8rem;
  }

  .button2 {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .social-btn {
    width: 60px; /* Tamaño reducido para pantallas pequeñas */
    height: 60px;
  }

  .social-buttons {
    gap: 10px;
  }
}






/*FOOTER*/



.footer {
    position: center;
    overflow: hidden;
}

.footercontainer {
    row-gap: 2rem;
}

.footerL {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #fff;
}

.footerL-img {
    width: 20px;
}

.footerdescription {
    margin-bottom: 2.5rem;
}

.footersocial {
    display: flex;
    column-gap: .75rem;
}

.footersocial-link {
    display: inline-flex;
    background: #000c32;
    padding: .25rem;
    border-radius: .25rem;
    color: #fff;
    font-size: 1rem;
}

.footersocial-link:hover {
    background: #0557fc;
}

.footertitle {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footerlinks {
    display: grid;
    row-gap: .35rem;
}

.footerlink {
    font-size: .813rem;
    color: #fff;
    transition: .3s;
}

.footerlink:hover {
    color: #fff;
}

.footercopy {
    display: block;
    text-align: center;
    font-size: .75rem;
    margin-top: 4.5rem;
}

/*scroll up */
.scrollup{
  position: fixed;
  background: #000C32;
  right: 1rem;
  bottom: -20%;
  display: inline-flex;
  padding: .3rem;
  border-radius: .25rem;
  z-index:10;
  opacity: .8;
  transition: .4s;
}

.scrollupicon{
  font-size: 1.25rem;
  color: #fff;
}

.scrollup:hover{
  background: #000C32;
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll{
  bottom: 3rem;
}

/*scroll bar*/
::-webkit-scrollbar {
    width: 0.6rem;
    background: #413e3e;
}
::-webkit-scrollbar-thumb {
    background: #272525;
    border-radius: .5rem;
}

/*RESPONSIVE */


@media (max-width: 320px) {
    .container {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .homeimg {
        height: 200px;
    }
    .homebut {
        flex-direction: column;
        width: max-content;
        row-gap: 1rem;
    }
    .categorycontainer, 
    .productcontainer {
        grid-template-columns: .8fr;
        justify-content: center;
    }
    
}


@media (min-width: 576px) {
    .aboutcontainer {
        grid-template-columns: .8fr;
        justify-content: center;
    }

    .newslc{
        display: grid;
        grid-template-columns: .7fr;
        justify-content: center;
    }
    .newsld {
        padding: 0 3rem;
    }

}

@media (min-width: 767px) {
    body {
        margin: 0;
    }
    .section {
        padding: 7rem 0 2rem;
    }
    .nav {
        height: calc(3.5rem + 1.5rem);
    }
    .navclose, 
    .navToggle {
        display: none;
    }
    .navList {
        flex-direction: row;
        column-gap: 3rem;
    }
    .navLink {
        text-transform: initial;
        font-weight: initial;
    }
    .homecont {
        padding: 8rem 0 2rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .homeimg {
        height: 300px;
    }

    .swiper-pagination {
        margin-top: 2rem;
    }

    .categorycontainer {
        grid-template-columns: repeat(3, 200px);
        justify-content: center;
    }
    .aboutcontainer {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .abouttitle,
    .aboutdata {
        text-align: initial;

    }
    .aboutimg {
        width: 250px;
    }
    .productcontainer {
        grid-template-columns: repeat(3,200px);
        justify-content: center;
        gap: 2rem;
    }

    .discountcontainer {
        grid-template-columns: repeat(2, max-content);
        justify-content: center;
        align-items: center;
        column-gap: 3rem;
        padding: 3rem 0;
        border-radius: 3rem;
    }

    .discountimg {
        width: 350px;
        order: -1;
    }

    .discountdata {
        padding-right: 6rem;
    }

    .newslc {
        grid-template-columns: .5fr;
    }

    .footercontainer {
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        column-gap: 1rem;
    }

    
}

@media (min-width: 992px) {

    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .sectiontitle {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .homecont {
        padding-top: 9rem;
        gap: 3rem;
    }
    .homegroup {
        padding-top: 0;
    }
    .homeimg {
        height: 400px;
        transform: translateY(-3rem);
    }
    .homeindicator {
        top: initial;
        right: initial;
        bottom: 15%;
        left: 45%;
    }
    .homeindicator::after {
        top: 0;
        height: 75px;
    }

    .homedetails-img {
        bottom: 0;
        right: 58%;

    }

    .hometitle {
        margin-bottom: 1.5rem;
    }
    .homedes {
        margin-bottom: 2.5rem;
        padding-right: 2rem;
    }
    .categorycontainer {
        column-gap: 8rem;
    }

    .categoryimg {
        width: 200px;
    }
    .aboutcontainer {
        column-gap: 7rem;
    }
    .aboutimg {
        width: 350px;
    }
    .aboutdescription {
        padding-right: 2rem;
    }
    .productcontainer {
        gap: 3.5rem;
    }
    .productcontent {
        border-radius: 1.5rem;
    }
    .productimg {
        width: 110px;

    }

    .producttitle {
        font-size: 1rem;
    }
    .discountcontainer {
        column-gap: 7rem;
    }

    .newcontent {
        width: 310px;
        border-radius: 1rem;
        padding: 2rem 0;
    }

    .newimg {
        width: 150px;
    }
    .newimg,
    .newsubtitle {
        margin-bottom: 1rem;
    }

    .newtitle {
        font-size: 1rem;
    }

    .footercopy {
        margin-top: 6rem;
    }

}

@media (min-width: 1200px) {

    .homeimg {
        height: 420px;   
    }

    .swiper-pagination {
        margin-top: 2.5rem;
    }



}










/* General container */
.downloadapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background-color: #000c32;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: auto; /* Mantiene el bloque centrado */
}

/* Download button */
.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #3678ff;
  color: white;
  border: none;
  border-radius: 15px; /* Botón más cuadrado */
  padding: 0.8rem 1.2rem; /* Ajuste del padding para equilibrar forma */
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.download-button img {
  height: 24px;
}

.download-button:hover {
  background-color: #0098e3;
}

/* Info section */
.app-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem; /* Tamaño del texto más grande */
  font-weight: bold; /* Negrita */
  color: #ffffff; /* Color que resalta */
}

.app-info .separator {
  color: #ccc;
  font-weight: bold;
}

/* Rating section */
.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating strong {
  font-size: 1rem; /* Aumenta el tamaño del texto principal */
}

.stars {
  color: #fbbc05; /* Amarillo Google */
  font-size: 1.2rem; /* Tamaño más grande para las estrellas */
  line-height: 1;
}

/* Responsiveness */
@media (max-width: 768px) {
  .downloadapp {
    padding: 1.5rem;
    gap: 0.8rem;
    max-width: 90%; /* Reduce el ancho al 90% de la pantalla */
  }

  .download-button {
    font-size: 0.9rem;
    padding: 0.6rem 1rem; /* Ajuste del padding en pantallas medianas */
    border-radius: 12px; /* Menor redondeo para pantallas medianas */
  }

  .app-info {
    font-size: 0.9rem; /* Ajusta el tamaño en pantallas medianas */
  }
}

@media (max-width: 480px) {
  .downloadapp {
    padding: 1rem;
    gap: 0.5rem;
    max-width: 85%; /* Reduce aún más el ancho al 85% en pantallas pequeñas */
  }

  .download-button {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem; /* Ajuste del padding en pantallas pequeñas */
    border-radius: 10px; /* Menor redondeo en pantallas pequeñas */
  }

  .app-info {
    font-size: 0.85rem; /* Ajusta el tamaño del texto */
    flex-wrap: wrap;
    justify-content: center;
  }

  .stars {
    justify-content: center;
    font-size: 1rem; /* Ajusta el tamaño de las estrellas */
  }
}

















.productsubtitle {
  display: inline-flex; /* Mantiene el texto y la bandera juntos */
  align-items: center; /* Alinea verticalmente la bandera y el texto */
  text-align: center; /* Centra el texto */
  gap: 0.3rem; /* Espaciado entre la bandera y el texto */
}

.usa-flag {
  width: 1em; /* Tamaño proporcional al texto */
  height: auto; /* Mantiene la proporción de la bandera */
  display: inline-block; /* Asegura que se comporte como un icono junto al texto */
  vertical-align: middle; /* Centra la bandera respecto al texto */
}

/* No se requiere configuración adicional para la responsividad, 
ya que el tamaño se ajustará automáticamente con el texto. */


/* Responsiveness */
@media (max-width: 768px) {
  .usa-flag {
    width: 0.9em; /* Reduce el tamaño de la bandera en pantallas medianas */
  }
}

@media (max-width: 480px) {
  .usa-flag {
    width: 0.8em; /* Tamaño más pequeño en pantallas pequeñas */
  }
}

















#particles-js {
	height: 100vh; 
	width: 100%;
    position: fixed;
    z-index: -1;
}



/*-------------------------------------------- FINAL DISCORD FOOTER */
.discord-app {
  background-color: #0e0f2a; /* Fondo oscuro */
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* Bloques principales */
.discord-block {
  background-color: #1a1b3a; /* Fondo de los bloques */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1.5rem;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-block:hover {
  transform: translateY(-5px); /* Efecto de hover */
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
}

.discord-icon {
  width: 50px;
  height: 50px;
}

.discord-text p {
  color: #a3a4c7;
  font-size: 0.9rem;
  margin: 0;
}

.discord-text h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}

/* El enlace no debe tener estilos predeterminados */
.discord-link {
  text-decoration: none;
  width: 100%;
  max-width: 500px;
}

/* Diseño Responsivo */
@media (max-width: 768px) {
  .discord-block {
    flex-direction: column;
    text-align: center;
  }

  .discord-icon {
    width: 40px;
    height: 40px;
  }

  .discord-text h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .discord-text p {
    font-size: 0.8rem;
  }

  .discord-text h3 {
    font-size: 0.9rem;
  }
}

/*------------------------------FINAL DISCORD FOOTER */



/*-------------------------------------------- EXPERIENCE 3+ YEARS */

.experience {
  display: flex;
  align-items: center; /* Centra verticalmente los elementos */
  justify-content: center; /* Centra horizontalmente el contenido */
  text-align: center;
  margin: 20px auto;
  padding: 10px;
  flex-wrap: nowrap; /* Mantiene los elementos en una sola fila por defecto */
}

.experience-logo {
  width: 50px; /* Tamaño ajustable para los laureles */
  height: auto;
}

.experience-logo.left {
  margin-right: 10px; /* Distancia entre el laurel izquierdo y el texto */
}

.experience-logo.right {
  margin-left: 10px; /* Distancia entre el laurel derecho y el texto */
}

.experience-text-container {
  display: flex;
  flex-direction: column; /* Coloca los textos uno debajo del otro */
  align-items: center; /* Centra los textos horizontalmente */
}

.experience-text {
  font-size: 1rem;
  font-weight: bold;
  color: #FFF; /* Color del texto */
  margin: 0; /* Elimina el margen por defecto */
  text-align: center;
  white-space: nowrap; /* Evita saltos de línea para texto largo */
}

/* Ajustes para pantallas medianas */
@media (max-width: 768px) {
  .experience {
    flex-wrap: wrap; /* Permite que los elementos se ajusten en varias filas si es necesario */
    gap: 5px; /* Espacio reducido entre elementos */
  }
  .experience-logo {
    width: 40px; /* Reduce el tamaño de los logos */
  }
  .experience-text {
    font-size: 0.9rem;
  }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 480px) {
  .experience {
    flex-wrap: wrap; /* En pantallas pequeñas, los elementos pueden envolver */
    justify-content: center; /* Centra todo el contenido */
  }
  .experience-logo {
    width: 35px; /* Ajusta aún más el tamaño de los laureles */
  }
  .experience-text {
    font-size: 0.8rem; /* Reduce el tamaño del texto */
  }
}

/*-------------------------------------------- EXPERIENCE 3+ YEARS */
