/*!
Theme Name: Dolcci
Theme URI: https://dolcci.com.br/
Author: CLinC Tech
Author URI: https://clinc.com.br/
Description: Tema personalizado para o restaurante Dolcci.
Version: 1.0.5
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dolcci
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Dolcci is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
Desenvolvido por CLinC Tech.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* =========================================================
   VARIÁVEIS E BASE GLOBAL
========================================================= */

:root {
  --bg: #f4eee2;
  --bg-soft: #f4eee2;
  --bg-sessao: #f2e8d0;
  --hortela: #789c4a;
  --areia: #d9c69d;
  --hortela-dark: #192706;
  --accent: #789c4a;
  --accent-2: #804c3b;
  --white: #f2f0eb;
  --copy: #436a0f;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--hortela);
  line-height: 1.6;
  padding-top: 116px; /* topbar 42 + header 74 */
  transition: padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body.topbar-hidden {
  padding-top: 74px;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-2);
}

.section-text {
  max-width: 720px;
  font-size: 1rem;
  color: rgba(23, 55, 43, 0.88);
}

.line-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.line-title h1,
.line-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  white-space: nowrap;
  color: var(--hortela);
}

.line-title-center {
  justify-content: center;
}

.line-title-center::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.25s ease;
}

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

.btn-primary:hover {
  background: #3d571d;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 38px;
}

.feature-media img {
  min-height: 420px;
  border-radius: 22px;
}

.section-encomendas {
  padding: 80px 0;
  background: var(--bg-sessao);
}

.encomendas-section {
  align-items: flex-start;
}

.encomendas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.encomendas-section .feature-media img {
  min-height: 360px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.section-encomendas .feature-split {
  overflow: hidden;
}

.section-encomendas .feature-content,
.section-encomendas .feature-media {
  min-width: 0;
}

.section-encomendas .line-title h1,
.section-encomendas .line-title h2 {
  white-space: normal;
}

.section-encomendas .encomendas-actions {
  flex-wrap: wrap;
}

.whats-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whats-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
}

.whats-tooltip {
  position: absolute;
  top: 50%;
  right: 70px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(10px);
  transition: all 0.25s ease;
}

.whats-float:hover .whats-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 980px) {
  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-media img {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}


/* =========================================================
   HEADER - DESKTOP
========================================================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  background: var(--hortela-dark);
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.topbar.hidden {
  opacity: 0;
  transform: translateY(-100%);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
}

.topbar-social,
.topbar-locations {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 0.95rem;
}

.topbar-locations a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 14px;
}

.topbar-locations a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.site-header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(217, 216, 199, 0.92);
  border-bottom: 1px solid rgba(23, 55, 43, 0.08);
  backdrop-filter: blur(10px);
  transition: top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar.hidden + .site-header {
  top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand img {
  width: clamp(120px, 15vw, 180px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hortela);
}

.nav-mobile-cta {
  display: none;
}

.nav a.nav-mobile-cta {
  color: var(--white);
}

.nav a.nav-mobile-cta::after {
  display: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: 0.25s ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 55, 43, 0.15);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--hortela);
  transition: 0.25s ease;
}

/* =========================================================
   HEADER - MOBILE
========================================================= */

@media (max-width: 980px) {
  .topbar {
    display: none !important;
  }

  .topbar.hidden {
    display: none !important;
  }

  body {
    padding-top: 74px;
    transition: none;
  }

  body.topbar-hidden {
    padding-top: 74px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    margin-top: 0;
  }

  .header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .brand {
    flex-shrink: 0;
  }

  .brand img {
    max-height: 62px;
    width: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px 24px;
    background: var(--bg);
    border-bottom: 1px solid rgba(23, 55, 43, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  }

  .nav.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s;
  }

  .nav a {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav.active a:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.07s; }
  .nav.active a:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
  .nav.active a:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.17s; }
  .nav.active a:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.22s; }
  .nav.active a:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.27s; }

  .nav-mobile-cta {
    display: inline-flex;
    margin-top: 4px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav.active .nav-mobile-cta {
    opacity: 1;
    transform: none;
    transition-delay: 0.32s;
  }

  .menu-toggle {
  display: block;
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--hortela);
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle.active span:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

  .header-cta {
    display: none;
  }
}


