/* ?==========  Variables  ==========? */
:root {
  /* COLORS */
  --main-color: #2ec78c;
  --main-2-color: #3bc48f;
  --main-3-color: #79ebdb;
  --text-1-color: #fff;
  --text-2-color: #000;
  --bg-1-color: #000000;
  --bg-2-color: #edfff4;
  --bg-3-color: #d5ffe5;
  /* FONTS */
  --big-font: 5rem;
  --h1-font: 2rem;
  --h2-font: 2rem;
  --h3-font: 1.2rem;
  --h4-font: 0.8rem;
  /* NAVBAR */
  --navbar-color: #000000;
  /* SECTIONS */
  --section-height: 80px;
  --section-1-color: transparent;
  --section-2-color: transparent;
  --section-3-color: #1d1d1d;
  --section-4-color: transparent;
  --section-5-color: #212121;
  --section-6-color: #1d1d1d;
  /* FOOTER */
  --footer-color: #cacaca;
}

/* !=====  NO TOCAR ======! */

/* BASIC */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.background_animation {
  background: var(--bg-1-color);
  width: 100%;
  height: 100%;
}

/* POSICIONAMIENTO CENTRAL */

.flex {
  display: flex;
  justify-content: center;
  align-content: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  grid-gap: 1.5rem;
  align-items: center;
}

/* SCROLL */

:target {
  scroll-margin-top: 90px;
}

::-webkit-scrollbar {
  background: transparent;
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--main-2-color);
}

