@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

.light {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #f1f8fc;
  --darkOne: #312f3a;
  --darkTwo: #45424b;
  --lightOne: #919191;
  --lightTwo: #aaa;
  --success: #0ABF30;
  --error: #E24D4C;
  --errorCopySource: #E24D4C;
  --warning: #E9BD0C;
  --info: #3498DB;
  --dark: #34495E;
}

.dark {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #192e3a;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #ccc;
  --lightTwo: #e7e3e3;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

body.dark-theme {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #192e3a;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #ccc;
  --lightTwo: #e7e3e3;
}
.big-wrapper.dark-theme {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #192e3a;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #ccc;
  --lightTwo: #e7e3e3;
}

.big-wrapper {
  position: relative;
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

header {
  position: relative;
  z-index: 70;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  width: 150px;
  margin-right: 0.6rem;
  margin-top: -0.6rem;
}

.logo h3 {
  color: var(--darkTwo);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.links ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--lightTwo);
  margin-left: 4.5rem;
  display: inline-block;
  transition: 0.3s;
}
li{
  list-style: none;
}

.typing-animation {
  display: inline-flex;
}

.typing-animation .typing-dot {
  height: 7px;
  width: 7px;
  opacity: 0.7;
  margin: 0px 3px;
  border-radius: 50%;
  background-color: #343541;
  animation: animateDots 1.5s var(--delay) ease-in-out infinite;
}

@keyframes animateDots {
  0%, 44% {
      transform: translateY(0px);
  }
  22% {
      opacity: 0.4;
      transform: translateY(-6px);
  }
  44% {
      opacity: 0.2;
  }
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--darkOne);
  text-transform: capitalize;
  line-height: 1.4;
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
  text-align: justify;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  width: 390px;
  margin-left: 15px;
  transform: translate(15%, -20px);
}
.interrogative { 
  margin-left: 10px;
  color: #ff1a75;
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkTwo);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}
.toggle-btn .change-theme:hover {
  color: #fff;
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}


@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}

/* CHATBOT ANIMACIONES */
button.chatLauncher.open {
  animation-name: slideInRight;
  opacity: 1;
}
button.chatLauncher {
  animation-duration: 0.5s;
  transition-duration: 0.5s;
  position: fixed;
  bottom: 28px;
  right: 35px;
  z-index: 9999;
  border: none;
  padding: 1em;
  margin: 0;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
  color: #454545;
  font-family: sans-serif;
  font-size: 1rem;
  cursor: pointer;
  text-align: right;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 264px;
}

.message {
  margin-bottom: 45px !important;
}

.chatbot_floating {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: bounce-7;
  animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
}

.chatbot_floating img {
  width: 120px;
  aspect-ratio: auto 120 / 120;
  height: 120px;
  overflow-clip-margin: content-box;
  overflow: clip;
}

.triangulo-2 {
  width: 0;
  height: 0;
  border-width: 10px;
  border-color: #fff;
  border-style: solid;
  position: absolute;
  z-index: 10;
  right: 45%;
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
}



@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
      transform: translate3d(0, 0, 0);
  }
}

@keyframes bounce-7 {
  0% {
    transform: scale(1,1) translateY(0);
  }
  10% {
      transform: scale(1.1,.9) translateY(0);
  }
  30% {
      transform: scale(.9,1.1) translateY(-24px);
  }
  50% {
      transform: scale(1.05,.95) translateY(0);
  }
  57% {
      transform: scale(1,1) translateY(-8px);
  }
  64% {
      transform: scale(1,1) translateY(0);
  }
  100% {
      transform: scale(1,1) translateY(0);
  }
}


