:root {
  --ink: #3C3C3C;
  --ink-2: #3C3C3C;
  --ink-3: #6B7B84;
  --gold: #6B7B84;
  --gold-soft: #6B7B84;
  --sand: #E1DBC9;
  --pearl: #fbf7f1;
  --line: #E1DBC9;
  --accent: #6B7B84;
  --shadow: 0 18px 40px rgba(60, 60, 60, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: #fff;
  padding: 1rem;
  text-decoration: none;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

.mobile-only {
  display: none;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(251, 247, 241, 0.95);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(8px);
}


.nav-wrap {
  background: rgba(60, 60, 60, 0.95);
  color: #f5efe7;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--gold);
}

.logo-text {
  font-size: 0.9rem;
  line-height: 1.1;
}

.logo-text small {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}

.nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

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

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

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

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.nav-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-contact a:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.nav-contact span {
  color: rgba(245, 239, 231, 0.8);
}

.btn {
  background: var(--gold);
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  box-shadow: 0 12px 30px rgba(107, 123, 132, 0.35);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(201, 162, 74, 0.5);
  background: #d4b05a;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-top: 1.5rem;
  display: inline-block;
}

.btn-outline:first-of-type {
  margin-top: 2rem;
}

#load-more-opinions {
  margin-top: 2rem;
}

#load-more-opinions.hidden {
  display: none;
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(201, 162, 74, 0.1);
  border-color: #d4b05a;
  color: #d4b05a;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #f5efe7;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  color: #f5efe7;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #3C3C3C 10%, #6B7B84 55%, #3C3C3C 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(107, 123, 132, 0.25), rgba(107, 123, 132, 0));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 0.5rem;
}

.lead.highlight-text {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lead-consult {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-actions .btn {
  align-self: flex-start;
  padding: 0.75rem 2rem;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.contact-options span {
  color: rgba(245, 239, 231, 0.7);
}

.hero-media {
  display: grid;
  gap: 1.4rem;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 231, 0.2);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.35);
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  background: rgba(251, 247, 241, 0.08);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(245, 239, 231, 0.2);
}

.text-link {
  color: var(--gold-soft);
  font-weight: 600;
}

.section {
  padding: 4.5rem 0;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 1.6vw + 1.2rem, 2.8rem);
  margin-bottom: 1rem;
}

.card-grid,
.pillars,
.detail-grid,
.testimonial-grid {
  display: grid;
  gap: 1.6rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.services .card {
  background: linear-gradient(140deg, #fff 0%, #E1DBC9 100%);
}

.highlight {
  background: var(--sand);
}

.pillars {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pillar {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.pillar p {
  text-align: justify;
}

.details {
  background: #fff;
}

.accordion {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(60, 60, 60, 0.08);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(225, 219, 201, 0.3);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
  padding-right: 1rem;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-content ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-top: 1rem;
}

.accordion-content li {
  text-align: justify;
  padding-left: 1rem;
  position: relative;
}

.accordion-content li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.studio {
  background: var(--sand);
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.profile {
  background: #fff;
  padding: 0;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-title {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #fff;
}

.profile-photo {
  position: relative;
  border: none;
  border-radius: 18px;
  margin: 0;
  background: #fdfaf6;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.profile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 60, 60, 0.95) 0%, rgba(60, 60, 60, 0.7) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.profile-overlay h3 {
  color: #fff;
  margin: 0;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.profile-overlay .profile-title {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

.profile-photo:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.profile-photo:hover .profile-overlay {
  opacity: 1;
}

.studio-text {
  display: grid;
  gap: 1rem;
  font-size: 1.02rem;
}

.opinions {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 901px) {
  .testimonial-hidden {
    display: grid;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
    margin: 0;
  }

  .testimonial-hidden.show {
    opacity: 1;
    max-height: 1000px;
    margin: 0;
  }

  #load-more-opinions {
    display: inline-block;
  }
}

@media (max-width: 900px) {
  .testimonial-hidden {
    display: grid;
  }

  #load-more-opinions {
    display: none;
  }
}

.testimonial {
  background: #3C3C3C;
  color: #f5efe7;
  padding: 1.6rem;
  border-radius: 16px;
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.testimonial p {
  margin: 0;
  line-height: 1.6;
}

.testimonial span {
  font-weight: 600;
  margin-top: 0.5rem;
}

.testimonial time {
  color: rgba(245, 239, 231, 0.7);
  font-size: 0.85rem;
  display: block;
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  color: var(--gold-soft);
}

.carousel {
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel {
  scrollbar-width: none;
}

.carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  background: #3C3C3C;
  color: #f5efe7;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--gold);
}

.note {
  margin-top: 1rem;
  color: var(--ink-3);
}

.contact {
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.contact-info > div:nth-child(2) {
  min-width: 300px;
  max-width: 100%;
}

.contact-info > div:nth-child(2) a {
  word-break: break-word;
  white-space: normal;
  display: inline-block;
  max-width: 100%;
}

@media (max-width: 900px) {
  .contact-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .contact-info > div:nth-child(2) {
    min-width: 0;
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .contact-info > div:nth-child(2) {
    grid-column: span 1;
  }
}

.contact-info p {
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-info a {
  white-space: nowrap;
}

.contact-info a[href^="mailto:"] {
  font-size: 0.85rem;
  word-break: break-all;
  white-space: normal;
  line-height: 1.4;
}

.map iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 16px;
}

.contact-form-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.2rem;
  color: var(--ink-3);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: #3C3C3C;
  color: #f5efe7;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem 4rem;
  padding-bottom: 2rem;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid p,
.footer-grid h4 {
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-grid > div:nth-child(2) p:first-of-type {
  white-space: nowrap;
}

.footer-logo .logo-mark {
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 231, 0.1);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #fff;
  padding: 1rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.3);
  z-index: 30;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp:hover,
.whatsapp:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp svg {
  width: 28px;
  height: 28px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(60, 60, 60, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(60, 60, 60, 0.4);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 900px) {
  .card-grid,
  .pillars,
  .studio-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .card-grid::-webkit-scrollbar,
  .pillars::-webkit-scrollbar,
  .studio-grid::-webkit-scrollbar {
    display: none;
  }

  .card-grid > *,
  .pillars > *,
  .studio-grid > * {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-grid > * {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .carousel-controls {
    display: flex;
  }

  .carousel > * {
    flex: 0 0 min(82vw, 340px);
  }

  .nav {
    position: fixed;
    inset: 80px 20px auto 20px;
    background: rgba(60, 60, 60, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-contact {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .hero {
    position: relative;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 0;
    border: none;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }

  .hero-grid {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 600px) {
  .mobile-only {
    display: block;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('../images/portada.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(60, 60, 60, 0.85) 0%, rgba(60, 60, 60, 0.75) 100%);
    z-index: 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
  }

  .hero-media {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(60, 60, 60, 0.75);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    margin: 1rem;
  }

  .hero h1 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }

  .lead.highlight-text,
  .lead-consult {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }

  .contact-options {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .contact-copy p,
  .contact-info p {
    word-break: break-word;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .map iframe {
    min-height: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.2rem;
  }

  .footer-grid p,
  .footer-grid h4 {
    word-break: break-word;
  }

  .footer-bottom {
    text-align: left;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    padding: 0.75rem;
  }

  .whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top {
    right: 16px;
    bottom: 70px;
    width: 44px;
    height: 44px;
  }
}
