:root {
  --bg: #f4eee5;
  --surface: #fcf8f2;
  --white: #ffffff;
  --teal: #2cb7a3;
  --teal-deep: #1b8477;
  --beige: #d9c09a;
  --coral: #e56b7a;
  --brown: #6b4a2f;
  --brown-soft: #7b624d;
  --text: #2f241c;
  --muted: rgba(47, 36, 28, 0.68);
  --border: rgba(107, 74, 47, 0.1);
  --shadow: 0 24px 80px rgba(49, 34, 20, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(44, 183, 163, 0.08), transparent 30%),
    radial-gradient(circle at 100% 30%, rgba(229, 107, 122, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
  color: var(--text);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(252, 248, 242, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(107, 74, 47, 0.06);
}

.mobile-quick-nav {
  position: sticky;
  top: 88px;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(252, 248, 242, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 74, 47, 0.06);
}

.mobile-quick-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(107, 74, 47, 0.06);
  font-size: 0.86rem;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(107, 74, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 128%;
  height: 128%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--brown-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
}

.main-nav {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--teal-deep);
}

.header-balance {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 144px);
  overflow: clip;
  background:
    radial-gradient(circle at 18% 24%, rgba(44, 183, 163, 0.1), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(229, 107, 122, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(252, 248, 242, 0.98) 0%, rgba(244, 238, 229, 0.98) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, transparent 36%),
    radial-gradient(circle at 68% 52%, rgba(44, 183, 163, 0.08), transparent 26%);
}

.hero-frame {
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 34px;
  pointer-events: none;
}

.hero-content,
.hero-visual,
.section-shell {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 5.5rem 1.5rem 2.5rem;
  max-width: 39rem;
}

.hero h1,
.section-heading h2 {
  font-family: "Fraunces", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.hero-text,
.section-heading p,
.about-grid p,
.help-grid p,
.contact-card p,
.contact-form label,
.donation-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 32rem;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.hero-assurance span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(107, 74, 47, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover {
  background: var(--teal-deep);
}

.button-secondary {
  background: var(--coral);
  color: var(--white);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--brown);
  border-color: rgba(107, 74, 47, 0.08);
}

.hero-visual {
  display: none;
  align-items: end;
  justify-content: center;
  padding: 2rem;
}

.hero-photo-card {
  position: relative;
  width: min(560px, 100%);
  min-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(25, 24, 20, 0.04) 0%, rgba(25, 24, 20, 0.62) 100%),
    url("./fotos/Captura de pantalla 2026-04-15 212714.png")
      center 18% / cover no-repeat;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  transform: translateY(20px);
  animation: floatIn 900ms ease forwards;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 68%, rgba(21, 17, 15, 0.36) 100%);
}

.hero-photo-caption {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 600;
  max-width: 16rem;
}

.section-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 34rem;
}

.section-heading h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.featured-grid,
.catalog-grid,
.product-grid,
.help-grid,
.donation-grid,
.about-grid {
  display: grid;
  gap: 1rem;
}

.featured-grid,
.catalog-grid,
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.story-bridge {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.story-bridge-copy {
  max-width: 36rem;
}

.story-bridge-copy h2 {
  margin: 0 0 0.85rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.story-bridge-copy p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.story-bridge-visual {
  min-height: 360px;
}

.story-bridge-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(21, 17, 15, 0.08), rgba(21, 17, 15, 0.18)),
    url("./fotos/Captura de pantalla 2026-04-15 212729.png")
      center 24% / cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story-bridge-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 78%, rgba(21, 17, 15, 0.2) 100%);
}

.animal-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(107, 74, 47, 0.07);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.animal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(64, 42, 24, 0.16);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(107, 74, 47, 0.07);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(64, 42, 24, 0.16);
}

.product-card-image {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.product-card-body {
  display: grid;
  gap: 0.65rem;
  padding: 1.35rem;
}

.product-card-price {
  color: var(--teal-deep);
  font-weight: 800;
}

.product-card-category {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

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

.faq-item {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(107, 74, 47, 0.07);
  box-shadow: var(--shadow);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.75;
}

.instagram-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.instagram-copy-card,
.instagram-embed-shell {
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(107, 74, 47, 0.07);
  box-shadow: var(--shadow);
}

.instagram-copy-card p {
  color: var(--muted);
  line-height: 1.8;
}

.instagram-embed-shell {
  display: flex;
  justify-content: center;
}

.instagram-embed-shell .instagram-media {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 540px !important;
}

.animal-card-image {
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center 24%;
  overflow: hidden;
}

.animal-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 78%, rgba(21, 17, 15, 0.18) 100%);
  pointer-events: none;
}

.status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(252, 248, 242, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.status-badge.disponible {
  color: var(--teal-deep);
}

.status-badge.proceso {
  color: var(--brown);
}

.status-badge.adoptado {
  color: var(--coral);
}

.animal-card-body {
  padding: 1.35rem;
}

.animal-card h3,
.donation-card h3,
.help-grid h3,
.about-grid h3,
.contact-card h3,
.admin-list-card h4 {
  margin: 0 0 0.4rem;
}

.animal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0;
}

