@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #416ba9;
  --primary-lighter: #0072bb;
  --primary-rgba: rgba(65, 107, 169, 0.64);
  --primary-linear: linear-gradient(
    90deg,
    #416ba9 0%,
    rgba(0, 114, 187, 0) 100%
  );
  --primary-linear-reversed: linear-gradient(
    90deg,
    rgba(0, 114, 187, 0) 0%,
    #416ba9 100%
  );
  --white: #fff;
  --black: #000;
  --font: "Gotham", sans-serif;
  --youtube-red: #ff0000;
  --transition: all 0.2s ease-in-out;
  --hover-dark: #2f5183;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Gotham", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol,
li {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 1px solid transparent;
}

input:focus {
  outline: none;
  border: 1px solid transparent;
}

.contact-float {
  position: fixed;
  right: 0;
  bottom: 24px;
  width: 106.04px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
}

.contact-float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 106.04px;
  height: 88px;
  color: #FFFFFF;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-float-btn:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

.contact-float-whatsapp {
  background: #24B259;
}

.contact-float-contact {
  background: #21409A;
}

.contact-float-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 4px;
}

.contact-float-contact .contact-float-icon {
  width: 30px;
  height: 30px;
}

.contact-float-text {
  display: block;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-float {
    width: 56px;
  }
  .contact-float-btn {
    width: 56px;
    height: 56px;
    font-size: 0;
  }
  .contact-float-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 0;
  }
  .contact-float-contact .contact-float-icon {
    width: 22px;
    height: 22px;
  }
}

.contact-inline-wrap {
  position: relative;
  overflow: visible;
}
.contact-inline-wrap .contact-float-inline {
  position: absolute !important;
  right: 0;
  top: 20%;
  bottom: auto;
  transform: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0;
}