
* {
  box-sizing: border-box;
  letter-spacing: 0.7pt;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'montserrat black';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/montserrat-black.ttf') format('truetype');
}

@font-face {
  font-family: 'montserrat bold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/montserrat-bold.ttf') format('truetype');
}

@font-face {
  font-family: 'montserrat extrabold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/montserrat-extrabold.ttf') format('truetype');
}

@font-face {
  font-family: 'montserrat medium';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/montserrat-medium.ttf') format('truetype');
}

@font-face {
  font-family: 'montserrat regular';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/montserrat-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'montserrat semibold';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/montserrat-semibold.ttf') format('truetype');
}


h1 {
  font-family: 'montserrat black', sans-serif;
}

h2 {
  font-family: 'montserrat extrabold', sans-serif;
}

h3 {
  font-family: 'montserrat bold', sans-serif;
}

b {
  font-family: 'montserrat semibold', sans-serif;
}

body {
  background-color: #fff;
  color: #000000;
  font-family: 'montserrat regular', sans-serif;
  font-size: clamp(12pt, 1vw, 30pt);
  margin: 0;
  padding: 0;
}

button {
  font-family: 'montserrat regular', sans-serif;
  font-size: clamp(12pt, 1vw, 30pt);
}

.main-container {
  box-sizing: border-box;
  margin-left: 40px;
  margin-right: 40px;
  max-width: 100%;
}

.main-container * {
  box-sizing: border-box;
  max-width: 100%;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.section-title .dash {
  color: #e6007d;
  font-family: 'montserrat black', sans-serif;
  font-size: clamp(18pt, 2vw, 36pt);
  margin-right: 10px;
  margin-top: -3px;
}

.section-title .title-text {
  color: #000000;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-transition {
  background: #fff;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 360ms ease, transform 360ms ease;
  will-change: opacity, transform;
  z-index: 9999;
}

.page-transition--visible {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition,
  .page-transition--visible {
    transition: none;
  }
}

.whatsapp-float-container {
  align-items: center;
  bottom: 25px;
  display: flex;
  gap: 10px;
  position: fixed;
  right: 25px;
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-float-container.closing {
  opacity: 0;
  transform: translateY(50px);
}

.whatsapp-float {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.whatsapp-icon-wrapper {
  position: relative;
}

.whatsapp-icon {
  background-color: #2aba2a;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  height: 65px;
  padding: 10px;
  transition: transform 0.3s ease;
  width: 65px;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-close {
  align-items: center;
  background: #e6007d;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  height: 24px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: -8px;
  top: -8px;
  transition: transform 0.3s ease, background 0.3s ease;
  width: 24px;
  z-index: 2;
}

.whatsapp-close:hover {
  background: #ff5ca3;
  transform: scale(1.1);
}

.whatsapp-bubble {
  background-color: #000000;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 10px 15px;
  white-space: nowrap;
  opacity: 0.5;
}

@media (max-width: 890px) {

  .section-title {
    font-size: 4vw;
  }

  .section-title .dash {
    font-size: 4vw;
  }

  .whatsapp-float-container {
    bottom: 50px;
    gap: 10px;
    right: 25px;
  }

  .whatsapp-icon {
    height: 60px;
    padding: 10px;
    width: 60px;
  }

  .whatsapp-bubble {
    border-radius: 100px;
    font-size: 4vw;
    padding: 10px 15px;
  }

  .whatsapp-close {
    font-size: 18px;
    height: 20px;
    right: -6px;
    top: -6px;
    width: 20px;
  }
}