.animal-meta span,
.filters select,
.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.animal-meta span {
  padding: 0.5rem 0.8rem;
  font-size: 0.77rem;
}

.animal-card p {
  color: var(--muted);
  line-height: 1.6;
}

.donation-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(44, 183, 163, 0.11), rgba(229, 107, 122, 0.11));
  overflow: hidden;
  border: 1px solid rgba(107, 74, 47, 0.06);
}

.donation-strip::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

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

.about-grid article,
.help-grid article,
.contact-card,
.admin-list-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(107, 74, 47, 0.07);
}

.filters {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(107, 74, 47, 0.06);
  backdrop-filter: blur(10px);
}

.filters label,
.toggle,
.admin-form label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.filters select,
.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  color: var(--text);
}

.toggle {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.donation-grid,
.help-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.donation-card {
  padding: 1.6rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(252, 247, 241, 0.98));
  border: 1px solid rgba(107, 74, 47, 0.07);
  box-shadow: var(--shadow);
}

.donation-lead {
  max-width: 34rem;
  margin: -0.25rem 0 1.5rem;
}

.donation-lead p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.donation-card span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal-deep);
}

.contact-grid,
.admin-layout {
  display: grid;
  gap: 1.25rem;
}

.hidden {
  display: none !important;
}

.contact-form,
.admin-form,
.admin-login-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(107, 74, 47, 0.07);
}

.admin {
  padding-top: 3.2rem;
}

.admin-auth,
.admin-dashboard {
  display: grid;
  gap: 1.25rem;
}

.admin-login-card,
.admin-dashboard-header,
.admin-tabs {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(107, 74, 47, 0.07);
}

.admin-dashboard-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-hint,
.admin-error {
  margin: 0;
  font-size: 0.92rem;
}

.admin-error {
  color: #b54755;
  min-height: 1.25rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-tab {
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(107, 74, 47, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.admin-tab.is-active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.contact-card-stack,
.admin-list {
  display: grid;
  gap: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: #1fbf6a;
  color: var(--white);
  box-shadow: 0 18px 30px rgba(31, 191, 106, 0.28);
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 23, 18, 0.58);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 1.5rem));
  max-height: calc(100svh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.8rem;
}

.modal-gallery {
  min-height: 320px;
  background-size: cover;
  background-position: center 22%;
  position: relative;
}

.modal-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 78%, rgba(21, 17, 15, 0.18) 100%);
}

.modal-copy {
  padding: 1.5rem;
}

.admin-list-card {
  display: grid;
  gap: 0.75rem;
}

.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-card-actions button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem 1.25rem 6rem;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--muted);
  border-top: 1px solid rgba(107, 74, 47, 0.06);
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
}

.site-footer-blog {
  display: grid;
  gap: 0.65rem;
}

.site-footer-blog strong {
  margin-bottom: 0;
}

.blog-section {
  border-top: 1px solid rgba(107, 74, 47, 0.06);
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-cta-row {
  margin-top: 1.35rem;
}

.blog-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(107, 74, 47, 0.08);
  box-shadow: var(--shadow);
}

.blog-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.05;
}

.blog-card p {
  margin: 0;
}

.blog-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.blog-page-hero {
  padding-top: 7rem;
}

.blog-page-list {
  display: grid;
  gap: 1.2rem;
}

.blog-post {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(107, 74, 47, 0.08);
  box-shadow: var(--shadow);
}

.blog-post h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-post p {
  margin: 0;
}

.blog-post ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.blog-post li + li {
  margin-top: 0.45rem;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 760px) {
  .mobile-quick-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    min-height: calc(100svh - 95px);
  }

  .hero-content {
    padding: 6.5rem 2.2rem 4.2rem;
    margin-left: 2.2rem;
  }

  .hero-visual {
    padding-right: 2.6rem;
  }

  .hero-visual,
  .main-nav {
    display: flex;
  }

  .brand {
    justify-self: start;
  }

  .main-nav {
    justify-self: center;
  }

  .header-balance {
    display: block;
  }

  .filters {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
  }

  .story-bridge {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .featured-grid article:first-child {
    grid-column: span 2;
  }

  .featured-grid article:first-child .animal-card-image {
    min-height: 360px;
  }

  .contact-grid,
  .admin-layout,
  .blog-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .blog-grid article:first-child {
    grid-column: span 2;
  }

  .instagram-layout {
    grid-template-columns: 0.42fr 0.58fr;
  }

  .donation-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 759px) {
  .site-header {
    grid-template-columns: 1fr;
    padding-bottom: 0.9rem;
  }

  .main-nav {
    display: none;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .hero-content {
    padding-top: 3.8rem;
  }

  .hero-photo-card {
    min-height: 500px;
    background-position: center 16%;
  }

  .section-shell {
    padding: 4rem 1rem;
  }

  .whatsapp-float {
    bottom: 5rem;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
    padding-bottom: 7rem;
  }
}