/* =========================================================
   PÁGINA INICIAL - DESKTOP
========================================================= */

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 95vh;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 11, 0, 0.6), rgba(6, 11, 0, 0.75)),
    url("images/salgados-dolcci-home.webp") center / cover no-repeat;
  transform: scale(1.04);
}

.hero h1 {
  margin-bottom: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero p {
  max-width: 1080px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  opacity: 0.94;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--hortela);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.intro-media {
  position: relative;
}

.intro-media img {
  min-height: 520px;
  border-radius: var(--radius);
}

.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.gallery-3 article img {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}

.gallery-3 article:nth-child(2) {
  transform: translateY(-26px);
}

.restaurante-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.restaurante-header .line-title {
  margin-bottom: 0;
}

.restaurante-header .line-title h2 {
  white-space: normal;
}

.intro-text-block {
  margin-bottom: 0;
}

.gallery-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-4 article img {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-section {
  padding: 20px 0;
  background: var(--accent);
}

.quote-break {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.quote-break p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--white);
}

.banner-wide {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.banner-wide img {
  display: block;
  width: 100%;
  height: 500px;
}

.line-title-inline {
  gap: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.menu-card {
  overflow: hidden;
  border: none;
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
}

.menu-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.menu-card-content {
  padding: 12px 12px 14px;
}

.menu-card h3 {
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--hortela);
}

.menu-card .price {
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}

.menu-card p {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.contact-section {
  padding: 72px 0;
  background: var(--bg-soft);
}

.contact-section .line-title {
  justify-content: center;
  text-align: center;
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: rgba(23, 55, 43, 0.82);
}

.contact-units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 28px;
}

.contact-unit-card {
  border: none;
  border-radius: 18px;
  padding: 20px;
  background: var(--white);
  transition: transform 0.25s ease;
}

.contact-unit-card:hover {
  transform: translateY(-4px);
}

.contact-unit-card h3 {
  margin-bottom: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1.1;
  color: var(--hortela);
}

.contact-unit-info {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-unit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.contact-unit-item p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(23, 55, 43, 0.88);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  margin-top: 2px;
  border-radius: 50%;
  background: transparent;
  color: var(--hortela);
  font-size: 0.85rem;
  opacity: 0.85;
}

.contact-unit-card .btn {
  min-width: 220px;
  margin-top: 6px;
}

/* =========================================================
   PÁGINA INICIAL - MOBILE
========================================================= */

@media (max-width: 980px) {
  .intro-grid,
  .contact-units-grid {
    grid-template-columns: 1fr;
  }

  .gallery-3,
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-3 article:nth-child(2) {
    transform: none;
  }

  .intro-media img {
    min-height: auto;
  }

  .gallery-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .restaurante-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-unit-card .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 74vh;
  }

  .gallery-3,
  .gallery-4,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .line-title-inline {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* =========================================================
   PRODUTO INDIVIDUAL
========================================================= */

.produto-single {
  padding: 56px 0 80px;
}

.produto-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s ease;
}

.produto-voltar:hover {
  gap: 12px;
}

.produto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.produto-media {
  position: sticky;
  top: 120px;
}

.produto-imagem {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
}

.produto-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.produto-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid var(--areia);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  transition: background 0.2s ease, color 0.2s ease;
}

.produto-badge:hover {
  background: var(--areia);
  color: var(--hortela-dark);
}

.produto-titulo {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  color: var(--hortela-dark);
}

.produto-preco {
  margin-bottom: 24px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.produto-descricao {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(23, 55, 43, 0.85);
}

.produto-descricao p {
  margin-bottom: 12px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: #fff;
}

.btn-whatsapp i {
  font-size: 1.25rem;
}

@media (max-width: 860px) {
  .produto-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .produto-media {
    position: static;
  }

  .produto-imagem {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 640px) {
  .produto-single {
    padding: 32px 0 56px;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   PÁGINA CONTATO
========================================================= */

.contato-header {
  padding: 64px 0 0;
  text-align: center;
}

.contato-units-section {
  padding-top: 40px;
}

.contact-phone-link {
  color: inherit;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-phone-link:hover {
  color: var(--accent);
}

/* =========================================================
   PÁGINA SOBRE
========================================================= */

.hero-sobre {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 65vh;
  overflow: hidden;
  background: #111;
}

.hero-sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 11, 0, 0.6), rgba(6, 11, 0, 0.75)),
    url("images/sobre-dolcci-goiania.webp") center / cover no-repeat;
  transform: scale(1.04);
}

.hero-sobre h1 {
  margin-bottom: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-sobre p {
  max-width: 1080px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  opacity: 0.94;
}

.hero-sobre .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-sobre .btn-outline:hover {
  background: var(--white);
  color: var(--hortela);
}

.feature-split.about-section {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.feature-split.about-section .feature-content {
  flex: 0.9;
  max-width: 45%;
}

.feature-split.about-section .feature-media {
  flex: 1.1;
  max-width: 55%;
}

.about-section {
  align-items: flex-start;
}

.about-section .line-title h1,
.about-section .line-title h2 {
  white-space: normal;
  line-height: 0.95;
}

.about-text-group {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.about-media img {
  width: 100%;
  height: auto;
  min-height: 520px;
  max-height: 680px;
  object-fit: cover;
  border-radius: 22px;
}

/* =========================================================
   PÁGINA SOBRE - MOBILE
========================================================= */

@media (max-width: 980px) {
  .feature-split.about-section {
    flex-direction: column;
    gap: 28px;
  }

  .feature-split.about-section .feature-content,
  .feature-split.about-section .feature-media {
    max-width: 100%;
  }

  .about-media img {
    min-height: auto;
    max-height: none;
  }
}

/* =========================================================
   HERO BLOG
========================================================= */

.hero-blog {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50vh;
  overflow: hidden;
  background: #111;
}

.hero-blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 11, 0, 0.6), rgba(6, 11, 0, 0.75)),
    url("images/dolcci-blog.webp") center / cover no-repeat;
  transform: scale(1.04);
}

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

.hero-blog .line-title h1 {
  color: var(--white);
}

.hero-blog .line-title::after {
  background: var(--white);
}

.hero-blog .blog-intro {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   HERO CARDÁPIO
========================================================= */

.hero-cardapio {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50vh;
  overflow: hidden;
  background: #111;
}

.hero-cardapio::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 11, 0, 0.6), rgba(6, 11, 0, 0.75)),
    url("images/dolcci-cardapio.webp") center / cover no-repeat;
  transform: scale(1.04);
}

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

.hero-cardapio .line-title h1 {
  color: var(--white);
}

.hero-cardapio .line-title::after {
  background: var(--white);
}

.hero-cardapio .cardapio-intro {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   PÁGINA CARDÁPIO
========================================================= */

/* Header / busca */
.cardapio-header {
  padding: 56px 0 40px;
  text-align: center;
}

.cardapio-header .line-title {
  justify-content: center;
  margin-bottom: 12px;
}

.cardapio-header .line-title::after {
  display: none;
}

.cardapio-intro {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1rem;
  color: rgba(23, 55, 43, 0.82);
}

.cardapio-search-form {
  max-width: 560px;
  margin: 0 auto;
}

.cardapio-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid rgba(23, 55, 43, 0.14);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cardapio-search-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(120, 156, 74, 0.14);
}

.cardapio-search-icon {
  position: absolute;
  left: 18px;
  font-size: 0.92rem;
  color: rgba(23, 55, 43, 0.45);
  pointer-events: none;
}

.cardapio-search-input {
  flex: 1;
  height: 52px;
  padding: 0 12px 0 44px;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--hortela);
  appearance: none;
}

