:root {
  --color-blue: #061f33;
  --color-gold: #b28a4a;
  --color-gold-light: #c9a869;
  --color-text: #1f2933;
  --color-white: #ffffff;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
}

.site-nav a,
.btn {
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", serif;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 76px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6, 31, 51, 0.08);
  transition: 0.3s ease;
}

.site-header--scrolled {
  height: 66px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.site-header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand img {
  width: 230px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  color: var(--color-blue);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--color-gold);
}

/* HAMBURGER */

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-blue);
  transition: 0.3s ease;
}

.nav-toggle--open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO */

.hero {
  min-height: 720px;
  height: 100vh;
  max-height: 860px;
  padding-top: 76px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("../images/bg-hero.png");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 36%,
    rgba(255, 255, 255, 0.25) 72%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__content {
  width: min(100%, 500px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: min(100%, 390px);
  margin-bottom: 22px;
}

.hero__claim {
  font-size: 17px;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 30px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.3s ease;
}

.btn--gold {
  background: var(--color-gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--color-blue);
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }

  .site-header__brand img {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 360px);
    height: 100vh;
    background: var(--color-blue);
    padding: 110px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.18);
    transition: 0.35s ease;
  }

  .site-nav--open {
    right: 0;
  }

  .site-nav a {
    color: #fff;
    font-size: 15px;
  }

  .nav-toggle--open span {
    background: #fff;
  }

  .hero {
    min-height: 680px;
    height: 100vh;
    padding-top: 70px;
    background-position: center bottom;
    align-items: flex-start;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.88) 45%,
      rgba(255, 255, 255, 0.42) 100%
    );
  }

  .hero__container {
    padding-top: 70px;
  }

  .hero__content {
    margin-inline: auto;
  }

  .hero__logo {
    width: min(100%, 310px);
  }

  .hero__claim {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ==================================================
   SERVICES
================================================== */

.services {
  padding: 110px 0 120px;

  background: #f7f6f4;
}

/* HEADER */

.services__heading {
  text-align: center;

  margin-bottom: 75px;
}

.services__subtitle {
  display: block;

  margin-bottom: 16px;

  color: var(--color-gold);

  font-size: 22px;

  letter-spacing: 0.03em;

  text-transform: uppercase;
}

.services__heading h2 {
  font-size: clamp(40px, 4vw, 62px);

  line-height: 1.1;

  font-weight: 500;

  color: var(--color-blue);

  margin-bottom: 24px;
}

/* DIVIDER */

.services__divider {
  display: flex;

  justify-content: center;

  align-items: center;
}

.services__divider::before,
.services__divider::after {
  content: "";

  width: 72px;

  height: 1px;

  background: var(--color-gold);
}

.services__divider span {
  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--color-gold);

  margin: 0 16px;
}

/* GRID */

.services__grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 0;
}

/* ITEM */

.service-item {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 10px 18px;

  position: relative;
}

.service-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 12px;

  right: 0;

  width: 1px;

  height: 118px;

  background: rgba(178, 138, 74, 0.45);
}

/* ICON */

.service-item img {
  width: 78px;

  height: 78px;

  object-fit: contain;

  margin-bottom: 22px;
}

/* TITLE */

.service-item h3 {
  font-size: 20px;

  font-weight: 500;

  color: var(--color-blue);

  text-transform: uppercase;

  line-height: 1.3;
}

/* CTA */

.services__cta {
  display: flex;

  justify-content: center;

  margin-top: 72px;
}

.btn-services {
  min-width: 300px;

  min-height: 54px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 12px 34px;

  background: var(--color-blue);

  color: white;

  text-decoration: none;

  text-transform: uppercase;

  font-size: 16px;

  letter-spacing: 0.03em;

  transition: 0.3s ease;
}