/* ANIMACIONES CHATBOX */
.chatbot {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  /* pointer-events: none; */
  transform-origin: bottom right;
  box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
              0 32px 64px -48px rgba(0,0,0,0.5);
  transition: all 0.1s ease;
  z-index: 100;
  transition-duration: 0.5s;
}
.chatbot_container img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
body.show-chatbot .chatbot {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.chatbot header {
  padding: 16px 0;
  position: relative;
  text-align: center;
  color: #fff;
  background: #5bacdf;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.chatbot header span {
  position: absolute;
  right: 15px;
  top: 50%;
  display: none;
  cursor: pointer;
  transform: translateY(-50%);
}
header h2 {
  font-size: 1.4rem;
}
.chatbot .chatbox {
  overflow-y: auto;
  height: 510px;
  padding: 30px 20px 100px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
  width: 6px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 25px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}
.chatbox .chat {
  display: flex;
  list-style: none;
}
.chatbox .outgoing {
  margin: 20px 0;
  justify-content: flex-end;
}
.chatbox .incoming span {
  width: 32px;
  height: 32px;
  color: #fff;
  cursor: default;
  text-align: center;
  line-height: 32px;
  align-self: flex-end;
  border-radius: 4px;
  margin: 0 10px 7px 0;
}
.chatbox .chat p {
  white-space: pre-wrap;
  padding: 12px 16px;
  border-radius: 10px 10px 0 10px;
  max-width: 75%;
  color: #fff;
  font-size: 0.95rem;
  background: #5bacdf;
}
.chatbox .incoming p {
  border-radius: 10px 10px 10px 0;
}
.chatbox .chat p.error {
  color: #721c24;
  background: #f8d7da;
}
.chatbox .incoming p {
  color: #000;
  background: #f2f2f2;
}
.chatbot .chat-input {
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 3px 20px;
  border-top: 1px solid #ddd;
}
.chat-input textarea {
  height: 55px;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  max-height: 180px;
  padding: 15px 15px 15px 0;
  font-size: 0.95rem;
}
.chat-input span {
  align-self: flex-end;
  color: #5bacdf;
  cursor: pointer;
  height: 55px;
  display: flex;
  align-items: center;
  visibility: hidden;
  font-size: 1.35rem;
}
.chat-input textarea:valid ~ span {
  visibility: visible;
}

.chatbot_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.home_chatbot {
  font-size: 15px;
}
#circle {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.online {
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uil-bars {
  cursor: pointer;
}

.links_magio {
  color: #5bacdf;
}
.links_magio:hover {
  color: #64bcf4;
}


/* START ANIMACIONES POPUP */
.big-wrapper.dark-body {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.popup-opened .activate-btn {
  pointer-events: none;
}

.popup-opened .contentBox {
  z-index: 1;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  animation: popupScaleIn 0.5s ease-out forwards;
  z-index: 102;
}

@keyframes popupScaleIn {
  0% {
      opacity: 0;
      transform: translate(-50%, -200%);
  }
  100% {
      opacity: 1;
      transform: translate(-50%, -50%);
  }
}

.popup.closing {
  animation: popupScaleOut 0.5s ease-in forwards;
}

@keyframes popupScaleOut {
  0% {
      opacity: 1;
      transform: translate(-50%, -50%);
  }
  100% {
      opacity: 0;
      transform: translate(-50%, -200%);
  }
}


.activate-btn {
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.contentBox {
  position: relative;
  width: 600px;
  height: 400px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contentBox .imgBx {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentBox .imgBx::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: #e7ffe0;
  border-radius: 50%;
}
.contentBox .imgBx img {
  position: relative;
  max-width: 250px;
  z-index: 1;
}
.contentBox .content {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentBox .content h3 {
  color: #333;
  line-height: 1em;
  font-weight: 300;
  font-size: 2em;
}
.contentBox .content h2 {
  font-size: 50px;
  color: #ff4d54;
  line-height: 1em;
  margin-bottom: 15px;
}
.contentBox .content h2 span {
  color: #333;
  font-size: 0.75em;
  /* text-transform: uppercase; */
}
.contentBox .content p {
  font-weight: 300;
  margin: 10px 0;
}
.contentBox .content button {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4d54;
  color: #fff;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.input {
  max-width: 300px;
  height: 44px;
  background-color: #05060f0a;
  border-radius: .5rem;
  padding: 0 1rem;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25,.01,.25,1) 0s, color .3s cubic-bezier(.25,.01,.25,1) 0s,background .2s cubic-bezier(.25,.01,.25,1) 0s;
}
.container_labels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.input-group {
  margin: 5px 0;
} 
.subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscribe img {
  width: 35px;
  height: 30px;
  margin-left: 10px;
  animation: floatAnimation 1s infinite alternate;
}
@keyframes floatAnimation {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}

.label {
  display: block;
  margin-bottom: .3rem;
  font-size: .9rem;
  font-weight: bold;
  color: #05060f99;
  transition: color .3s cubic-bezier(.25,.01,.25,1) 0s;
}

.input:hover, .input:focus, .input-group:hover .input {
  outline: none;
  border-color: #ff4d54;
}

.input-group:hover .label, .input:focus {
  color: #05060fc2;
}

/**
  *  Estilos para las alertas
*/
.notifications {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10;
}
.notifications :where(.toast, .column) {
  display: flex;
  align-items: center;
}
.notifications .toast {
  width: 450px;
  position: relative;
  overflow: hidden;
  list-style: none;
  border-radius: 4px;
  padding: 16px 17px;
  margin-bottom: 10px;
  /* background: var(--light); */
  justify-content: space-between;
  animation: show_toast 0.3s ease forwards;
}

.notifications .toast.success {
  background: #c3e6cb;
}
.notifications .toast.warning {
  background: #ffeeba;
}
.notifications .toast.error {
  background: #f5c6cb;
}
.notifications .toast.errorCopySource {
  background: #f5c6cb;
}
.notifications .toast.info {
  background: #bee5eb;
}

.color.success {
  color: #155724;
}
.color.warning {
  color: #856404;
}
.color.error {
  color: #721c24;
}
.color.info {
  color: #0c5460;
}
@keyframes show_toast {
  0% {
    transform: translateX(100%);
  }
  40% {
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-10px);
  }
}
.notifications .toast.hide {
  animation: hide_toast 0.3s ease forwards;
}
@keyframes hide_toast {
  0% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(0%);
  }
  80% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(calc(100% + 20px));
  }
}
.column {
  padding: 3px;
}
.toast::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  bottom: 0px;
  left: 0px;
  animation: progress 5s linear forwards;
}
@keyframes progress {
  100% {
    width: 0%;
  }
}
.toast.success::before, .btn#success {
  background: #0ABF30;
}
.toast.error::before, .btn#error {
  background: #E24D4C;
}
.toast.errorCopySource::before, .btn#error {
  background: #E24D4C;
}
.toast.warning::before, .btn#warning {
  background: #E9BD0C;
}
.toast.info::before, .btn#info {
  background: #3498DB;
}
.toast .column i {
  font-size: 1.75rem;
}
.toast.success .column i {
  color: #0ABF30;
}
.toast.error .column i {
  color: #E24D4C;
}
.toast.errorCopySource .column i {
  color: #E24D4C;
}
.toast.warning .column i {
  color: #E9BD0C;
}
.toast.info .column i {
  color: #3498DB;
}
.toast .column span {
  font-size: 1.07rem;
  margin-left: 12px;
}
.toast i:last-child {
  color: #aeb0d7;
  /* cursor: pointer; */
}
.toast i:last-child:hover {
  color: #34495E;
  cursor: pointer;
}
.buttons .btn {
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 5px;
  color: var(--light);
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 4px;
}