.cardapio-search-input::placeholder {
  color: rgba(23, 55, 43, 0.4);
}

.cardapio-search-input::-webkit-search-cancel-button {
  display: none;
}

.cardapio-search-btn {
  flex-shrink: 0;
  margin: 5px;
  height: 42px;
  min-height: 42px;
  border-radius: 999px;
}

/* Cards de categorias */
.cardapio-categorias-section {
  padding: 48px 0;
}

.cardapio-categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.categoria-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.categoria-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.categoria-card.is-active {
  outline: 2.5px solid var(--accent);
  outline-offset: -2px;
}

.categoria-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.categoria-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-sessao);
  font-size: 2rem;
  color: var(--areia);
}

.categoria-card-label {
  padding: 10px 12px 12px;
  text-align: center;
}

.categoria-card-label span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hortela);
  line-height: 1.3;
}

/* Filtros ativos */
.cardapio-filtros-ativos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filtro-ativo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--areia);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-2);
}

.filtro-ativo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(23, 55, 43, 0.08);
  color: var(--hortela);
  font-size: 0.7rem;
  transition: background 0.2s ease;
}

.filtro-ativo a:hover {
  background: rgba(23, 55, 43, 0.18);
}

/* Grade de produtos */
.cardapio-produtos-section {
  padding-top: 0;
}