.btn-services:hover {
  background: var(--color-gold);

  transform: translateY(-2px);
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 980px) {
  .services {
    padding: 90px 0;
  }

  .services__heading {
    margin-bottom: 55px;
  }

  .services__subtitle {
    font-size: 18px;
  }

  .services__heading h2 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 40px 0;
  }

  .service-item {
    padding: 0 16px;
  }

  .service-item::after {
    display: none;
  }

  .service-item img {
    width: 62px;

    height: 62px;

    margin-bottom: 18px;
  }

  .service-item h3 {
    font-size: 17px;
  }

  .btn-services {
    width: 100%;

    min-width: unset;

    max-width: 340px;
  }
}

/* ==================================================
   ABOUT
================================================== */

.about {
  display: grid;

  grid-template-columns:
    52%
    48%;

  min-height: 540px;

  background: #f7f6f4;
}

/* ==================================================
   CONTENT
================================================== */

.about__content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 70px 64px;
}

/* SUBTITLE */

.about__subtitle {
  display: block;

  margin-bottom: 18px;

  color: var(--color-gold);

  font-size: 22px;

  text-transform: uppercase;
}

/* TITLE */

.about__content h2 {
  max-width: 560px;

  font-size: clamp(42px, 4vw, 66px);

  line-height: 1.12;

  font-weight: 500;

  color: var(--color-blue);

  margin-bottom: 28px;
}

/* DIVIDER */

.about__divider {
  width: 46px;

  height: 2px;

  background: var(--color-gold);

  margin-bottom: 34px;
}

/* TEXT */

.about__content p {
  max-width: 560px;

  font-size: 18px;

  line-height: 2;

  color: var(--color-blue);

  margin-bottom: 34px;
}

/* BUTTON */

.about__button {
  width: fit-content;

  min-width: 180px;

  height: 52px;

  padding: 0 28px;

  border: none;

  background: var(--color-gold);

  color: white;

  font-size: 15px;

  text-transform: uppercase;

  cursor: pointer;

  transition: 0.3s ease;
}

.about__button:hover {
  background: var(--color-blue);

  transform: translateY(-2px);
}

/* ==================================================
   IMAGE
================================================== */

.about__image {
  position: relative;

  overflow: hidden;
}

.about__image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

/* ==================================================
   MOBILE
================================================== */

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

  .about__content {
    padding: 64px 28px;
  }

  .about__content h2 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .about__content p {
    font-size: 17px;

    line-height: 1.85;
  }

  .about__image {
    height: 360px;
  }
}

/* ==================================================
   MODAL
================================================== */

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.about-modal--show {
  display: flex;
}

.about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 51, 0.72);
}

.about-modal__box {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  background: #f7f6f4;
  padding: 56px;
  color: var(--color-blue);
}

.about-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  background: transparent;
  font-size: 36px;
  color: var(--color-blue);
  cursor: pointer;
}

.about-modal__subtitle {
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 20px;
}

.about-modal__box h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  margin: 18px 0 28px;
}

.about-modal__box p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .about-modal {
    padding: 0;
    align-items: flex-end;
  }

  .about-modal__box {
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 46px 26px 34px;
  }
}

.useful-info {
  padding: 90px 0;
  background: #fff;
}

.useful-info__heading {
  text-align: center;
  margin-bottom: 50px;
}

.useful-info__heading h2 {
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 18px;
}

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

.section-divider::before,
.section-divider::after {
  content: "";
  width: 64px;
  height: 1px;
  background: var(--color-gold);
}

.section-divider span {
  width: 7px;
  height: 7px;
  margin: 0 16px;
  border-radius: 50%;
  background: var(--color-gold);
}

.faq {
  width: min(100%, 820px);
  margin: 0 auto;
  border: 1px solid var(--color-gold);
}

.faq__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gold);
}

.faq__question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-blue);
  font-family: inherit;
  font-size: 18px;
  text-align: left;
}

.faq__question::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-right: 18px;
  flex-shrink: 0;
}

.faq__question span {
  flex: 1;
}

.faq__question strong {
  color: var(--color-gold);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.35s ease;
}