body.scrollbar-top::-webkit-scrollbar-thumb {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

body.scrollbar-bottom::-webkit-scrollbar-thumb {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* NAVBAR */

.navbar_transparent {
  background: transparent;
}

.navbar_color {
  background: var(--navbar-color);
  box-shadow: 0px 0px 100px -30px var(--text-1-color);
}

.navbar_separator {
  height: 0;
}

/* SECTIONS */

.section {
  padding: var(--section-height) 15%;
  color: var(--text-1-color);
}

.section_title {
  color: var(--main-color);
}

.section_subtitle {
  color: var(--main-2-color);
}

.section div {
  padding: 0;
}

main .section:nth-child(1) {
  background: var(--section-1-color);
}

main .section:nth-child(2) {
  background: var(--section-2-color);
}

main .section:nth-child(3) {
  background: var(--section-3-color);
}

main .section:nth-child(4) {
  background: var(--section-4-color);
}

main .section:nth-child(5) {
  background: var(--section-5-color);
}

main .section:nth-child(6) {
  background: var(--section-6-color);
}

/* COLORES */

.color_main {
  color: var(--main-color);
}

/* !==================== CONTENIDO ====================!  */

/* *===== MAGIPO ======* */
/* ?===== HEADER ======? */

.navbar-container {
  display: flex;
  justify-content: space-evenly;
  position: fixed;
  z-index: 10;
  padding: 0 2rem;
  height: 90px;
  align-items: center;
  color: var(--text-1-color);
  top: 0;
  width: 100%;
  transition: shadow 0.5s ease;
  transition: background 0.5s ease, box-shadow 0.35s ease;
}

.logo-container a .logo {
  width: 150px;
  transition: transform 0.5s ease-in-out;
}

.logo-container a .logo:hover {
  transform: rotate(360deg);
}

.navbar-container .nav-list {
  display: flex;
  list-style-type: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-container .nav-list .nav-item a {
  color: var(--text-1-color);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  padding: 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}

.login-register .button_1:hover {
  color: var(--text-2-color);
}

.navbar-container .nav-list .nav-item:after {
  display: block;
  content: "";
  border-top: 2px solid var(--main-color);
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  -webkit-transition: transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out;
  -ms-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
}

.navbar-container .nav-list .nav-item:hover:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.navbar-container .nav-list .nav-item a:hover {
  filter: brightness(80%);
  -webkit-filter: brightness(80%);
}

.navbar-container .nav-list .login-register {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* BURGUER MENU */

.navbar-container .nav-list.active {
  right: 0;
}

/* LINK ACTIVO */

.navbar-container .nav-item.active a {
  color: var(--main-color);
  font-weight: 500;
}

.login-register .button_1.active {
  background: var(--main-color);
  color: var(--text-2-color);
}

/*SUBMENU*/

.nav-sublist {
  position: absolute;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.2s;
  list-style: none;
}

.nav-item:hover .nav-sublist {
  padding: 20px 0 0 0;
  opacity: 1;
  visibility: visible;
}

.nav-sublist .nav-subitem {
  margin: 0;
  width: 100%;
}

.nav-sublist .nav-subitem:nth-child(n) a {
  color: var(--text-1-color);
  background: var(--navbar-color);
  padding: 10px 20px 10px 10px;
  font-size: 0.9rem;
}

.nav-sublist .nav-subitem a {
  width: 100%;
  display: inline-block;
  background: transparent;
}

.nav-sublist .nav-subitem a:hover {
  color: var(--main-color);
}

.nav-sublist .nav-subitem:first-child a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.nav-sublist .nav-subitem:last-child a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.navbar-container .nav-sublist .nav-subitem {
  position: relative;
}

.navbar-container .nav-sublist .nav-subitem a:hover {
  color: var(--text-1-color);
}

.navbar-container .nav-sublist .nav-subitem:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--main-color);
  transform: scaleY(0);
  transition: transform 250ms ease-in-out;
  transform-origin: top;
  -webkit-transition: transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out;
  -ms-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
}

.navbar-container .nav-sublist .nav-subitem:hover:after {
  transform: scaleY(1);
}

.navbar-separator {
  height: 0;
}

.nav-item a i,
.nav-subitem a i,
.login-register a i {
  margin-right: 10px;
  font-size: 18px;
}

.nav-subitem a i {
  color: #c9c9c9;
}

@media (max-width: 1680px) {}

@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .home-container .home-info:nth-child(2) {
    margin-top: 30px;
  }

  .navbar-container .nav-list {
    gap: 1rem;
  }

  .nav-list .nav-item a,
  .button_1 {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .navbar-container {
    justify-content: space-between;
    background: var(--bg-1-color);
  }

  .navbar-container .nav-list {
    flex-direction: column;
    position: fixed;
    top: 90px;
    width: 100vw;
    background: var(--bg-1-color);
    padding: 3rem 0;
    height: 100vh;
    z-index: 99;
    right: -100%;
    transition: 0.2s ease-in;
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -ms-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
  }

  .bars {
    height: auto;
    width: 22px;
    cursor: pointer;
  }

  .bars .bar {
    height: 2px;
    width: 100%;
    background: #fff;
    margin: 4px;
  }

  .navbar-container .nav-list {
    gap: 3rem;
  }

  .navbar-container .nav-list .login-register {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    width: 50%;
  }

  .login-register .button_1 {
    padding: 1rem 0;
  }

  .navbar-container {
    justify-content: space-between;
    background: var(--bg-1-color);
  }

  .navbar-container .nav-list {
    flex-direction: column;
    position: fixed;
    top: 90px;
    width: 100vw;
    background: var(--bg-1-color);
    padding: 3rem 0;
    height: 100vh;
    z-index: 99;
    right: -100%;
    transition: 0.2s ease-in;
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -ms-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
  }

  .bars {
    height: auto;
    width: 22px;
    cursor: pointer;
  }

  .bars .bar {
    height: 2px;
    width: 100%;
    background: #fff;
    margin: 4px;
  }

  .navbar-container .nav-list {
    gap: 3rem;
  }

  .navbar-container .nav-list .login-register {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    width: 50%;
  }

  .login-register .button_1 {
    padding: 1rem 0;
  }

  .navbar-container .nav-item.active a {
    color: var(--main-color);
    font-weight: 500;
    transition: none;
  }

  .login-register .button_1.active {
    background: var(--main-color);
    color: var(--text-2-color);
    transition: none;
  }

  /* SUBMENU */
  .nav-sublist {
    display: none;
  }

  /* BOTONES */

  .home-info_buttons .download-img {
    margin: 0 5px;
    border: 2px solid var(--main-color);
    box-shadow: 0px 0px 40px -10px var(--main-color);
  }

  .home-info_buttons .download-img:hover {
    border: 2px solid var(--text-1-color);
    box-shadow: 0px 0px 40px -10px var(--text-1-color);
  }
}

/* *===== MAGIPO ======* */
/* ?===== HOME ======? */
#home {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.home-container {
  width: 800px;
  display: flex;
}

.home-container .home-info {
  margin: 0 25px;
  text-align: center;
}

#home .section__title {
  margin: 25px 0;
}

