/* =========================================================
   TOSQUIA COM ARTE — SITE ONE PAGE
   Paleta inspirada no logótipo fornecido
   ========================================================= */

:root {
  --gold: #c79a51;
  --gold-dark: #986525;
  --gold-light: #e7c980;
  --brown: #4b3425;
  --brown-dark: #2d211a;
  --cream: #f7f1e8;
  --cream-2: #efe3d2;
  --white: #ffffff;
  --text: #2a241f;
  --muted: #6c6259;
  --line: rgba(93, 62, 34, .16);
  --shadow: 0 20px 60px rgba(50, 36, 24, .12);
  --radius: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #fffdf9;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  font-weight: 600;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.section {
  padding: 96px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.eyebrow.centered {
  text-align: center;
}

.eyebrow.light {
  color: #f0d5a6;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.paw-divider {
  margin-top: 14px;
  color: var(--gold-dark);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: rgba(255, 253, 249, .93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(152, 101, 37, .08);
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(55, 36, 20, .08);
}

.nav-wrap {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 136px;
  flex: 0 0 auto;
}

.brand img {
  max-height: 78px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: .92rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transition: right .25s ease;
}

.main-nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brown);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 10px 28px rgba(152, 101, 37, .23);
}

.btn-light {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(91, 62, 38, .14);
}

.btn-gold {
  background: linear-gradient(135deg, #f0ce8c, #b67b34);
  color: var(--brown-dark);
  min-width: 235px;
}

.header-cta {
  margin-left: 4px;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 760px;
  padding-top: 94px;
  position: relative;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(247,241,232,.98) 0%, rgba(247,241,232,.92) 39%, rgba(247,241,232,.15) 70%),
    url("https://images.unsplash.com/photo-1583337130417-3346a1be7dee?auto=format&fit=crop&w=2200&q=90") center 37% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 35px;
  background: #fffdf9;
  clip-path: ellipse(72% 55% at 50% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  height: 100%;
}

.hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}

.hero h1 {
  font-size: clamp(4rem, 7vw, 6.8rem);
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--gold-dark);
  font-weight: 600;
}

.hero-text {
  max-width: 590px;
  font-size: 1.08rem;
  color: #50483f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-benefits {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-benefits > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-benefits span {
  color: var(--gold-dark);
  font-size: 1.55rem;
}

.hero-benefits p {
  font-size: .82rem;
  line-height: 1.35;
  font-weight: 600;
}

/* Services */
.services {
  background: #fffdf9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.service-card {
  text-align: center;
  padding: 12px 28px;
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-icon {
  color: var(--gold-dark);
  font-size: 2.25rem;
  min-height: 55px;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: .86rem;
  color: var(--muted);
}

/* About */
.about {
  background: linear-gradient(180deg, #fffdf9, #fbf5ec);
}

.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  min-height: 560px;
  object-fit: cover;
  border-radius: 0 30px 30px 0;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 700px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.feature {
  text-align: center;
}

.feature span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.feature p {
  font-size: .78rem;
  font-weight: 600;
}

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

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(56, 38, 23, .11);
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Schedule */
.schedule {
  padding: 64px 0;
  background:
    radial-gradient(circle at 8% 70%, rgba(199,154,81,.12), transparent 20%),
    radial-gradient(circle at 95% 40%, rgba(199,154,81,.16), transparent 24%),
    linear-gradient(120deg, #f9f0e4, #efe0ce);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: center;
}

.schedule-main {
  display: flex;
  gap: 24px;
  align-items: center;
}

.clock-icon {
  font-size: 4.7rem;
  line-height: 1;
  color: var(--gold-dark);
}

.schedule-main h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hours {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.lunch {
  font-size: .92rem;
}

/* Contactos dentro da secção de horários */

.schedule-contact {
  min-height: 180px;
  border-left: 1px solid rgba(111, 75, 41, .25);
  padding-left: 55px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid var(--gold-dark);
  border-radius: 50%;

  color: var(--gold-dark);
  font-size: 18px;
}

.whatsapp-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-dark);
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-size: .9rem;
  color: var(--text);
}

.contact-item a {
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s ease;
}

.contact-item a:hover {
  color: var(--gold-dark);
}

.schedule-closed p {
  margin-top: 6px;
}

/* CTA */
.cta-section {
  min-height: 430px;
  position: relative;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(34,24,17,.08), rgba(34,24,17,.88)),
    url("https://images.unsplash.com/photo-1558788353-f76d92427f16?auto=format&fit=crop&w=2200&q=88") center 55% / cover no-repeat;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: right;
  color: #fff;
  max-width: 650px;
  margin-left: auto;
}

.cta-content h2 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  margin-bottom: 26px;
}

/* Social */
.social {
  padding-bottom: 80px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.social-card {
  width: 190px;
  min-height: 80px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(44, 31, 20, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.social-card span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.social-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 42px 0 24px;
  background: #f8f3ec;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  font-size: .72rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: .82rem;
}

.footer-grid > .btn {
  justify-self: end;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  color: var(--muted);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .32);
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Responsive */
@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
    font-size: .82rem;
  }

  .header-cta {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }

  .service-card:nth-child(3) {
    border-right: 0;
  }

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

@media (max-width: 860px) {
  .nav-wrap {
    height: 82px;
  }

  .brand {
    width: 116px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    background: rgba(255,253,249,.98);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 6px;
  }

  .hero {
    padding-top: 82px;
	height: 100vh;
    min-height: 650px;
    background:
      linear-gradient(90deg, rgba(247,241,232,.98), rgba(247,241,232,.72)),
      url("https://images.unsplash.com/photo-1583337130417-3346a1be7dee?auto=format&fit=crop&w=1500&q=88") center / cover no-repeat;
  }

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

  .hero-copy {
    max-width: 650px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-image img {
    border-radius: 24px;
    min-height: 420px;
  }

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

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .schedule-closed {
    border-left: 0;
    border-top: 1px solid rgba(111, 75, 41, .25);
    padding-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-grid > .btn {
    justify-self: center;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    height: 100vh;
    min-height: 650px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  .hero-benefits {
    gap: 22px;
  }

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

  .service-card,
  .service-card:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 14px;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .schedule-main {
    align-items: flex-start;
  }

  .clock-icon {
    font-size: 3.6rem;
  }

  .cta-section {
    min-height: 500px;
    background:
      linear-gradient(0deg, rgba(34,24,17,.9), rgba(34,24,17,.12)),
      url("https://images.unsplash.com/photo-1558788353-f76d92427f16?auto=format&fit=crop&w=1200&q=85") center / cover no-repeat;
  }

  .cta-content {
    align-self: end;
    text-align: center;
    margin: 0 auto 50px;
  }

  .social-card {
    width: 100%;
    max-width: 320px;
  }
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
}