.faq__answer p {
  overflow: hidden;
  padding: 0 70px;
  margin: 0;
  color: var(--color-blue);
  font-size: 17px;
  line-height: 1.7;
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item--open .faq__answer p {
  padding-bottom: 18px;
}

.faq__item--open .faq__question strong {
  transform: rotate(45deg);
}

.useful-info__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-info {
  min-width: 330px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn-info:hover {
  background: var(--color-gold);
}

@media (max-width: 768px) {
  .useful-info {
    padding: 70px 0;
  }

  .faq__question {
    padding: 14px 18px;
    font-size: 16px;
  }

  .faq__answer p {
    padding: 0 46px;
    font-size: 16px;
  }

  .btn-info {
    width: 100%;
    min-width: unset;
    max-width: 340px;
    text-align: center;
    padding: 0 20px;
  }
}

.contact {
  padding: 80px 0 90px;
  background: #f7f6f4;
  border-bottom: 4px solid var(--color-blue);
}

.contact__heading {
  text-align: center;
  margin-bottom: 34px;
}

.contact__heading h2 {
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
}

.contact__heading p {
  margin-top: 22px;
  color: var(--color-blue);
  font-size: 20px;
  line-height: 1.25;
}

.contact__form {
  width: min(100%, 840px);
  margin: 0 auto;
}

.contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact__left {
  display: grid;
  gap: 12px;
}

.contact input,
.contact textarea {
  width: 100%;
  border: 1px solid var(--color-gold);
  background: transparent;
  padding: 0 18px;
  color: var(--color-blue);
  font-family: inherit;
  font-size: 17px;
  outline: none;
}

.contact input {
  height: 50px;
}

.contact textarea {
  height: 173px;
  padding-top: 14px;
  resize: none;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #8d96a0;
}

.contact__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.contact__button {
  width: 200px;
  height: 54px;
  border: none;
  background: var(--color-gold);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact__button:hover {
  background: var(--color-blue);
}

.contact__response {
  margin-top: 18px;
  text-align: center;
  color: var(--color-blue);
  font-size: 17px;
}

.contact__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (max-width: 768px) {
  .contact {
    padding: 70px 0;
  }

  .contact__heading p {
    font-size: 17px;
  }

  .contact__fields {
    grid-template-columns: 1fr;
  }

  .contact textarea {
    height: 150px;
  }

  .contact__actions {
    justify-content: center;
  }

  .contact__button {
    width: 100%;
  }
}

/* ==================================================
   CONTACT STRIP
================================================== */

.contact-strip {
  padding: 90px 0;

  background: var(--color-blue);

  color: white;
}

/* HEADING */

.contact-strip__heading {
  text-align: center;

  margin-bottom: 70px;
}

.contact-strip__heading h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* GRID */

.contact-strip__grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 0;
}

/* ITEM */

.contact-strip__item {
  position: relative;

  text-align: center;

  padding: 0 24px;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.contact-strip__item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 14px;

  right: 0;

  width: 1px;

  height: 110px;

  background: rgba(178, 138, 74, 0.55);
}

/* ICON */

.contact-strip__item img {
  width: 42px;

  height: 42px;

  object-fit: contain;

  margin-bottom: 24px;
}

/* TEXT */

.contact-strip__item p {
  font-size: 18px;

  line-height: 1.5;

  color: white;
}

/* CTA */

.contact-strip__cta {
  display: flex;

  justify-content: center;

  margin-top: 72px;
}

.contact-strip__button {
  min-width: 340px;

  min-height: 60px;

  padding: 0 34px;

  border: 1px solid var(--color-gold);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  color: white;

  text-decoration: none;

  text-transform: uppercase;

  font-size: 18px;

  transition: 0.3s ease;
}

.contact-strip__button img {
  width: 28px;

  height: 28px;
}

.contact-strip__button:hover {
  background: var(--color-gold);
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 980px) {
  .contact-strip {
    padding: 70px 0;
  }

  .contact-strip__heading {
    margin-bottom: 50px;
  }

  .contact-strip__grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .contact-strip__item {
    padding: 0;
  }

  .contact-strip__item::after {
    display: none;
  }

  .contact-strip__item img {
    margin-bottom: 16px;
  }

  .contact-strip__item p {
    font-size: 17px;
  }

  .contact-strip__cta {
    margin-top: 54px;
  }

  .contact-strip__button {
    width: 100%;

    min-width: unset;

    font-size: 16px;

    padding: 0 20px;
  }
}

/* ==================================================
   LOCATION
================================================== */

.location {
  position: relative;

  height: 430px;

  overflow: hidden;
}

/* MAP */

.location__map {
  position: absolute;

  inset: 0;
}

.location__map iframe {
  width: 100%;

  height: 100%;

  border: 0;

  filter: grayscale(0.05) contrast(1.02);
}

/* CARD */

.location__card {
  position: absolute;

  top: 50%;

  right: 7%;

  transform: translateY(-50%);

  width: min(100%, 520px);

  background: rgba(247, 246, 244, 0.96);

  padding: 54px 58px;

  z-index: 2;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* SUBTITLE */

.location__subtitle {
  display: block;

  margin-bottom: 24px;

  color: var(--color-gold);

  font-size: 34px;

  text-transform: uppercase;
}

/* TEXT */

.location__card p {
  font-size: 20px;

  line-height: 1.7;

  color: var(--color-blue);

  margin-bottom: 34px;
}

/* BUTTON */

.location__button {
  min-width: 180px;

  min-height: 56px;

  padding: 0 28px;

  background: var(--color-gold);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  color: white;

  text-transform: uppercase;

  font-size: 17px;

  transition: 0.3s ease;
}

.location__button:hover {
  background: var(--color-blue);

  transform: translateY(-2px);
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 900px) {
  .location {
    height: 620px;
  }

  .location__card {
    left: 20px;

    right: 20px;

    bottom: 20px;

    top: auto;

    transform: none;

    width: auto;

    padding: 34px 28px;
  }

  .location__subtitle {
    font-size: 28px;
  }

  .location__card p {
    font-size: 17px;

    line-height: 1.6;
  }

  .location__button {
    width: 100%;
  }
}

.footer {
  padding: 56px 0 64px;
  background: var(--color-blue);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.45fr;
  gap: 48px;
}

.footer__brand {
  padding-right: 56px;
  border-right: 1px solid rgba(178, 138, 74, 0.75);
}

.footer__brand img {
  width: 230px;
  display: block;
  margin-bottom: 28px;
}

.footer__brand p {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 32px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social img {
  width: 30px;
  height: 30px;
}

.footer__col h3,
.footer__contact h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col a,
.footer__contact a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 2.1;
  transition: 0.3s ease;
}

.footer__col a:hover,
.footer__contact a:hover,
.footer__bottom a:hover {
  color: var(--color-gold);
}

.footer__contact {
  padding-left: 56px;
  border-left: 1px solid rgba(178, 138, 74, 0.75);
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.footer__contact img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__bottom {
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid rgba(178, 138, 74, 0.9);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

@media (max-width: 980px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__brand,
  .footer__contact {
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand img {
    width: 50px;
  }
}

.contact__button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact__response {
  margin-top: 18px;
  text-align: center;
  font-size: 17px;
  min-height: 24px;
}

.contact__response--success {
  color: #1f7a3f;
}

.contact__response--error {
  color: #b42318;
}

.contact-strip__item a {
  color: white;

  text-decoration: none;

  font-size: 18px;

  line-height: 1.5;

  transition: 0.3s ease;
}

.contact-strip__item a:hover {
  color: var(--color-gold);
}

@media (max-width: 980px) {
  .footer__col {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }

  .footer__brand p {
    text-align: center;
  }
  .footer__contact p {
    text-align: center;
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25d366;
  color: #fff;

  padding: 14px 18px;
  border-radius: 999px;

  border: 2px solid rgba(255, 255, 255, 0.9);

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.whatsapp-float span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;

    padding: 0;

    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}