.cardapio-produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.produto-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.produto-card-img-wrap {
  display: block;
  overflow: hidden;
}

.produto-card-img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.produto-card:hover .produto-card-img-wrap img {
  transform: scale(1.04);
}

.produto-card-no-img {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-sessao);
  font-size: 2.5rem;
  color: var(--areia);
}

.produto-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 16px 18px;
}

.produto-card-title {
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.produto-card-title a {
  color: var(--hortela);
  text-decoration: none;
  transition: color 0.2s ease;
}

.produto-card-title a:hover {
  color: var(--accent);
}

.produto-card-preco {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.produto-card-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 0 18px;
  min-height: 40px;
  font-size: 0.86rem;
}

/* Paginação */
.cardapio-paginacao {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.cardapio-paginacao a,
.cardapio-paginacao span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1.5px solid rgba(23, 55, 43, 0.14);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hortela);
  transition: 0.2s ease;
  text-decoration: none;
}

.cardapio-paginacao a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.cardapio-paginacao .current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.cardapio-paginacao .dots {
  border: none;
  background: transparent;
}

/* Estado vazio */
.cardapio-vazio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 0;
  text-align: center;
}

.cardapio-vazio i {
  font-size: 3rem;
  color: var(--areia);
}

.cardapio-vazio p {
  font-size: 1.05rem;
  color: rgba(23, 55, 43, 0.7);
}

/* Responsive */
@media (max-width: 980px) {
  .cardapio-produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .cardapio-categorias-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .cardapio-produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cardapio-search-btn span {
    display: none;
  }
}

@media (max-width: 480px) {
  .cardapio-header {
    padding: 40px 0 32px;
  }

  .cardapio-produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .produto-card-cta {
    display: none;
  }
}

/* =========================================================
   BLOG
========================================================= */

.blog-header {
  padding: 56px 0 36px;
  text-align: center;
}

.blog-intro {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1rem;
  color: rgba(23, 55, 43, 0.75);
  text-align: center;
}

/* Layout conteúdo + sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

/* ── Sidebar ── */
.blog-sidebar {
  position: sticky;
  top: 134px;
}

.blog-sidebar-widget {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 20px;
}

.blog-sidebar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--hortela);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 55, 43, 0.1);
}

.blog-recentes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-recente-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.blog-recente-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.blog-recente-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-recente-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.blog-recente-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hortela);
  line-height: 1.3;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-recente-title:hover {
  color: var(--accent);
}

.blog-recente-date {
  font-size: 0.76rem;
  color: rgba(23, 55, 43, 0.55);
  letter-spacing: 0.02em;
}

/* ── Grid de cards ── */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card-img-wrap {
  display: block;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.04);
}

.blog-card-no-img {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-sessao);
  font-size: 2.5rem;
  color: var(--areia);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 20px;
}

.blog-card-date {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-title {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.blog-card-title a {
  color: var(--hortela);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  flex: 1;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(23, 55, 43, 0.72);
  line-height: 1.55;
}

.blog-card-cta {
  align-self: flex-start;
  padding: 0 18px;
  min-height: 40px;
  font-size: 0.86rem;
}

/* Paginação */
.blog-paginacao {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.blog-paginacao a,
.blog-paginacao span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1.5px solid rgba(23, 55, 43, 0.14);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hortela);
  transition: 0.2s ease;
  text-decoration: none;
}

.blog-paginacao a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.blog-paginacao .current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.blog-paginacao .dots {
  border: none;
  background: transparent;
}

/* Responsive */
@media (max-width: 1060px) {
  .blog-layout {
    grid-template-columns: 1fr 240px;
    gap: 28px;
  }
}

@media (max-width: 780px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    order: 1;
  }

  .blog-recentes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-recentes-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PÁGINA DO POST
========================================================= */

/* Hero */
.post-hero {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6, 11, 0, 0.45));
}