.home-info_desc {
  margin: 25px 0;
}

.home-info_buttons {
  margin: 25px 0;
  display: flex;
  justify-content: center;
}

.download-img {
  margin: 0 20px;
  padding: 5px 10px;
  max-width: 160px;
  height: auto;
  border: 2px solid var(--main-color);
  box-shadow: 0px 0px 20px 0px var(--main-color);
  border-radius: 10px;
  transition: all ease-in 0.3s;
}

.download-img:hover {
  cursor: pointer;
  border: 2px solid var(--text-1-color);
  box-shadow: 0px 0px 20px 0px var(--text-1-color);
}

.home-img {
  width: 120%;
  height: auto;
  min-width: 300px;
  max-width: 600px;
  border-radius: 10px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 20px;
  align-items: center;
}

.modal-content {
  --bs-modal-bg: #212020;
  padding: 20px;
  border: none;
}

/* Estilo del texto */
.modal-text h6 {
  color: #00ff99; /* Verde brillante */
  margin-bottom: 10px;
}

.modal-text p, .modal-text ul {
  color: #f1f1f1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-image img {
  border-radius: 10px;
  max-width: 100%; 
  height: auto;
}

.modal-footer .btn {
  border-color: #00ff99;
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  width: 130px;
  height: 50px;
}

.modal-header {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: none;
  position: relative;
}

/* Centrar el título */
.modal-title {
  color: #ffffff;
  text-align: center;
  flex: 1;
}

.custom-close {
  background-color: transparent;
  border: none;
  color: #00ff99;
  font-size: 1.5rem;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.custom-close:hover {
  color: #00cc77;
}

.custom-close:focus {
  outline: none;
}

.modal-footer .btn:hover {
  background-color: #cdcecdb4;
}

.section div {
  padding: 8px;
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-image {
    margin-top: 20px;
  }
}

@media (max-width: 1024px) {
  #home {
    margin-top: 0;
    display: block;
  }

  .home-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-img {
    max-width: 520px;
  }
}

@media (max-width: 650px) {}

/* *===== ANA MARIA ======* */
/* ?===== HOME ======? */

/* CHARACTERISTICS */

.features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  width: 400px;
  padding: 20px;
  max-width: 100%;
  min-height: 555px;
  background-color: #494949;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature .feature-div {
  margin: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.feature img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.section__title {
  font-size: 32px;
  font-family: cursive;
  font-weight: 800;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 40px;
}

.feature h3 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
  color: #ffffff;
}

.feature p {
  font-size: 16px;
  font-weight: 350;
  margin-top: 10px;
  text-align: center;
  color: #ffffff;
}

/* TARGETS */
.targets_name {
  font-size: 28px;
  text-align: center;
  margin-bottom: 35px;
}

.targets_img {
  width: 100%;
}

.targets_img img {
  width: 400px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 40px;
}

.targets_text {
  text-align: center;
  margin: 0 300px
}

.targets-containter-0 {
  margin-bottom: 50px;
  color: var(--main-color);
}

/* TESTIMONIALS */

#testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-parrafo {
  text-align: center;
  margin: 32px 0 32px 0;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonials-item {
  flex-shrink: 50px;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 20px;
  border-radius: 10px;
  background: var(--main-color);
  box-shadow: 0px 0px 20px -6px rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.testimonials-item div {
  margin: 20px;
}

.testimonials-item .testimonials-photos {
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
}

.testimonials-item .testimonials-photo {
  width: 120px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px 5px rgb(255, 255, 255);
}

.testimonials-item h2 {
  color: #000000;
}

.testimonials-item h4 {
  font-size: 14px;
  color: #4b4b4b;
}

.testimonials-item p {
  color: #000000;
}

.estrellas {
  display: flex;
  justify-content: center;
  letter-spacing: 5px;
  color: yellow;
}

:root {
  --oragen: #f7931a;
  --soft-orange: #ffE9d5;
  --blue: #1a9af7;
}


.main-plans-container {
  width: 100%;
  min-width: 520px;
  padding-bottom: 70px;
  text-align: center;
  background-color: #a3ebaa;
  margin-block: 50px;
}

.textplan p {
  font-size: 17px;
  font-weight: 350;
  margin-top: 10px;
  color: #000000;
}

.plans-- {
  width: 90%;
  min-width: 288px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 50px;
}

.plans--title h2 {
  padding-top: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.5rem;
  color: black;
}

.plans--title p {
  padding-top: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8rem;
  color: #757575;
}


.bi-x-square {
  color: #ff0000;
  line-height: 1.2rem;
}

.bi-check2-square {
  color: #105321;
  line-height: 1.2rem;
}

.plans-container--slider {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  display: flex;

}

.plans-container--card {
  position: relative;
  scroll-snap-align: center;
  width: 70%;
  min-width: 190px;
  max-width: 300px;
  height: 630px;
  margin: 50px 60px;
  padding: 0 15px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgb(89 73 30 / 16%);

}

.recomendado {
  position: absolute;
  width: 120px;
  height: 31px;
  padding: 6px;
  left: calc(50% - 60px);
  top: -15px;
  font-size: 0.9rem;
  background-color: var(--oragen);
  border-radius: 8px;
  color: white;
}

.basico {
  position: absolute;
  width: 120px;
  height: 31px;
  padding: 6px;
  left: calc(50% - 60px);
  top: -15px;
  font-size: 0.9rem;
  background-color: var(--blue);
  border-radius: 8px;
  color: white;
}

.promax {
  position: absolute;
  width: 120px;
  height: 31px;
  padding: 6px;
  left: calc(50% - 60px);
  top: -15px;
  font-size: 0.9rem;
  background-color: #0ea75a;
  border-radius: 8px;
  color: white;
}

.pland-card--title {
  padding-top: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.8rem;
  color: black;
}

.pland-card--price {
  padding: 5px 0;
  font-size: 5.2rem;
  font-weight: bold;
  line-height: 5.3rem;
  color: black;
}

.pland-card--saving {
  font-size: 1.2rem;
  color: #757575;
}

.pland-card--ca {
  width: 150px;
  height: 45px;
  margin-top: 20px;
  background-color: #5bdf68;
  border: 2px solid #5bdf68;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.9rem;
  color: rgb(73, 72, 72);
  cursor: pointer;
}

.pland-card--ca span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(assets/icons/arrow-right.svg?raw=true);
  vertical-align: text-bottom;
}

.pland-card--price span {
  vertical-align: 28px;
  font-size: 1.2rem;
  font-weight: 300;
}

.bi {
  font-size: 24px;
}

@media (max-width: 650px) {
  .testimonials-parrafo {
    text-align: center;
  }

  .testimonials-item {
    margin: 20px 0 20px 0;
    border-radius: 10px;
    min-width: 320px;
  }

  .testimonials-item .testimonials-photo {
    width: 120px;
    height: 130px;
    border-radius: 50%;
  }
}

/* *===== BRIAN ======* */
/* ?===== ABOUT US ======? */

/* RESUME */
#resume,
#vac,
#dev {
  color: var(--text-1-color);
}

#resume {
  grid-gap: 0;
}

.resume-text {
  margin: 2rem 0 2rem 20%;
  display: flex;
  justify-content: flex-end;
}

.resume-text p {
  display: flex;
  margin: 0.8rem 0 1.8rem;
  line-height: 1.7;
}

.resume-img {
  display: flex;
  justify-content: center;
}

.resume-img img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 20px;
}

.resume-img {
  margin: 0 5%;
}

/* VALUES AND CULTURES */
#vac {
  grid-gap: 5rem;
}

