/* La Rondula - Layout Styles */

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: transparent;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.header.scrolled {
  height: var(--header-height-scrolled);
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

/* Solid header for pages without hero */
.header--solid {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header--solid .nav__link {
  color: var(--color-text);
}

.header--solid .header__logo img {
  filter: none;
}

.header--solid .header__lang {
  color: var(--color-text);
}

.header--solid .header__toggle svg {
  stroke: var(--color-text);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 48px;
  width: auto;
  transition: filter var(--transition-base);
}

.header:not(.scrolled):not(.header--solid) .header__logo img {
  filter: brightness(0) invert(1);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__item {
  position: relative;
  margin: 0;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) 0;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header.scrolled .nav__link {
  color: var(--color-text);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 600px;
  padding: var(--space-8);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav__item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.mega-menu__section {

}

.mega-menu__title {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu__item {
  margin-bottom: var(--space-3);
}

.mega-menu__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.mega-menu__link:hover {
  color: var(--color-primary);
}

.mega-menu__link img {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.mega-menu__link-text {
  display: flex;
  flex-direction: column;
}

.mega-menu__link-title {
  font-weight: var(--font-medium);
}

.mega-menu__link-subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Language Dropdown */
.header__lang {
  position: relative;
}

.header__lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-white);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.header.scrolled .header__lang-toggle,
.header--solid .header__lang-toggle {
  color: var(--color-text);
}

.header__lang-toggle:hover {
  color: var(--color-primary);
}

.header__lang-toggle svg:last-child {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.header__lang.open .header__lang-toggle svg:last-child {
  transform: rotate(180deg);
}

.header__lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 140px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: var(--z-dropdown);
  list-style: none;
  margin: 0;
}

.header__lang.open .header__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__lang-menu li {
  margin: 0;
}

.header__lang-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.header__lang-menu a:hover {
  background: var(--color-background);
}

.header__lang-menu a.active {
  color: var(--color-primary);
  font-weight: var(--font-semibold);
}

.header__book {
  padding: var(--space-3) var(--space-5);
}

/* Mobile Menu Toggle */
.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 10;
}

.header.scrolled .header__toggle {
  color: var(--color-text);
}

/* Season Toggle - iOS Style Pill Switch */
.season-toggle {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 3px;
  gap: 0;
}

.header.scrolled .season-toggle {
  background: var(--color-gray-100);
  border-color: var(--color-border);
}

.season-toggle:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

.header.scrolled .season-toggle:hover {
  background: var(--color-gray-200);
}

.season-toggle__track {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.season-toggle__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 12px;
  height: 30px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
  z-index: 1;
  white-space: nowrap;
}

.season-toggle__option svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.header.scrolled .season-toggle__option {
  color: var(--color-text-light);
}

/* Active state background */
.season-toggle__option--active {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header.scrolled .season-toggle__option--active {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Winter mode styles */
[data-season="winter"] .season-toggle__option--winter {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

[data-season="winter"] .season-toggle__option--summer {
  background: transparent;
  color: rgba(255,255,255,0.6);
  box-shadow: none;
}

.header.scrolled [data-season="winter"] .season-toggle__option--winter {
  color: var(--color-primary);
}

.header.scrolled [data-season="winter"] .season-toggle__option--summer {
  color: var(--color-text-light);
}

/* Summer mode styles */
[data-season="summer"] .season-toggle__option--summer {
  background: var(--color-white);
  color: #d97706;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

[data-season="summer"] .season-toggle__option--winter {
  background: transparent;
  color: rgba(255,255,255,0.6);
  box-shadow: none;
}

.header.scrolled [data-season="summer"] .season-toggle__option--summer {
  color: #d97706;
}

.header.scrolled [data-season="summer"] .season-toggle__option--winter {
  color: var(--color-text-light);
}

/* Hide old slider element */
.season-toggle__slider {
  display: none;
}

/* Hide old icon classes if present */
.season-toggle__icon {
  display: none;
}

/* Legacy support - hide old button */
.header__season {
  display: none;
}

.season-icon {
  pointer-events: none;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: var(--color-white);
  z-index: var(--z-modal);
  padding: var(--space-6);
  padding-top: max(var(--space-6), env(safe-area-inset-top));
  padding-bottom: max(var(--space-6), env(safe-area-inset-bottom));
  padding-left: max(var(--space-6), env(safe-area-inset-left));
  padding-right: max(var(--space-6), env(safe-area-inset-right));
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  min-height: 48px;
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--color-text);
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav__submenu {
  padding-left: var(--space-4);
  padding-bottom: var(--space-4);
  display: none;
}

.mobile-nav__item.active .mobile-nav__submenu {
  display: block;
}

.mobile-nav__sublink {
  display: block;
  padding: var(--space-3) 0;
  color: var(--color-text-light);
  font-size: var(--text-base);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding-top: var(--space-16);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-12);
}

.footer__brand {

}

.footer__logo {
  height: 48px;
  margin-bottom: var(--space-6);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-white);
  transition: background-color var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.footer__column {

}

.footer__title {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: var(--space-3);
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

/* Newsletter */
.footer__newsletter {
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.footer__newsletter-text h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.footer__newsletter-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin: 0;
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-3);
}

.footer__newsletter-input {
  width: 300px;
  padding: var(--space-3) var(--space-4);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--text-sm);
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom */
.footer__bottom {
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-primary);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
  z-index: 2;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__background img,
.hero__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero__content {
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 var(--space-6);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
  color: var(--color-primary-light);
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.hero__description {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  opacity: 0.9;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  font-size: var(--text-sm);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   PAGE HERO (Subpages)
   ======================================== */

.page-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 var(--space-6);
}

.page-hero__title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.page-hero__description {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 400px;
    height: 70vh;
  }

  .page-hero__title {
    font-size: var(--text-3xl);
  }

  .page-hero__description {
    font-size: var(--text-base);
  }
}

/* ========================================
   HERO BOOKING WIDGET
   ======================================== */

.hero-booking {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-2xl);
  margin-top: var(--space-8);
}

.hero-booking__form {
  display: flex;
  align-items: flex-end;
  gap: var(--space-4);
}

.hero-booking__field {
  flex: 1;
}

.hero-booking__field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}

.hero-booking__field input,
.hero-booking__field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
}

.hero-booking__btn {
  flex-shrink: 0;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-text);
  overflow: hidden;
}

.page-header__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-header__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-header__breadcrumb a:hover {
  color: var(--color-primary);
}

.page-header__breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.page-header__title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp-btn {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background-color: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: var(--font-semibold);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  color: var(--color-white);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   MOBILE BOTTOM BAR
   ======================================== */

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-bottom-bar__price {

}

.mobile-bottom-bar__amount {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
}

.mobile-bottom-bar__label {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.mobile-bottom-bar .btn {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .mega-menu {
    display: none;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer__brand {
    grid-column: span 2;
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero-booking__form {
    flex-wrap: wrap;
  }

  .hero-booking__field {
    flex: 1 1 calc(50% - var(--space-2));
  }

  .hero-booking__btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --header-height-scrolled: 56px;
  }

  .header__book {
    display: none;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .footer__newsletter-input {
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .hero {
    min-height: 600px;
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__description {
    font-size: var(--text-base);
  }

  .hero-booking {
    padding: var(--space-4);
  }

  .hero-booking__form {
    flex-direction: column;
  }

  .hero-booking__field {
    width: 100%;
  }

  .page-header {
    height: 300px;
  }

  .page-header__title {
    font-size: var(--text-3xl);
  }

  .mobile-bottom-bar {
    display: block;
  }

  .whatsapp-btn {
    bottom: calc(var(--space-6) + 52px);
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    padding: var(--space-4);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-12) 0;
  }

  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
