/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0b71b3;
  --primary-pink: #bb4291;
  --light-blue: #7fc0ea;
  --white: #ffffff;
  --light-gray: #f5f9fc;
  --dark-gray: #2c3e50;
  --text-gray: #5a6c7d;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-blue) 100%);
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  max-width: 100%;
  overflow-x: hidden !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 40px;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px var(--shadow-hover);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.logo img {
  height: 130px;
}

@media (max-width: 768px) {
  .logo img {
    height: 100px;
  }
}


.logo-text {
  font-size: 1.75rem;
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-pink);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-reserve {
  background: var(--primary-pink);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-reserve:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 113, 179, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section with Video */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-mobile {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 113, 179, 0.7) 0%, rgba(127, 192, 234, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(187, 66, 145, 0.4);
}

.btn-secondary {
  background: var(--primary-pink);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 113, 179, 0.4);
}

.btn-light {
  background: var(--white);
  color: var(--primary-blue);
}

.btn-light:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 113, 179, 0.4);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-pink);
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 2rem;
  color: var(--primary-blue);
  text-align: center;
  font-weight: 700;
  margin-bottom: 4rem;
}

/* Services Section */
.section-services {
  background: var(--light-gray);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-item-reverse {
  direction: rtl;
}

.service-item-reverse>* {
  direction: ltr;
}

.service-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-content h4 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}


/* Diferenciais Section */
.section-diferenciais {
  background: var(--gradient-primary);
  color: var(--white);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.diferencial-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.diferencial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-hover);
  border-color: var(--white);
}

.diferencial-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.diferencial-item h4 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.diferencial-item p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1.05rem;
}

.diferencial-icon i {
  font-size: 42px;
  color: var(--primary-pink);
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.diferencial-item:hover .diferencial-icon i {
  color: var(--primary-pink);
  transform: translateY(-4px);
}



/* Gallery Section */
.section-gallery {
  width: 100%;
  overflow: hidden; /* chave */
}

.gallery-masonry {
  display: flex;
  width: 100%;
}

.gallery-item {
  flex: 1 1 12.5%; /* 100% / 8 imagens */
  aspect-ratio: 3 / 4;
  max-width: 12.5%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-cta {
  background: var(--gradient-secondary);
  padding: 6rem 2rem;
  text-align: center;
}

.gallery-cta-content h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 700;
}

.section-testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}


.testimonials-carousel {
  overflow: hidden;
  width: 100%;
}


.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content; /* ISSO impede que o card esmague ou mude de formato */
  animation: scrollInfinito 30s linear infinite;
}

/* A animação propriamente dita */
@keyframes scrollInfinito {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* Move metade do conteúdo duplicado */
  }
}

/* Pausa ao passar o mouse */
.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}

/* Garante que o item mantenha o tamanho original */
.testimonial-item {
  flex: 0 0 360px; /* Não cresce, não diminui, fixa em 360px */
  margin-right: 20px; /* Espaçamento entre eles */
}


.testimonial-item {
  min-width: 360px;
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);

  /* CHAVE DO ALINHAMENTO */
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  margin-top: auto;
  /* empurra o nome para o final */
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 1.05rem;
}



/* PAUSA AO PASSAR O MOUSE (opcional, profissional) */
.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}



/* FAQ Section */
.section-faq {
  background: var(--light-gray);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.75rem 2rem;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-pink);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}


/* Map Section */
.section-map {
  width: 100%;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* ideal para desktop e mobile */
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3);
}
@media (max-width: 768px) {
  .map-container {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .map-container {
    aspect-ratio: 1 / 1;
  }
}


/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container-fluid {
    padding: 0 20px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-item-reverse {
    direction: ltr;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
  }

  .nav.active {
    left: 0;
  }

  .btn-reserve {
    margin-top: 1rem;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

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


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

  .booking-form {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container-fluid {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .service-content h4 {
    font-size: 1.5rem;
  }

  .service-content p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1.25rem;
  }

  .diferencial-item {
    padding: 1.75rem;
  }

  .diferencial-icon {
    font-size: 3rem;
  }


  .gallery-cta-content h3 {
    font-size: 1.75rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .contact-item {
    padding: 1.5rem;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    bottom: 20px;
    right: 20px;
  }
}

/* HERO BOOKING (ISOLADO) */
.hero-booking {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-booking-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-booking-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-booking-content p {
  margin-top: 10px;
  font-size: 18px;
}

.booking-widget {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 20px;
  border-radius: 16px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;

  max-width: 420px;
  margin: 0 auto;

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

.booking-field label {
  font-size: 13px;
  margin-bottom: 4px;
  color: #0b71b3;
  display: block;
}

.booking-field select,
.booking-field input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
}

.btn-submit {
  grid-column: 1 / -1;
  width: 100%;
  background: linear-gradient(135deg, #0b71b3, #bb4291);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 113, 179, 0.35);
}





/* MOBILE */
@media (max-width: 768px) {

  .hero {
    min-height: 90vh;
    margin-top: 60px;
  }

  .hero-booking-content h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-booking-content p {
    font-size: 14px;
    margin-top: 6px;
  }

  .booking-widget {
    max-width: 320px;
    padding: 14px;
    gap: 10px;
    margin-top: 14px;
  }

  .booking-field label {
    font-size: 12px;
  }

  .booking-field select,
  .booking-field input {
    padding: 8px 10px;
    font-size: 13px;
  }

  .btn-submit {
    padding: 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .booking-widget {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}


.footer {
  background: #33a1db;
  color: #fff;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}


.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact a,
.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;

  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}


.footer-credit {
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--primary-pink);
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
}

.wa {
  background: #25D366;
}

.ig {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}
/* Layout Geral do Footer */
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}

/* Container das Unidades */
.units-wrapper {
    display: flex;
    gap: 50px; /* Espaço entre Unidade 1 e Unidade 2 */
    margin-top: 20px;
}

/* Título das Unidades em Rosa #bb4291 */
.unit-title {
    color: #bb4291 !important;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}


/* Tag para Cães Grandes */
.dog-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(187, 66, 145, 0.1); /* Rosa bem clarinho de fundo */
    color: #bb4291;
    padding: 3px 8px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 600;
}

/* Botão WhatsApp e Redes */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-social a {
    margin-right: 15px;
    text-decoration: none;
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .units-wrapper {
        flex-direction: column; /* No celular, volta a ficar um sobre o outro */
        gap: 30px;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        justify-content: center;
    }
}

/* Cards das Unidades */
.unit-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;

  width: 260px;
  min-height: 140px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8),
    0 12px 30px rgba(0, 0, 0, 0.18);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.unit-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Título das unidades */
.unit-title {
  color: #bb4291;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* Endereço */
.footer-address {
  color: #33a1db;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 4px;
}


.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.footer-brand h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #bb4291;
  margin-top: 6px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .units-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .unit-box {
    width: 100%;
    max-width: 320px;
    min-height: 140px;
  }
}

.unit-box {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 18px rgba(255, 255, 255, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.2);
}
