/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Lato:wght@400;700&display=swap');

:root{
  --brand:#e7ad33;
  --brand-dark:#c98a1c;
  --brand-deep:#b87712;
  --ink:#1f2430;
  --muted:#6b7280;
  --soft:#f6f7fb;
  --line: rgba(15,23,42,.10);
  --card: rgba(255,255,255,.88);
  --shadow: 0 18px 50px rgba(15,23,42,.10);
  --shadow2: 0 10px 30px rgba(15,23,42,.10);
  --bg-shift: 0px;
}

/* --- Sticky Footer & Layout --- */
html {
  height: 100%;
  scroll-behavior: smooth;
}

#servicos{
  scroll-margin-top: 130px;
}

/* --- General Styles --- */
body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  padding-top: 110px;
  position: relative;
  overflow-x: hidden;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../images/BG2.png") center center / cover no-repeat;
  transform: translate3d(0, var(--bg-shift, 0px), 0);
  will-change: transform;
}

/* --- New Design System Classes --- */
.page {
  background: transparent;
  color: var(--ink);
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

.section { padding: 80px 0; }

.soft { background: var(--soft); }

.h-title {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.p-muted { color: var(--muted); }

/* Make the main content area grow to push the footer down */
.container.my-5 {
  flex: 1;
}

/* --- HERO Styles --- */
.hero { padding: 80px 0 30px; }

.hero-card {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.hero-media {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 30px 90px rgba(15,23,42,.12);
  background: white;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

/* --- Homepage hero --- */
.hero-home{
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  position: relative;
  padding: 24px 0 72px;
}

/* --- Hero centrado da homepage --- */
.hero-home-centered{
  min-height: calc(100vh - 110px);
  padding: 40px 0 78px;
}

.hero-centered-wrap{
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-centered-content{
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 10px;
  position: relative;
}

.hero-centered-content::before{
  content: "";
  position: absolute;
  inset: -30px -10px;
  background:
    radial-gradient(420px 180px at 50% 25%, rgba(231,173,51,.10), transparent 70%),
    radial-gradient(480px 220px at 50% 75%, rgba(33,125,165,.06), transparent 72%);
  z-index: -1;
  filter: blur(8px);
}

.hero-kicker{
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(15,23,42,.08);
  color: var(--brand-deep);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  backdrop-filter: blur(8px);
}

.hero-home-centered .hero-title{
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .98;
  margin-bottom: 18px;
}

.hero-home-centered .hero-sub{
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-home-centered .btn-brand{
  padding: 14px 24px;
  font-size: 1rem;
}

.hero-scroll-indicator{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
  z-index: 3;
}

.hero-scroll-indicator:hover{
  color: var(--ink);
}

.hero-scroll-indicator .arrow-wrap{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 8px 22px rgba(15,23,42,.10);
  backdrop-filter: blur(8px);
  animation: heroBounce 1.8s ease-in-out infinite;
}

.hero-scroll-indicator i{
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Highlight & Chips --- */
.hl {
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(231,173,51,.18), rgba(231,173,51,.08));
  border-radius: 10px;
  padding: 0 .35em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chips-center{
  justify-content: center;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}

/* --- Navbar --- */
.main-navbar{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.84)) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(199,133,31,.14);
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  padding-top: 12px;
  padding-bottom: 12px;
  transition: all .3s ease;
}

.nav-container{
  position: relative;
}

.nav-desktop{
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.nav-desktop-left{
  min-width: 1px;
}

.nav-desktop-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-center-group{
  display: grid;
  grid-template-columns: 200px auto 200px;
  align-items: center;
  justify-items: center;
  column-gap: 10px;
}

.nav-item-left,
.nav-item-right{
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-item-left{
  justify-content: center;
}

.nav-item-right{
  justify-content: center;
}

.logo-center{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-center img{
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.08));
  transition: transform .25s ease, filter .25s ease;
}

.logo-center:hover img{
  transform: scale(1.04);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.12));
}

.logo-mobile img{
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-link-custom{
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink) !important;
  margin: 0;
  padding: 10px 14px !important;
  border-radius: 999px;
  letter-spacing: .01em;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link-custom:hover,
.nav-link-custom.active{
  color: var(--brand-deep) !important;
  background: rgba(231,173,51,.10);
  transform: translateY(-1px);
}

.nav-link-custom::after{
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after{
  transform: scaleX(1);
}

.phone-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(231,173,51,.10);
  border: 1px solid rgba(199,133,31,.45);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  line-height: 1;
  transition: all .22s ease;
  white-space: nowrap;
}

.phone-badge i{
  font-size: .95rem;
  color: var(--brand-deep);
}

.phone-badge:hover{
  background: rgba(231,173,51,.18);
  color: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(199,133,31,.14);
}

.navbar-toggle-custom{
  border: 1px solid rgba(199,133,31,.22);
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: none !important;
  background: rgba(255,255,255,.75);
}

.navbar-toggle-custom:focus{
  box-shadow: 0 0 0 .18rem rgba(231,173,51,.18) !important;
}

.navbar-toggler-icon{
  filter: invert(16%) sepia(13%) saturate(902%) hue-rotate(179deg) brightness(93%) contrast(90%);
}

.mobile-nav .nav-link-custom{
  font-size: 1.05rem;
}

/* --- Button Customization --- */
.btn {
  border-radius: 20px;
  padding: 10px 25px;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
  color: #212529;
}

.btn-brand {
  background: var(--brand);
  border: 1px solid rgba(199,133,31,.35);
  color: #1b1b1b;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 25px rgba(231,173,51,.22);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #111;
  transform: translateY(-2px);
}

/* Botão dourado personalizado */
.btn-gold {
  background-color: #ffdd57;
  border-color: #ffdd57;
  color: #212529;
}

.btn-gold:hover {
  background-color: #e0a800;
  border-color: #d39e00;
  color: #212529;
}

/* --- Service Cards & Grid --- */
.section-soft {
  background: linear-gradient(180deg, rgba(246,247,251,.7), rgba(246,247,251,.95));
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.services-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15,23,42,.14);
}

.service-top {
  padding: 18px 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(231,173,51,.16);
  border: 1px solid rgba(199,133,31,.35);
}

.service-title {
  margin: 0;
  font-weight: 900;
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-media {
  margin-top: 14px;
  padding: 0 18px;
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: white;
  box-shadow: 0 16px 35px rgba(15,23,42,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  background: white;
}

.service-body {
  padding: 16px 18px 18px;
}

.service-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.75;
}

.service-divider {
  height: 1px;
  background: rgba(15,23,42,.08);
  margin: 14px 0;
}

/* --- Contact Page Styles --- */
.contact-info-card {
  background: var(--card);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

/* --- General Card Override --- */
.card {
  background: var(--card);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

.contact-info-card a {
  color: #0f7f91;
  text-decoration: none;
}

/* --- Social Icons --- */
.social-icon {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #ffdd57;
  transform: translateY(-2px);
}

.contact-info-card .social-icon {
  color: #212529;
}

/* --- Footer simples --- */
.site-footer-simple{
  position: relative;
  padding: 56px 0 34px;
  color: var(--ink);
  overflow: hidden;
  background: transparent;
}

.site-footer-simple::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.18);
  pointer-events: none;
  z-index: 0;
}

.footer-wave{
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 620px;
  height: 260px;
  background: radial-gradient(circle at 55% 55%, rgba(255,255,255,.34), rgba(255,255,255,.18) 45%, transparent 46%);
  opacity: .8;
  pointer-events: none;
  z-index: 0;
}

.footer-simple-wrap{
  position: relative;
  z-index: 1;
}

.footer-main-row{
  align-items: start;
}

.footer-brand-block{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-brand-logo{
  display: inline-block;
  max-width: 260px;
}

.footer-brand-logo img{
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-contact-list p{
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}

.footer-contact-list p i{
  margin-right: 10px;
  color: var(--ink);
}

.footer-contact-list a{
  color: var(--ink);
  text-decoration: none;
}

.footer-contact-list a:hover{
  color: var(--brand-deep);
}

/* horários alinhados */
.footer-hours{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.footer-hours-row{
  display: grid;
  grid-template-columns: 190px 1fr;
  column-gap: 14px;
  align-items: start;
}

.footer-hours-label,
.footer-hours-value{
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
}

.footer-hours-label i{
  margin-right: 10px;
}

.footer-hours-label-indent{
  padding-left: 28px;
}

.footer-legal-block{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links-simple{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-simple li{
  margin-bottom: 16px;
}

.footer-links-simple a{
  color: var(--ink);
  text-decoration: none;
  font-size: 1.02rem;
  transition: color .2s ease;
}

.footer-links-simple a:hover{
  color: var(--brand-deep);
}

.footer-credit{
  margin-top: 26px;
  font-size: 1rem;
  color: var(--ink);
}

.footer-socials-row{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.footer-socials-simple{
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-simple{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c99367;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-social-simple:hover{
  color: #fff;
  transform: translateY(-2px);
  opacity: .9;
}

/* Responsive */
@media (max-width: 991.98px){
  .site-footer-simple{
    padding: 44px 0 24px;
  }

  .footer-brand-logo img{
    max-width: 210px;
  }

  .footer-credit{
    margin-top: 20px;
  }

  .footer-socials-row{
    margin-top: 22px;
  }

  .footer-hours-row{
    grid-template-columns: 170px 1fr;
  }
}

@media (max-width: 767.98px){
  .site-footer-simple{
    padding: 36px 0 18px;
  }

  .footer-brand-block{
    gap: 18px;
  }

  .footer-social-simple{
    width: 42px;
    height: 42px;
  }

  .footer-links-simple li,
  .footer-contact-list p{
    margin-bottom: 12px;
  }

  .footer-credit{
    margin-top: 16px;
  }

  .footer-wave{
    width: 380px;
    height: 180px;
    right: -100px;
    bottom: -30px;
  }

  .footer-hours-row{
    grid-template-columns: 1fr;
    row-gap: 2px;
  }

  .footer-hours-label-indent{
    padding-left: 0;
  }

  .footer-legal-block{
    align-items: flex-start;
  }
}

/* Responsive */
@media (max-width: 991.98px){
  .site-footer-simple{
    padding: 44px 0 24px;
  }

  .footer-brand-logo img{
    max-width: 210px;
  }

  .footer-credit{
    margin-top: 20px;
  }
}

@media (max-width: 767.98px){
  .site-footer-simple{
    padding: 36px 0 18px;
  }

  .footer-brand-block{
    gap: 18px;
  }

  .footer-social-simple{
    width: 42px;
    height: 42px;
  }

  .footer-links-simple li,
  .footer-contact-list p{
    margin-bottom: 12px;
  }

  .footer-credit{
    margin-top: 16px;
  }

  .footer-wave{
    width: 380px;
    height: 180px;
    right: -100px;
    bottom: -30px;
  }
}

/* --- Admin Dashboard Schedule View --- */
.schedule-table td {
  vertical-align: top;
  padding: 0.5rem;
  height: 100px;
}

.appointment-block {
  background-color: #fff3cd;
  border-left: 4px solid #ffdd57;
  border-radius: 5px;
  padding: 0.3rem;
  font-size: 0.8rem;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.appointment-actions {
  text-align: right;
  margin-top: auto;
}

/* --- Clean List (from Home) --- */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clean-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  color: var(--muted);
  font-weight: 650;
  font-size: .95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(231,173,51,.80);
  border: 1px solid rgba(199,133,31,.45);
}

/* --- CTA --- */
.cta {
  max-width: 1120px;
  margin: 0 auto;
  background:
    radial-gradient(700px 260px at 15% 20%, rgba(231,173,51,.22), transparent 60%),
    radial-gradient(700px 260px at 85% 10%, rgba(33,125,165,.10), transparent 60%),
    rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(10px);
}

.cta h3 {
  margin: 0 0 8px;
  font-weight: 900;
}

.cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Services Page Styles --- */
.service-choice-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-choice-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 999px;
  color: #495266;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}

.service-choice-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f0ad4e;
  box-shadow: 0 0 0 4px rgba(240,173,78,.18);
  flex: 0 0 auto;
}

.included-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-service-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  color: #667085;
  font-weight: 600;
  line-height: 1.5;
}

.included-service-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.included-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f0ad4e;
  box-shadow: 0 0 0 4px rgba(240,173,78,.14);
}

.section-label-included {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(240,173,78,.12);
  color: #8a5a12;
  border: 1px solid rgba(240,173,78,.22);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.quick-book-box {
  position: relative;
  overflow: hidden;
}

.quick-book-box::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  background: rgba(240,173,78,.10);
  border-radius: 50%;
}

#animalTabs .nav-link {
  background: transparent;
  color: #1f2430;
  transition: all .2s ease;
}

#animalTabs .nav-link.active {
  background: #eaf3ff !important;
  color: #1f2430 !important;
}

.compact-list .list-group-item {
  padding-top: .85rem;
  padding-bottom: .85rem;
}

/* --- Review Star Rating --- */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 2.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffc107;
}

/* --- Map Frame --- */
.map-frame {
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow2);
}

/* --- WhatsApp Integration --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

/* --- Mobile booking bar --- */
.mobile-booking-bar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(15,23,42,.16);
  backdrop-filter: blur(10px);
}

.mobile-booking-bar__text{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.mobile-booking-bar__text strong{
  font-size: .95rem;
  color: var(--ink);
}

.mobile-booking-bar__text span{
  font-size: .82rem;
  color: var(--muted);
}

.mobile-booking-btn{
  flex: 0 0 auto;
  padding: 10px 16px;
  font-size: .95rem;
  white-space: nowrap;
}

/* --- Tablet / navbar responsive --- */
@media (max-width: 1199.98px){
  .nav-center-group{
    grid-template-columns: 120px auto 120px;
    column-gap: 8px;
  }

  .logo-center img{
    height: 74px;
  }

  .phone-badge{
    padding: 9px 15px;
    font-size: .9rem;
  }

  .hero-home-centered .hero-title{
    font-size: clamp(2.5rem, 6vw, 4.2rem);
  }
}

@media (max-width: 991.98px){
  body{
    padding-top: 96px;
  }

  .main-navbar{
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #navbarNav{
    background: rgba(255,255,255,.95);
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid rgba(199,133,31,.14);
    box-shadow: 0 14px 28px rgba(15,23,42,.10);
  }

  .mobile-nav{
    padding-bottom: 6px;
  }

  .phone-badge{
    padding: 9px 14px;
    font-size: .88rem;
  }

  .phone-badge span{
    display: none;
  }

  .hero-home{
    min-height: calc(100vh - 96px);
    align-items: center;
    padding: 22px 0 82px;
  }

  .hero-home-centered{
    min-height: calc(100vh - 96px);
    padding: 28px 0 82px;
  }

  .hero-centered-wrap{
    min-height: calc(100vh - 190px);
  }

  .hero-home-centered .hero-title{
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .hero-home-centered .hero-sub{
    font-size: 1.04rem;
  }
}

@media (max-width: 767.98px){
  .phone-badge{
    min-width: 42px;
    justify-content: center;
  }
}

/* --- Mobile fixes --- */
@media (max-width: 767.98px){
  body{
    padding-bottom: 92px;
  }

  .whatsapp-float {
    bottom: 95px;
  }

  .hero-home{
    min-height: auto;
    padding: 18px 0 72px;
    align-items: flex-start;
  }

  .hero-home .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-home .row{
    min-height: auto;
    gap: 16px 0;
  }

  .hero-home .hero-card{
    padding: 22px;
    border-radius: 20px;
  }

  .hero-home .hero-title{
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  .hero-home .hero-sub{
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-home .chips{
    gap: 8px;
  }

  .hero-home .chip{
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    padding: 10px 14px;
  }

  .hero-centered-wrap{
    min-height: auto;
    padding-top: 20px;
  }

  .hero-centered-content{
    padding: 10px 0;
  }

  .hero-kicker{
    margin-bottom: 14px;
    font-size: .82rem;
    padding: 9px 14px;
  }

  .hero-home-centered .hero-title{
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .hero-home-centered .hero-sub{
    font-size: 1rem;
    line-height: 1.7;
  }

  .chips-center{
    gap: 8px;
  }

  .chips-center .chip{
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .hero-scroll-indicator{
    bottom: 8px;
    gap: 6px;
  }

  .hero-scroll-indicator .arrow-wrap{
    width: 38px;
    height: 38px;
  }

  .hero-scroll-indicator span{
    font-size: .82rem;
  }

  .mobile-booking-bar{
    display: flex;
  }
}

@media (max-width: 768px){
  body::before {
    transform: none !important;
    background-position: center top;
    background-size: cover;
    opacity: 1;
  }

  .hero-card{
    background: rgba(255,255,255,.68);
  }

  .card,
  .service-card,
  .contact-info-card{
    background: rgba(255,255,255,.80);
  }
}

@media (min-width: 768px){
  .mobile-booking-bar{
    display: none;
  }
}

@media (min-width: 1200px){
  .logo-center img{
    height: 86px;
  }

  .nav-link-custom{
    font-size: 1.02rem;
  }
}