/* Layout */
.post-section {
  padding-top: 48px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* Artigo */
.post-article {
  min-width: 0;
}

.post-article-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(23, 55, 43, 0.1);
}

.post-meta-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.post-category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.post-category-badge:hover {
  background: #3d571d;
}

.post-date {
  font-size: 0.83rem;
  color: rgba(23, 55, 43, 0.55);
  letter-spacing: 0.02em;
}

.post-article-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--hortela);
  margin-bottom: 20px;
  text-wrap: balance;
}

.post-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-author-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hortela);
}

/* Conteúdo do post */
.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(23, 55, 43, 0.88);
}

.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--hortela);
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.15;
}

.post-content h2 { font-size: 1.9rem; }
.post-content h3 { font-size: 1.5rem; }
.post-content h4 { font-size: 1.2rem; }

.post-content p {
  margin-bottom: 1.4em;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.post-content li {
  margin-bottom: 0.4em;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--bg-sessao);
  border-radius: 0 12px 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--hortela);
}

.post-content img {
  border-radius: 14px;
  margin: 1.6em 0;
}

.post-content figure {
  margin: 1.6em 0;
}

.post-content figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(23, 55, 43, 0.55);
  margin-top: 8px;
}

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 55, 43, 0.1);
}

.post-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(23, 55, 43, 0.15);
  font-size: 0.82rem;
  color: rgba(23, 55, 43, 0.65);
  transition: 0.2s ease;
}

.post-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Navegação prev/next */
.post-nav {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 55, 43, 0.1);
}

.post-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid rgba(23, 55, 43, 0.1);
  transition: 0.25s ease;
}

.post-nav-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.post-nav-next {
  text-align: right;
}

.post-nav-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  font-weight: 600;
}

.post-nav-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hortela);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sidebar do post */
.post-sidebar {
  position: sticky;
  top: 134px;
}

/* Responsive */
@media (max-width: 1060px) {
  .post-layout {
    grid-template-columns: 1fr 240px;
    gap: 32px;
  }
}

@media (max-width: 780px) {
  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
    order: 1;
  }

  .post-hero img {
    height: 320px;
  }

  .post-nav-inner {
    grid-template-columns: 1fr;
  }

  .post-nav-next {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .post-hero img {
    height: 220px;
  }
}

/* =========================================================
   FOOTER - DESKTOP
========================================================= */

.site-footer {
  margin-top: 50px;
  background: var(--hortela-dark);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr 0.8fr;
  gap: 28px;
  padding: 42px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 200px;
  height: auto;
}

.footer-title {
  margin-bottom: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--areia);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-units {
  display: grid;
  gap: 14px;
}

.footer-units strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-units span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--copy);
  gap: 16px;
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--copy);
}

.footer-dev img {
  width: auto;
  height: 18px;
}

/* =========================================================
   FOOTER - MOBILE
========================================================= */

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-brand img {
    width: 120px;
  }

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

/* =========================================================
   PÁGINA 404
========================================================= */

.error-404-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  min-height: 60vh;
}

.error-404-text .line-title h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  white-space: normal;
  color: var(--hortela);
}

.error-404-text .section-text {
  margin-top: 16px;
  margin-bottom: 32px;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.error-404-code {
  user-select: none;
}

.error-404-code span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: var(--areia);
  letter-spacing: -4px;
}

@media (max-width: 768px) {
  .error-404-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .error-404-code {
    order: -1;
  }

  .error-404-code span {
    font-size: clamp(5rem, 22vw, 8rem);
  }

  .error-404-actions {
    justify-content: center;
  }
}


/* =========================================================
   WHATSAPP FAB
========================================================= */

.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  color: #fff;
}