.vac__title {
  align-self: center;
  margin-bottom: 30px;
}

.vac__item {
  margin: 10px 0;
}

.vac-img {
  flex-direction: column;
  margin: 15px;
  border-radius: 10px;
}

.vac-img img {
  max-width: 100%;
  width: 340px;
  height: auto;
  margin: 10px;
  border-radius: 10px;
}

.vac-img img:nth-child(1) {
  align-self: flex-start;
}

.vac-img img:nth-child(2) {
  align-self: flex-end;
  height: 250px;
}

.vac-text {
  flex-direction: column;
}

/* DEVELOPMENT TEAM */
.dev__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, auto));
  grid-gap: 1rem;
  margin-top: 4rem;
}

.box {
  background: var(--section-3-color);
  text-align: center;
  padding: 20px 20px;
  border-radius: 15px;
}

.box-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px 0;
  object-fit: cover;
}

.box h3 {
  margin: -5px 0 15px;
  color: var(--main-color);
  font-size: var(--h3-font);
}

.box h4 {
  margin: 15px 0 15px;
  color: #bbbbbb;
  font-size: var(--h4-font);
}

.box-desc {
  line-height: 1.7;
  color: var(--text-1-color);
  font-size: var(--h3-font);
  padding: 10px 15px;
}

.box-desc {
  font-size: 14px;
  padding: 10px 15px;
}

.heading {
  text-align: center;
}

.heading span {
  color: var(--main-color);
  font-weight: 600;
}

.heading h2 {
  font-size: var(--h2-font);
}