/* Now, make it responsive */
@media (max-width: 767px) {
  .contentBox {
      width: 300px;
      height: auto;
      flex-direction: column;
  }
  .contentBox .imgBx {
      height: 200px;
      transform: translateY(-50px);
  }
  .contentBox .imgBx::before {
      color: #fff;
  }
  .contentBox .content {
      height: auto;
      text-align: center;
      padding: 20px;
      padding-top: 0;
  }
  .close {
      top: -50px;
      right: -10px;
  }
  .popup {
      top: 55%;
  }
  .contentBox .content h3 {
      display: none;
  }
  
}

/* END ANIMACIONES POPUP */





@media screen and (max-width: 870px) {
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links .btn {
    background: none;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
    width: 100%;
    transform: none;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }
}

@media only screen and (max-width: 600px){
  .message {
      width: 80%;
      margin-left: 55px;
      margin-top: 40px;
      text-align: right;
  }
  .chatbot_floating {
    margin-left: 70px;
    margin-top: 40px;
    width: 90;
    text-align: right;
  }
  .triangulo-2 {
    width: 0;
    height: 0;
    border-width: 10px;
    border-color: #fff;
    border-style: solid;
    position: absolute;
    z-index: 10;
    right: 45%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
  }
}

@media (max-width: 490px) {
  .chatbot {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
  .chatbot .chatbox {
    height: 90%;
    padding: 25px 15px 100px;
  }
  .chatbot .chat-input {
    padding: 5px 15px;
  }
  .chatbot header span {
    display: block;
  }
}

@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }
}
