/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #309acf; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e5eaee;  /* The default color of the main navmenu links */
  --nav-hover-color: #309acf; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #309acf; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.icon-badge{
  width:48px; height:48px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(var(--bs-primary-rgb, 13,110,253), .12);
  color: var(--accent-color);
  padding: 20px;
}

.object-fit-cover { object-fit: cover; }

.btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

.btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #fff;
}

.text-primary {
    --bs-text-opacity: 1;
    color: var(--accent-color) !important;
}

/* WHATSAPP */

.whatsapp-chat {
    position: fixed;
    right: 30px;
    bottom: 30px;
    font-family: Arial;
    z-index: 999999;
  }
  .answer {
    display: none;
  }
  .whatsapp-chat-checkbox {
    visibility: hidden;
  }
  .whatsapp-wrap {
    position: relative;
    right: 0;
    bottom: 50px;
    width: 380px;
    box-shadow: 0 8px 25px -5px rgba(45, 62, 79, 0.35);
    border-radius: 6px;
  }
  .whatsapp-wrap:before {
    content: "";
    position: absolute;
    background: #f6f6f7;
    bottom: -6px;
    right: 24px;
    width: 13px;
    height: 13px;
    transform: rotate(45deg);
  }
  .whatsapp-title {
    font-size: 18px;
    background-color: #24d064;
    color: white;
    line-height: 60px;
    display: flex;
    padding: 0 15px;
    border-radius: 6px 6px 0 0;
    position: relative;
    align-items: center;
  }
  .whatsapp-title i {
    font-size: 24px;
    width: 50px;
  }
  .whatsapp-title span {
    width: calc(100% - 50px);
  }
  .whatsapp-items {
    background-color: white;
    overflow: hidden;
  }
  .whatsapp-list-item {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    padding: 15px;
    cursor: pointer;
  }
  .whatsapp-list-item:hover {
    color: black;
    background-color: rgba(221, 221, 221, 0.15);
  }
  .whatsapp-list-item-avatar img {
    width: 50px;
    height: auto;
    margin-right: 5px;
  }
  .whatsapp-list-item-avatar {
    width: 50px;
  }
  .whatsapp-list-item-avatar i {
    font-size: 24px;
  }
  .whatsapp-list-item-info {
    display: grid;
    width: calc(100% - 50px);
  }
  .whatsapp-list-item-label {
    font-size: 12px;
    line-height: 1.5em;
  }
  .whatsapp-list-item-name {
    font-weight: bold;
    line-height: 1.5em;
    font-size: 14px;
  }
  .whatsapp-list-item-message {
    padding: 16px 0 20px 0;
    border-radius: 0 0 6px 6px;
    text-align: center;
    font-size: 16px;
    color: gray;
    background-color: #f6f6f7;
  }

  .whatsapp-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }
  .whatsapp-row-item:hover {
    color: #24d064;
    background: rgba(245, 245, 245, 0.4);
    padding-left: 25px;
  }
  .burbuja-whatsapp {
    display: grid;
    position: fixed;
    height: 55px;
    color: #25d366;
    right: 20px;
    bottom: 20px;
    align-items: center;
    cursor: pointer;
  }

  .bur-text-content {
    background: #25d366;
    padding: 0px 56px 0px 12px;
    border-radius: 20px;
    height: 50px;
    display: grid;
    align-items: center;
    align-content: center;
    text-align: center;
    border: 1px solid #25d366;
    width: 250px;
    box-sizing: border-box;
    position: absolute;
    right: 20px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #fff;
  }

  .bur-txt-1 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .bur-txt-2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 11px;
  }

  .burbuja-whatsapp:hover .bur-txt-1 {
    margin-left: -339px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .bur-txt-1::after {
    content: "Click Aquí";
    position: absolute;
    text-align: center;
    width: 209px;
    color: #fff;
  }

  .burbuja-whatsapp:hover .bur-txt-2 {
    color: #fff;
  }

  .burbuja-whatsapp:hover .bur-text-content {
    background: #25d366;
  }
  .burbuja-whatsapp i {
    color: #fff;
    font-size: 28px;
  }
  .bur-icon-content {
    width: 55px;
    height: 55px;
  }

  .bur-icon-img {
    position: relative;
    z-index: 9;
  }

  .pulsar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .pulsar-1,
  .pulsar-2,
  .pulsar-3 {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    animation: radial-pulsar 2.3s infinite;
  }

  .pulsar-1 {
    background: rgba(37, 211, 102, 1);
  }

  .pulsar-2 {
    animation-delay: 1.3333s;
  }

  .pulsar-3 {
    animation-delay: 2.6666s;
  }

  .bur-space-brdr {
    box-shadow: 0 0 0 1em rgb(255, 255, 255);
    height: 100%;
    width: 100%;
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
  }

  @keyframes radial-pulsar {
    0% {
      box-shadow: 0 0 0 0em rgba(37, 211, 102, 0.8);
    }

    50% {
      box-shadow: 0 0 0 1em rgba(255, 100, 100, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(255, 100, 100, 0);
    }
  }

  .bg-primary {
    padding-top: 100px;
    --bs-bg-opacity: 1;
    background-color: #000 !important;
}