/* RESPONSIVE */
@media (max-width: 1560px) {
  :root {
    --big-font: 3.5rem;
    --h2-font: 2rem;
  }

  .resume-text {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 1350px) {

  .home,
  .resume {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .resume-text {
    margin: 2rem 10%;
  }

  .resume-img {
    order: 2;
  }

  .resume .button {
    margin-bottom: 30px;
  }

  section {
    padding: 100px 7%;
  }
}

@media (max-width: 1140px) {
  section {
    padding: 50px 8%;
  }

  .vac {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vac-img {
    order: 2;
  }

  .vac {
    grid-gap: 1.5rem;
  }

  .vac-img {
    align-items: center;
  }
}

@media (max-width: 960px) {}

@media (max-width: 720px) {

  .home,
  .resume {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .resume-img {
    order: 2;
  }

  .resume .button {
    margin-bottom: 30px;
  }

  section {
    padding: 100px 7%;
  }
}

@media (max-width: 555px) {
  .col {
    width: 100%;
  }
}

/* *===== HITALO ======* */
/* ?===== CONTACT ======? */
#formcontact {
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15%;
  color: var(--text-1-color);
}

.contact-section {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #000;
}

.contact-form {
  width: 45%;
}

.contact-info {
  width: 50%;
  height: 100%;
  background: var(--bg-3-color);
}

.contact-info div {
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-info .info-part {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 15px 0;
}

.contact-info .info-part,
.contact-info .info-part i {
  display: flex;
  align-items: center;
}

.contact-info .info-part p {
  display: block;
  margin: 0;
  padding: 0;
}

.contact-info .info-part p span {
  font-weight: 700;
}

.contact-form h2,
.contact-info h2 {
  margin-top: 0;
  text-align: center;
  margin: 10px 0 20px 0;
}

.contact-info h2 {
  align-self: center;
}

.contact-form h2 {
  color: #fff;
}

.contact-form form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg-3-color);
  width: 100%;
  padding: 10px;
}

.contact-info,
.contact-form input,
.contact-form textarea,
.contact-form button {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  outline: none;
}

.contact-form textarea {
  height: 200px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: var(--main-color);
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.contact-form button:hover {
  background: var(--main-3-color);
}

@media (max-width: 768px) {

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* *===== WILLY ======* */
/* ?===== LOGIN ======? */

#formlogin {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}

.form-login {
  width: 430px;
  height: 420px;
  position: absolute;
  margin: auto;
  background-color: var(--bg-2-color);
  overflow: hidden;
  border-radius: 10px;
}

.center-image{
  text-align: center;
  margin-top: 5px;
}

.register-btn{
  margin-top: 5px;
}

.input-group-login {
  top: 125px;
  position: absolute;
  width: 370px;
  margin-top: 30px;
  transition: 0.5s;
}

.eye-icon {
  position: absolute;
  top: 40%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #8b8b8b;
  cursor: pointer;
  padding: 5px;
}

.form-link {
  text-align: center;
  margin-top: 20px;
  /*espacio entre elementos entre elementos*/
  margin-bottom: 10px;
}

.form-link span,
.form-link a {
  font-weight: 400;
  color: #232836;
}

.nutritional a {
  color: #0171d3;
  text-decoration: none;
}

.nutritional a:hover {
  text-decoration: underline;
}

.user a {
  color: #0171d3;
  text-decoration: none;
}

.user a:hover {
  text-decoration: underline;
}

/*para los iconos de google y facebook*/
.line {
  position: relative;
  height: 1px;
  width: 100%;
  margin: 10px 0;
  border-radius: 10px;
  background: #cfffed;
}

.line::before {
  content: "Or";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #cfffed;
  color: #b3b3b3;
  padding: 0 15px;
}

.media-options {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.facebook-icon,
.google-icon,
.linkedin-icon {
  height: 10px;
  width: 10px;
  margin: 25px 20px;
  color: #0171d3;
  font-size: 20px;
  border-radius: 50%;
  /*Centrarredessociales*/
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.facebook-icon:hover,
.google-icon:hover,
.linkedin-icon:hover {
  cursor: pointer;
  color: var(--main-color);
}

/* ?===== REGISTER ======? */

.sign-in {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-top: 5px;
  color: #232836;
  text-align: center;
}

.form-box {
  width: 430px;
  height: 440px;
  position: relative;
  margin: auto;
  background-color: var(--bg-2-color);
  overflow: hidden;
  border-radius: 10px;
}

.button-box {
  width: 260px;
  margin: 15px auto;
  position: relative;
  box-shadow: 0 0 30px 0px var(--main-color);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.nutritional-btn,
.user-btn {
  padding: 10px 25px;
  cursor: pointer;
  text-align: center;
  background-color: transparent;
  border: 0;
  outline: none;
  position: relative;
}

.form-box .button-box .btn {
  top: 0;
  left: 0;
  position: absolute;
  width: 130px;
  height: 100%;
  background: linear-gradient(to right, var(--main-color), var(--main-color));
  border-radius: 30px;
  transition: 0.5s;
}

.input-group-register {
  top: 150px;
  position: absolute;
  width: 370px;
  transition: 0.5s;
}

.input-field {
  width: 100%;
  padding: 3px 0;
  margin: 8px 0;
  /*espacio entre inputs*/
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #000000;
  outline: none;
  background: transparent;
  opacity: 0.6;
}

.input-field:hover {
  opacity: 1;
}

.register-btn {
  width: 50%;
  padding: 10px 30px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  background: linear-gradient(to right, var(--main-color), var(--main-3-color));
  border: 0;
  outline: none;
  border-radius: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.register-btn:hover {
  background: linear-gradient(to right, var(--main-3-color), var(--main-color));
}

/*check box*/
.check-box {
  margin: 10px 10px 30 0;
  font-weight: 600; 
  margin-top: -1px; 
  display: block; 
  text-decoration: solid;
  margin-left: 10px;
}

/* Estilos para el contenedor del checkbox */
.checkbox-container {
  display: flex; 
  margin-top: 10px;
  align-items: center;
}

/* Estilos para el label que contiene el texto y el checkbox */
.span-check {
  font-weight: 500;
  margin-right: 9px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  margin-top: 10px;
  align-items: center;
  color: #999;
}

/*son los espacios de los inputs del border del formulario*/
.nutritional {
  left: 30px;
}

.user {
  left: 450px;
}

/*modificaciones en el formulario para apellido y nombre*/
.last-name {
  width: 176px;
  margin-right: 6px;
}

/*modificaciones para el ojo*/
/*input-eye aplica tanto para register y para login */
.input-eye {
  position: relative;
}

@media (max-width: 460px) {
  .form-login {
    width: 380px;
  }

  .form-box {
    width: 380px;
  }
}

/* *===== MAGIPO ======* */
/* ?===== FOOTER =====? */

.footer {
  background: #111111;
  color: var(--footer-color);
  padding: 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-copy {
  display: flex;
  justify-content: center;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  flex-basis: 25%;
  padding: 10px;
  flex: 1;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: var(--footer-color);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--footer-color);
  text-decoration: none;
}

.footer-title {
  text-decoration: none;
}

.footer-info {
  margin-top: 30px;
}

.footer-info p {
  margin-bottom: 10px;
}

/* CHATBOX */
.chatbox {
  display: none;
  width: 350px;
  height: 500px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.chat-header {
  background-color: #c21c61;
  color: white;
  padding: 10px;
  text-align: left;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

.chat-column-left {
  text-align: center;
  color: #000;
}

.close-chatbox {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* Estilo para el scrollbar en el contenedor del chat */
#chat-body {
  scrollbar-width: thin; /* Para Firefox */
  scrollbar-color: #d33d5e #f1f1f1; /* Para Firefox - color del thumb y del track */
}

#chat-body::-webkit-scrollbar {
  width: 8px; /* Ancho del scrollbar */
}

#chat-body::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color de fondo del track */
}

#chat-body::-webkit-scrollbar-thumb {
  background-color: #4CAF50; /* Color del thumb */
  border-radius: 10px; /* Bordes redondeados */
  border: 2px solid #f1f1f1; /* Añadir espacio alrededor del thumb */
}


.user-message {
  background-color: #c21c61;
  color: white;
  border-radius: 15px;
  border-top-right-radius: 0;
  padding: 10px;
  margin: 5px 0;
  font-size: 14px;
  word-wrap: break-word;
  text-align: center;
  align-self: flex-end;
  margin-left: auto;
  width: auto;
  max-width: max-content;
}

/* Mensaje del bot alineado a la izquierda sin fondo */
.bot-message {
  align-self: flex-start;
  width: 70%;
  max-width: max-content;
  align-self: flex-end;
  padding: 10px;
  margin: 5px 0;
  font-size: 14px;
  color: #333;
  text-align: left;
  position: relative;
  display: flex;
  align-items: flex-start;
}

/* Icono del bot al lado izquierdo del mensaje */
.bot-message::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url('/assets/img/chatbox.png');
  background-size: cover;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.bot-message .message-time {
  font-size: 10px;
  color: #000000;
  text-align: left;
  margin-top: 2px;
}

.user-message .message-time {
  font-size: 10px;
  color: #d1c4e9;
  text-align: left;
  margin-top: 2px;
}

/* Hora alineada a la izquierda para el mensaje del bot */
.message-time {
  text-align: left;
  display: block;
}

.chat-option {
  background-color: #c21c61;
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  text-align: center;
}

.chat-option:hover {
  background-color: #a38b91;
}

.chat-input-container {
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
  padding: 5px;
}

#chat-input {
  padding: 10px;
  border: none;
  flex: 1;
  outline: none;
}

.send-button {
  background-color: #c21c61;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.send-button i {
  font-size: 18px;
}

.chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #c21c61;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.home-icon {
  cursor: pointer;
  margin-right: 10px;
  font-size: 18px;
  color: white;
}

/* Survey styles */
.survey {
  text-align: center;
  margin-top: 10px;
}

.survey p {
  font-size: 14px;
}

.survey-option {
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  color: #333;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
}

.survey-option:hover {
  background-color: #be2b58;
  color: white;
}

/* NUESTRAS REDES SOCIALES */
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-social ul li {
  margin-right: 10px;
}

.footer-social ul li a i {
  color: var(--footer-color);
}

.footer-copy {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 650px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-section h4 {
    margin-bottom: 10px;
  }

  .footer-title {
    margin-bottom: 5px;
  }
}

.home-info {
  z-index: 0;
}

.home-img {
  position: relative;
  animation: float 2s ease-in-out infinite;
  z-index: -10;
}

@keyframes float {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
  }

  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}