/* ==========================================================
   Petive — style.css consolidado
   Guardar como: css/style.css
   ========================================================== */

/* ------------------------------
   Variáveis globais
------------------------------ */
:root {
  --petive-bg: #eff2f5;
  --petive-dark: #3f3c37;
  --petive-text: #46423e;
  --petive-text-2: #4b4742;
  --petive-muted: #6f6d69;
  --petive-muted-2: #8b8580;
  --petive-gold: #c99b3f;
  --petive-gold-dark: #b58731;
  --petive-white: #ffffff;
  --petive-service-label: #d9d8d6;
  --petive-hero-panel: #cfcecd;
  --petive-form-bg: #d9d8d7;

  --nav-max: 1000px;
  --section-max: 1146px;
  --content-max: 900px;
  --blog-max: 790px;
  --services-max: 888px;
  --blog-list-max: 686px;
  --hero-max: 1112px;
  --form-panel-max: 1178px;
}

/* ------------------------------
   Reset leve
------------------------------ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--petive-white);
  color: var(--petive-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.page-home {
  background: var(--petive-bg);
}

img {
  max-width: 100%;
  height: auto;
}

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

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

h1,
h2,
h3 {
  color: var(--petive-dark);
  font-weight: 800;
  letter-spacing: -0.045em;
}

/* ------------------------------
   Containers
------------------------------ */
.nav-shell {
  width: min(100% - 36px, var(--nav-max));
  margin: 0 auto;
}

.page-shell {
  width: min(100% - 36px, var(--section-max));
  margin: 0 auto;
}

.content-shell {
  width: min(100% - 36px, var(--content-max));
  margin: 0 auto;
}

.blog-shell {
  width: min(100% - 36px, var(--blog-max));
  margin: 0 auto;
}

.services-shell {
  width: min(100% - 32px, var(--services-max));
  margin: 0 auto;
}

.blog-list-shell {
  width: min(100% - 32px, var(--blog-list-max));
  margin: 0 auto;
}

.hero-shell,
.features-shell {
  width: min(100% - 128px, var(--hero-max));
  margin: 0 auto;
}

.form-panel-shell {
  width: min(100% - 64px, var(--form-panel-max));
  margin: 0 auto;
}

/* ------------------------------
   Header padrão oficial
   Copiado da estrutura da index.html
------------------------------ */
.site-header {
  background: var(--petive-bg);
  padding: 18px 0 14px;
}

.navbar {
  width: 100%;
  padding: 0;
  background: transparent;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.brand-logo {
  width: 214px;
  max-height: 72px;
  height: auto;
  display: block;
  object-fit: contain;
}

.navbar-nav {
  align-items: center;
  gap: 23px;
}

.nav-link {
  padding: 0 !important;
  color: var(--petive-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--petive-gold);
}

/* Botão universal do menu: mesmo tamanho em todo o site */
.btn-header {
  width: 154px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--petive-dark);
  color: var(--petive-white);
  border: 1px solid var(--petive-dark);
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-header:hover {
  background: #272522;
  border-color: #272522;
  color: var(--petive-white);
}

.navbar-toggler {
  border: 0;
  padding: 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ------------------------------
   Botões universais
------------------------------ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin-top: 28px;
  padding: 0 14px;
  background: var(--petive-gold);
  color: var(--petive-white);
  border: 1px solid var(--petive-gold);
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background: var(--petive-gold-dark);
  border-color: var(--petive-gold-dark);
  color: var(--petive-white);
  transform: translateY(-1px);
}

.page-home .btn-gold {
  min-height: 40px;
  margin-top: 34px;
  padding: 0 19px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.btn-dark-main {
  min-width: 255px;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  background: var(--petive-dark);
  color: var(--petive-white);
  border: 1px solid var(--petive-dark);
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-dark-main:hover {
  background: #272522;
  border-color: #272522;
  color: var(--petive-white);
  transform: translateY(-1px);
}

/* ==========================================================
   INDEX / HOME
   ========================================================== */
.hero {
  margin-bottom: 0;
}

.hero-frame {
  position: relative;
  min-height: 552px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.18) 100%),
    url("../images/banner-casamentos.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 725px;
  padding: 205px 48px 70px;
  color: var(--petive-white);
}

.hero-title {
  margin: 0 0 26px;
  color: var(--petive-white);
  font-size: clamp(2.55rem, 6vw, 4.15rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  max-width: 780px;
  margin: 0;
  color: var(--petive-white);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
}

.services {
  padding: 38px 0 84px;
}

.section-title {
  margin: 0;
  color: var(--petive-dark);
  font-size: clamp(2rem, 4vw, 2.45rem);
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.045em;
}

.services-grid {
  margin-top: 48px;
  row-gap: 42px;
}

.service-card {
  max-width: 385px;
  margin: 0 auto;
  text-align: center;
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-title {
  margin: 28px 0 20px;
  color: var(--petive-dark);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-text {
  margin: 0;
  color: var(--petive-text);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.services-cta {
  margin-top: 44px;
  text-align: center;
}

/* ==========================================================
   SERVIÇOS / LISTAGEM
   ========================================================== */
.page-services .services-section {
  background: var(--petive-white);
  padding: 66px 0 45px;
}

.page-title {
  margin: 0;
  color: var(--petive-dark);
  text-align: center;
  font-size: clamp(2.55rem, 5vw, 3.05rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.title-line {
  width: 25px;
  height: 2px;
  margin: 22px auto 35px;
  background: var(--petive-dark);
}

.page-services .services-grid {
  row-gap: 40px;
}

.page-services .service-card {
  display: block;
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.page-services .service-card:hover {
  transform: translateY(-3px);
}

.page-services .service-image {
  width: 100%;
  height: 313px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-label {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--petive-service-label);
  color: var(--petive-dark);
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* ==========================================================
   DICAS & IDEIAS — bloco comum da index/serviços
   ========================================================== */
.blog-section {
  position: relative;
  padding: 86px 0 76px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)),
    url("../images/fundo-dicas-ideias.jpg");
  background-size: cover;
  background-position: center;
}

.blog-section .section-title {
  color: var(--petive-white);
}

.blog-title-main {
  margin: 0 0 30px;
  color: var(--petive-white);
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.45rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.blog-grid {
  margin-top: 32px;
  row-gap: 32px;
  justify-content: center;
}

.page-services .blog-section {
  min-height: 558px;
  padding: 73px 0 31px;
}

.page-services .blog-grid {
  margin-top: 0;
  row-gap: 28px;
}

.blog-card {
  height: 100%;
  display: block;
  background: var(--petive-white);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card-body {
  padding: 25px 22px 30px;
  min-height: 255px;
  background: var(--petive-white);
}

.blog-title,
.blog-card-title {
  margin: 0 0 17px;
  color: var(--petive-dark);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-excerpt,
.blog-card-text {
  margin: 0;
  color: #88837c;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.page-services .blog-card img {
  height: 158px;
}

.page-services .blog-card-body {
  min-height: 234px;
  padding: 23px 19px 28px;
}

.page-services .blog-card-title {
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.38;
}

.page-services .blog-card-text {
  color: var(--petive-muted-2);
  font-size: 0.86rem;
}

/* ==========================================================
   PÁGINAS DE SERVIÇO — CASAMENTOS / EVENTOS
   ========================================================== */
.page-wedding,
.page-events {
  background: var(--petive-white);
  color: var(--petive-text-2);
}

.hero-section {
  padding: 32px 0 55px;
  background: var(--petive-white);
}

.hero-wrap {
  position: relative;
  min-height: 520px;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 69%;
  height: 496px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 44px;
  width: 50%;
  min-height: 426px;
  padding: 69px 70px 56px;
  background: var(--petive-hero-panel);
  color: var(--petive-dark);
}

.hero-card h1 {
  margin: 0 0 40px;
  font-size: clamp(2.45rem, 4.2vw, 3.15rem);
  line-height: 1.38;
}

.hero-card p {
  max-width: 365px;
  margin: 0;
  color: var(--petive-text-2);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.85;
}

.features-section {
  padding: 7px 0 49px;
  background: var(--petive-white);
}

.features-section .section-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 2.45rem);
  line-height: 1.2;
}

.feature-card {
  height: 100%;
  min-height: 167px;
  padding: 37px 24px 24px;
  background: var(--petive-white);
  border: 2px solid var(--petive-gold);
  border-radius: 14px;
  box-shadow: 0 7px 12px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.feature-card h3 {
  margin: 0 0 21px;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--petive-text-2);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.62;
}

.love-section,
.memory-section {
  min-height: 253px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-size: cover;
  background-position: center;
  color: var(--petive-white);
  text-align: center;
}

.love-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("../images/casamento-quatro-patas.jpg");
}

.memory-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),
    url("../images/eventos-memorias-com-patas.jpg");
}

.love-section h2,
.memory-section h2 {
  margin: 0 0 33px;
  color: var(--petive-white);
  font-size: clamp(2rem, 3.4vw, 2.45rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.love-section p,
.memory-section p {
  max-width: 630px;
  margin: 0 auto;
  color: var(--petive-white);
  font-size: 0.99rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ------------------------------
   Formulários das páginas de serviço
------------------------------ */
.contact-section {
  background: var(--petive-white);
}

.contact-panel {
  min-height: 652px;
  background: var(--petive-form-bg);
  padding: 66px 0 70px;
}

.form-shell {
  width: min(100% - 64px, 640px);
  margin-left: clamp(32px, 18.3%, 216px);
  margin-right: auto;
}

.contact-panel h2 {
  margin: 0 0 18px;
  color: var(--petive-dark);
  font-size: clamp(2rem, 3.4vw, 2.45rem);
  line-height: 1.2;
  font-weight: 800;
}

.contact-intro {
  margin: 0 0 42px;
  color: var(--petive-text-2);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

.petive-form label {
  margin-bottom: 5px;
  color: var(--petive-text-2);
  font-size: 0.7rem;
  font-weight: 300;
}

.petive-form .form-control {
  min-height: 31px;
  padding: 3px 8px;
  border: 1px solid #8f8c89;
  border-radius: 0;
  background: var(--petive-white);
  color: var(--petive-dark);
  font-size: 0.82rem;
  box-shadow: none;
}

.petive-form .form-control:focus {
  border-color: var(--petive-gold);
  box-shadow: 0 0 0 0.15rem rgba(201, 155, 63, 0.18);
}

.petive-form textarea.form-control {
  min-height: 70px;
  resize: vertical;
}

.form-action-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-top: 72px;
}

.captcha-area {
  width: 190px;
}

.form-spinner {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 16px;
  color: #4a8df7;
  border-width: 4px;
}

.recaptcha-mock {
  width: 185px;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 5px 7px;
  background: #f7f7f7;
  border: 1px solid #d8d8d8;
  color: var(--petive-dark);
  font-size: 8px;
  line-height: 1;
}

.recaptcha-box {
  width: 13px;
  height: 13px;
  display: inline-block;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #777;
}

.recaptcha-brand {
  margin-left: auto;
  color: #777;
  font-size: 6px;
  text-align: center;
}

.btn-submit {
  width: 198px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 29px;
  background: var(--petive-gold);
  color: var(--petive-white);
  border: 1px solid var(--petive-gold);
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 400;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-submit:hover {
  background: var(--petive-gold-dark);
  border-color: var(--petive-gold-dark);
  color: var(--petive-white);
}

/* ==========================================================
   Footer e WhatsApp
   ========================================================== */
.site-footer {
  background: var(--petive-bg);
  padding: 45px 0 34px;
  text-align: center;
  color: var(--petive-dark);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 31px;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--petive-dark);
  font-size: 11px;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--petive-gold);
  text-decoration: underline;
}

.copyright {
  margin: 0;
  color: var(--petive-dark);
  font-size: 11px;
  font-weight: 400;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 50;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #35d96e;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 991.98px) {
  .nav-shell {
    width: min(100% - 32px, var(--nav-max));
  }

  .hero-shell,
  .features-shell {
    width: min(100% - 40px, var(--hero-max));
  }

  .site-header {
    padding: 22px 0 16px;
  }

  .navbar-collapse {
    margin-top: 20px;
  }

  .navbar-nav {
    align-items: flex-start;
    gap: 16px;
  }

  .nav-link {
    font-size: 14px;
  }

  .btn-header {
    width: 154px;
    min-height: 42px;
    margin-top: 4px;
  }

  .brand-logo {
    width: 176px;
    max-height: 58px;
  }

  .hero-frame {
    min-height: 500px;
  }

  .hero-content {
    padding: 145px 34px 62px;
  }

  .hero-wrap {
    min-height: auto;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 410px;
  }

  .hero-card {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 44px);
    min-height: auto;
    margin: -110px auto 0;
    padding: 48px 42px;
  }

  .feature-card {
    min-height: 175px;
  }

  .form-shell {
    margin-left: auto;
    margin-right: auto;
  }

  .page-services .service-image {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .page-shell,
  .content-shell,
  .blog-shell,
  .services-shell,
  .blog-list-shell {
    width: min(100% - 28px, var(--section-max));
  }

  .brand-logo {
    width: 176px;
    max-height: 58px;
  }

  .hero-frame {
    min-height: 470px;
  }

  .hero-content {
    padding: 110px 24px 54px;
  }

  .hero-title {
    margin-bottom: 22px;
  }

  .services {
    padding: 44px 0 68px;
  }

  .services-grid {
    margin-top: 38px;
  }

  .service-image {
    height: 230px;
  }

  .blog-section {
    padding: 64px 0;
  }

  .blog-card-body {
    min-height: auto;
  }

  .page-services .services-section {
    padding: 52px 0 42px;
  }

  .page-title {
    font-size: 2.35rem;
  }

  .title-line {
    margin-bottom: 32px;
  }

  .page-services .service-image {
    height: 250px;
  }

  .service-label {
    min-height: 58px;
    font-size: 1.1rem;
  }

  .page-services .blog-section {
    padding: 58px 0 50px;
  }

  .blog-title-main {
    margin-bottom: 28px;
  }

  .page-services .blog-card img {
    height: 210px;
  }

  .hero-section {
    padding: 26px 0 44px;
  }

  .hero-image {
    height: 320px;
  }

  .hero-card {
    width: calc(100% - 24px);
    margin-top: -72px;
    padding: 36px 28px;
  }

  .hero-card h1 {
    margin-bottom: 24px;
    font-size: 2.25rem;
    line-height: 1.25;
  }

  .hero-card p {
    font-size: 0.92rem;
  }

  .features-section {
    padding-bottom: 42px;
  }

  .features-section .section-title {
    margin-bottom: 34px;
  }

  .feature-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .love-section,
  .memory-section {
    min-height: 260px;
    padding: 50px 22px;
  }

  .love-section h2,
  .memory-section h2 {
    margin-bottom: 22px;
  }

  .form-panel-shell {
    width: 100%;
  }

  .contact-panel {
    min-height: auto;
    padding: 50px 0 74px;
  }

  .form-shell {
    width: min(100% - 32px, 640px);
  }

  .form-action-row {
    margin-top: 38px;
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-area {
    width: 190px;
    margin: 0 auto;
  }

  .form-spinner {
    margin: 0 auto 16px;
  }

  .btn-submit {
    width: 100%;
    margin-top: 0;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    padding: 0 9px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 420px) {
  .hero-frame {
    min-height: 440px;
  }

  .hero-content {
    padding: 88px 20px 48px;
  }

  .btn-dark-main {
    width: 100%;
    min-width: 0;
  }

  .page-shell,
  .services-shell,
  .blog-shell,
  .blog-list-shell {
    width: min(100% - 24px, 960px);
  }

  .page-services .service-image {
    height: 220px;
  }

  .page-services .blog-card img {
    height: 190px;
  }
}


/* ==========================================================


DICAS & IDEIAS — versão final alinhada com screenshot original
   Página: dicas-ideias.html
   ========================================================== */

body.page-tips {
  background: var(--petive-white);
}

/* Hero/título da página */
.page-tips .tips-page-hero {
  padding: 58px 0 35px;
  background: var(--petive-white);
  text-align: center;
}

.page-tips .tips-page-title {
  margin: 0;
  color: var(--petive-dark);
  font-size: clamp(2.9rem, 5vw, 3.65rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.page-tips .tips-title-line {
  width: 26px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--petive-dark);
}

/* Listagem estilo blog Wix */
.page-tips .tips-posts-section {
  padding: 0 0 64px;
  background: var(--petive-white);
}

.page-tips .tips-posts-shell {
  width: min(100% - 36px, 745px);
  margin: 0 auto;
}

.page-tips .tips-filter {
  margin: 0 0 43px;
  color: var(--petive-gold);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1;
}

.page-tips .tips-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
  align-items: start;
}

.page-tips .tips-post-card {
  display: flex;
  flex-direction: column;
  background: var(--petive-white);
  border: 1px solid #e7e4e0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.page-tips .tips-post-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-tips .tips-post-card--tall img {
  height: 480px;
}

.page-tips .tips-post-card--wide img {
  height: 244px;
}

.page-tips .tips-post-card--portrait img {
  height: 536px;
}

.page-tips .tips-post-body {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px 24px 20px;
}

.page-tips .tips-post-card--wide .tips-post-body {
  min-height: 272px;
}

.page-tips .tips-post-card--portrait .tips-post-body {
  min-height: 260px;
}

.page-tips .tips-reading-time {
  margin: 0 0 20px;
  color: #b2aaa2;
  font-size: 0.72rem;
  font-weight: 300;
}

.page-tips .tips-post-title {
  margin: 0 0 14px;
  color: var(--petive-dark);
  font-size: 1.28rem;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-tips .tips-post-excerpt {
  margin: 0;
  color: #9b948f;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.56;
}

.page-tips .tips-post-views {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #ece9e6;
  color: #b2aaa2;
  font-size: 0.72rem;
  font-weight: 300;
}

/* Serviços no fundo, com gradiente dourado/antracite */
.page-tips .tips-services-showcase {
  padding: 47px 0 72px;
  background: linear-gradient(180deg, #bd9141 0%, #3f3c37 100%);
  color: var(--petive-white);
}

.page-tips .tips-services-showcase .section-title {
  color: var(--petive-white);
  font-size: clamp(2.55rem, 4.6vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.page-tips .tips-services-line {
  width: 25px;
  height: 2px;
  margin: 0 auto 41px;
  background: rgba(255,255,255,0.88);
}

.page-tips .tips-services-shell {
  width: min(100% - 80px, 950px);
  margin: 0 auto;
}

.page-tips .tips-services-grid-final {
  row-gap: 34px;
}

.page-tips .tips-service-card-final {
  display: block;
  background: var(--petive-service-label);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease;
}

.page-tips .tips-service-card-final:hover {
  transform: translateY(-3px);
}

.page-tips .tips-service-card-final img {
  width: 100%;
  height: 284px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-tips .tips-service-card-final h3 {
  min-height: 68px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--petive-service-label);
  color: var(--petive-dark);
  font-size: 1.27rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: underline;
}

/* Responsivo específico da página Dicas */
@media (max-width: 991.98px) {
  .page-tips .tips-posts-shell {
    width: min(100% - 32px, 745px);
  }

  .page-tips .tips-services-shell {
    width: min(100% - 40px, 950px);
  }

  .page-tips .tips-service-card-final img {
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .page-tips .tips-page-hero {
    padding: 48px 0 28px;
  }

  .page-tips .tips-masonry {
    grid-template-columns: 1fr;
  }

  .page-tips .tips-post-card--tall img,
  .page-tips .tips-post-card--wide img,
  .page-tips .tips-post-card--portrait img {
    height: 260px;
  }

  .page-tips .tips-post-body,
  .page-tips .tips-post-card--wide .tips-post-body,
  .page-tips .tips-post-card--portrait .tips-post-body {
    min-height: auto;
  }

  .page-tips .tips-services-showcase {
    padding: 52px 0 62px;
  }

  .page-tips .tips-service-card-final img {
    height: 220px;
  }
}


/* ==========================================================
   QUEM SOMOS — versão visual alinhada com screenshot original
   Página: pet-sitting-casamentos-eventos.html
   ========================================================== */

body.page-about {
  background: var(--petive-white);
}

.page-about .about-intro {
  padding: 55px 0 78px;
  background: var(--petive-white);
  text-align: center;
}

.page-about .about-intro-shell {
  width: min(100% - 36px, 760px);
  margin: 0 auto;
}

.page-about .about-title {
  margin: 0;
  color: var(--petive-dark);
  font-size: clamp(2.75rem, 5vw, 3.45rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.page-about .title-line {
  width: 28px;
  height: 2px;
  margin: 22px auto 22px;
  background: var(--petive-dark);
}

.page-about .about-subtitle {
  margin: 0 0 34px;
  color: var(--petive-dark);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-about .about-lead {
  margin: 0 auto 30px;
  color: var(--petive-text-2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.page-about .about-lead:last-child {
  margin-bottom: 0;
}

/* Diferenciais com círculos */
.page-about .about-differentials {
  padding: 52px 0 76px;
  background: var(--petive-bg);
}

.page-about .about-differentials-shell {
  width: min(100% - 72px, 760px);
  margin: 0 auto;
}

.page-about .section-title-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-bottom: 42px;
}

.page-about .section-title-with-lines::before,
.page-about .section-title-with-lines::after {
  content: "";
  width: 125px;
  height: 1px;
  background: rgba(63, 60, 55, 0.7);
}

.page-about .section-title-with-lines h2 {
  margin: 0;
  color: var(--petive-dark);
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-align: center;
  white-space: nowrap;
}

.page-about .differential-circle {
  position: relative;
  width: 232px;
  height: 232px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--petive-gold);
  border-radius: 50%;
  background: var(--petive-dark);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
}

.page-about .differential-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62);
}

.page-about .differential-circle-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
  color: var(--petive-white);
  text-align: center;
}

.page-about .differential-circle h3 {
  margin: 0 0 18px;
  color: var(--petive-white);
  font-size: 1.13rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-about .differential-circle p {
  margin: 0;
  color: var(--petive-white);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

/* Bloco compromissos */
.page-about .commitments-showcase {
  display: grid;
  grid-template-columns: 1fr 1.58fr 1fr;
  min-height: 590px;
  background: #fbf6e8;
}

.page-about .commitments-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.page-about .commitments-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62);
}

.page-about .commitments-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 46px 50px;
  background: #fbf6e8;
  color: var(--petive-dark);
  text-align: left;
}

.page-about .commitments-inner {
  max-width: 560px;
  margin: 0 auto;
}

.page-about .commitments-logo {
  display: block;
  width: 170px;
  height: auto;
  max-height: 145px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.page-about .commitments-title {
  margin: 0 0 56px;
  color: var(--petive-dark);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.page-about .commitments-list {
  margin: 0;
  padding-left: 22px;
  color: var(--petive-text-2);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
}

.page-about .commitments-list li {
  margin-bottom: 7px;
}

.page-about .commitments-list strong {
  color: var(--petive-dark);
  font-weight: 800;
}

/* CTA final */
.page-about .about-cta-section {
  padding: 96px 0 84px;
  background: var(--petive-white);
}

.page-about .about-cta-shell {
  width: min(100% - 72px, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 110px;
  align-items: center;
}

.page-about .about-cta-title {
  margin: 0;
  color: var(--petive-dark);
  font-size: clamp(2.75rem, 5vw, 3.55rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.page-about .about-cta-text {
  max-width: 480px;
  margin: 0 0 18px;
  color: var(--petive-text-2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.78;
}

.page-about .about-cta-section .btn-gold {
  min-height: 34px;
  margin-top: 0;
  padding: 0 18px;
  border-radius: 0;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Ajustes para o footer nesta página */
.page-about .site-footer {
  padding: 45px 0 34px;
}

@media (max-width: 991.98px) {
  .page-about .about-differentials-shell {
    width: min(100% - 40px, 760px);
  }

  .page-about .section-title-with-lines {
    gap: 22px;
  }

  .page-about .section-title-with-lines::before,
  .page-about .section-title-with-lines::after {
    width: 72px;
  }

  .page-about .commitments-showcase {
    grid-template-columns: 1fr;
  }

  .page-about .commitments-image {
    min-height: 360px;
  }

  .page-about .commitments-panel {
    padding: 48px 28px;
  }

  .page-about .about-cta-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 767.98px) {
  .page-about .about-intro {
    padding: 48px 0 58px;
  }

  .page-about .about-differentials {
    padding: 46px 0 62px;
  }

  .page-about .section-title-with-lines {
    display: block;
  }

  .page-about .section-title-with-lines::before,
  .page-about .section-title-with-lines::after {
    display: none;
  }

  .page-about .differential-circle {
    width: 236px;
    height: 236px;
  }

  .page-about .commitments-showcase {
    min-height: auto;
  }

  .page-about .commitments-image {
    min-height: 300px;
  }

  .page-about .commitments-title {
    margin-bottom: 34px;
  }

  .page-about .about-cta-section {
    padding: 60px 0;
  }

  .page-about .about-cta-shell {
    width: min(100% - 32px, 1040px);
  }
}


/* ==========================================================
   DETALHE DE ARTIGO / BLOG POST
   Página: o-teu-patudo-num-batizado...
   Escopo isolado para não interferir com listagens Dicas/Quem Somos
   ========================================================== */

body.page-post {
  background: var(--petive-white);
  color: var(--petive-text-2);
}

.page-post .post-page {
  padding: 32px 0 60px;
  background: var(--petive-white);
}

.page-post .post-shell {
  width: min(100% - 36px, 748px);
  margin: 0 auto;
}

.page-post .post-back-link {
  display: inline-block;
  margin: 0 0 30px;
  color: var(--petive-gold);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1;
}

.page-post .post-back-link:hover {
  color: var(--petive-gold-dark);
  text-decoration: underline;
}

.page-post .article-card {
  border: 1px solid #e7e4e0;
  background: var(--petive-white);
}

.page-post .article-inner {
  padding: 38px 76px 34px;
}

.page-post .post-meta-top {
  margin: 0 0 16px;
  color: #9a948e;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.45;
}

.page-post .post-title {
  margin: 0 0 22px;
  color: var(--petive-dark);
  font-size: clamp(2rem, 3.8vw, 2.55rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.page-post .post-lead {
  margin: 0 0 18px;
  color: var(--petive-text-2);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.65;
}

.page-post .post-main-image {
  width: 100%;
  margin: 28px 0 18px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-post .article-content h2 {
  margin: 28px 0 14px;
  color: var(--petive-dark);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.page-post .article-content h3 {
  margin: 20px 0 7px;
  color: var(--petive-dark);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-post .article-content p,
.page-post .article-content li {
  color: var(--petive-text-2);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.72;
}

.page-post .article-content p {
  margin: 0 0 14px;
}

.page-post .article-content ul {
  margin: 0 0 18px 20px;
  padding: 0;
}

.page-post .article-content li {
  margin-bottom: 4px;
}

.page-post .article-content strong {
  font-weight: 700;
  color: var(--petive-dark);
}

.page-post .article-cta {
  margin: 30px 0;
  text-align: center;
}

.page-post .article-cta .btn-gold {
  min-height: 34px;
  margin-top: 0;
  padding: 0 22px;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
}

.page-post .post-share {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #e7e4e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--petive-dark);
  font-size: 0.82rem;
}

.page-post .share-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.page-post .share-icons a {
  color: var(--petive-dark);
  font-size: 0.82rem;
}

.page-post .share-icons a:hover {
  color: var(--petive-gold);
}

.page-post .post-views {
  margin-top: 18px;
  color: #9a948e;
  font-size: 0.72rem;
  font-weight: 300;
}

.page-post .post-like {
  color: #d86a74;
  font-size: 1rem;
}

.page-post .related-posts {
  padding: 34px 0 0;
}

.page-post .related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.page-post .related-header h2 {
  margin: 0;
  color: var(--petive-dark);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
}

.page-post .related-header a {
  color: var(--petive-dark);
  font-size: 0.72rem;
  font-weight: 300;
}

.page-post .related-card {
  height: 100%;
  display: block;
  border: 1px solid #e7e4e0;
  background: var(--petive-white);
  overflow: hidden;
}

.page-post .related-card img {
  width: 100%;
  height: 118px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-post .related-card-body {
  min-height: 120px;
  padding: 13px 14px 12px;
}

.page-post .related-card h3 {
  margin: 0 0 16px;
  color: var(--petive-dark);
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-post .related-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9a948e;
  font-size: 0.68rem;
  border-top: 1px solid #ece9e5;
  padding-top: 8px;
}

@media (max-width: 767.98px) {
  .page-post .post-page {
    padding: 26px 0 48px;
  }

  .page-post .article-inner {
    padding: 30px 24px;
  }

  .page-post .post-title {
    font-size: 1.9rem;
  }

  .page-post .related-card img {
    height: 180px;
  }
}

@media (max-width: 420px) {
  .page-post .post-shell {
    width: min(100% - 24px, 748px);
  }

  .page-post .article-inner {
    padding: 26px 20px;
  }
}
/* ==========================================================
   POSTS / DETALHE DE ARTIGO — template v2
   Compatibilidade para posts recentes:
   - pet-care-no-dia-do-casamentos...
   - como-incluir-o-teu-patudo-numa-festa...
   - ideias-criativas-para-incluir-o-teu-patudo...
   Escopo: apenas páginas com body.page-post e wrapper .post-main
   ========================================================== */

body.page-post {
  background: var(--petive-white);
}

.page-post .site-header {
  background: var(--petive-bg);
}

.page-post .post-main {
  padding: 42px 0 54px;
  background: var(--petive-white);
}

.page-post .post-main .post-shell {
  width: min(100% - 36px, 748px);
  margin: 0 auto;
}

.page-post .post-main .post-card {
  background: var(--petive-white);
  border: 1px solid #e7e4e0;
  padding: 42px 78px 34px;
}

.page-post .post-main .post-breadcrumb {
  display: inline-block;
  margin-bottom: 28px;
  color: #b8b3ae;
  font-size: 11px;
  font-weight: 400;
}

.page-post .post-main .post-meta {
  margin-bottom: 14px;
  color: #a9a39e;
  font-size: 12px;
  line-height: 1.4;
}

.page-post .post-main .post-title-main {
  margin: 0 0 18px;
  color: var(--petive-dark);
  font-size: clamp(2rem, 3.4vw, 2.55rem);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-post .post-main .post-lead {
  margin: 0 0 22px;
  color: var(--petive-text);
  font-size: 14px;
  line-height: 1.78;
  font-weight: 300;
}

.page-post .post-main .post-content {
  color: var(--petive-text);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.78;
}

.page-post .post-main .post-content p {
  margin: 0 0 17px;
}

.page-post .post-main .post-content strong {
  font-weight: 700;
  color: var(--petive-dark);
}

.page-post .post-main .post-content h2 {
  margin: 30px 0 12px;
  color: var(--petive-dark);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-post .post-main .post-content h3 {
  margin: 22px 0 10px;
  color: var(--petive-dark);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-post .post-main .post-content ul {
  margin: 0 0 18px 18px;
  padding: 0;
  list-style: disc;
}

.page-post .post-main .post-content li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.page-post .post-main .post-hero-image {
  margin: 25px 0 20px;
}

.page-post .post-main .post-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}

.page-post .post-main .post-cta {
  margin: 28px 0;
  text-align: center;
}

.page-post .post-main .post-cta .btn-gold {
  min-height: 31px;
  margin-top: 0;
  padding: 0 18px;
  border-radius: 0;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
}

.page-post .post-main .post-share {
  margin-top: 36px;
  padding: 18px 0 13px;
  border-top: 1px solid #e7e4e0;
  border-bottom: 1px solid #e7e4e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-post .post-main .share-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.page-post .post-main .share-links a {
  color: var(--petive-dark);
  font-size: 12px;
  line-height: 1;
}

.page-post .post-main .post-views {
  color: #b8b3ae;
  font-size: 11px;
}

.page-post .post-main .post-like {
  color: #e65d70;
  font-size: 15px;
}

.page-post .post-main .related-posts {
  margin-top: 42px;
}

.page-post .post-main .related-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.page-post .post-main .related-heading-row h2 {
  margin: 0;
  color: var(--petive-dark);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.page-post .post-main .related-heading-row a {
  color: var(--petive-dark);
  font-size: 12px;
}

.page-post .post-main .related-card {
  height: 100%;
  display: block;
  background: var(--petive-white);
  border: 1px solid #e7e4e0;
  overflow: hidden;
}

.page-post .post-main .related-card img {
  width: 100%;
  height: 112px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-post .post-main .related-card-body {
  min-height: 118px;
  padding: 12px 12px 10px;
}

.page-post .post-main .related-card h3 {
  margin: 0 0 12px;
  color: var(--petive-dark);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-post .post-main .related-meta {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #ece8e3;
  color: #aaa39d;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .page-post .post-main {
    padding: 30px 0 44px;
  }

  .page-post .post-main .post-card {
    padding: 30px 24px 28px;
  }

  .page-post .post-main .post-title-main {
    font-size: 2rem;
  }

  .page-post .post-main .post-content {
    font-size: 13px;
  }

  .page-post .post-main .post-share {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-post .post-main .related-card img {
    height: 190px;
  }
}

@media (max-width: 420px) {
  .page-post .post-main .post-shell {
    width: min(100% - 24px, 748px);
  }

  .page-post .post-main .post-card {
    padding: 26px 18px;
  }
}

/* ==========================================================
   CONTACTOS — página final alinhada com screenshot original
   Página: contactos.html
   ========================================================== */

body.page-contact {
  background: var(--petive-white);
  color: var(--petive-text-2);
}

.page-contact .contact-page-hero {
  padding: 70px 0 42px;
  background: var(--petive-white);
  text-align: center;
}

.page-contact .contact-hero-shell {
  width: min(100% - 36px, 670px);
  margin: 0 auto;
}

.page-contact .contact-page-title {
  margin: 0;
  color: var(--petive-dark);
  font-size: clamp(3rem, 5vw, 3.55rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.page-contact .contact-title-line {
  width: 27px;
  height: 2px;
  margin: 29px auto 39px;
  background: var(--petive-dark);
}

.page-contact .contact-intro-main {
  margin: 0 auto;
  color: var(--petive-text-2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.68;
  text-align: center;
}

.page-contact .contact-form-section {
  background: var(--petive-form-bg);
  padding: 55px 0 112px;
}

.page-contact .contact-form-shell {
  width: min(100% - 36px, 675px);
  margin: 0 auto;
}

.page-contact .contact-form-title {
  margin: 0 0 43px;
  color: var(--petive-dark);
  font-size: clamp(2rem, 4vw, 2.45rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.page-contact .contact-form label {
  margin-bottom: 5px;
  color: var(--petive-text-2);
  font-size: 0.76rem;
  font-weight: 300;
}

.page-contact .contact-form .form-control {
  min-height: 33px;
  padding: 4px 8px;
  background: var(--petive-white);
  color: var(--petive-dark);
  border: 1px solid #8f8c89;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.86rem;
}

.page-contact .contact-form .form-control:focus {
  border-color: var(--petive-gold);
  box-shadow: 0 0 0 0.15rem rgba(201, 155, 63, 0.18);
}

.page-contact .contact-form textarea.form-control {
  min-height: 74px;
  resize: vertical;
}

.page-contact .contact-actions-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-top: 68px;
}

.page-contact .contact-spinner {
  width: 22px;
  height: 22px;
  margin-left: 90px;
  color: #4a8df7;
  border-width: 4px;
}

.page-contact .contact-submit {
  width: 214px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  background: var(--petive-gold);
  color: var(--petive-white);
  border: 1px solid var(--petive-gold);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-contact .contact-submit:hover {
  background: var(--petive-gold-dark);
  border-color: var(--petive-gold-dark);
  color: var(--petive-white);
}

@media (max-width: 767.98px) {
  .page-contact .contact-page-hero {
    padding: 52px 0 36px;
  }

  .page-contact .contact-title-line {
    margin: 22px auto 28px;
  }

  .page-contact .contact-form-section {
    padding: 48px 0 72px;
  }

  .page-contact .contact-form-title {
    margin-bottom: 32px;
  }

  .page-contact .contact-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-top: 38px;
  }

  .page-contact .contact-spinner {
    margin: 0 auto;
  }

  .page-contact .contact-submit {
    width: 100%;
    margin-top: 0;
  }
}


/* ==========================================================
   PÁGINAS LEGAIS — Política de Privacidade / Termos
   ========================================================== */
body.page-legal {
  background: var(--petive-white);
  color: var(--petive-text);
}

.page-legal .legal-main {
  background: var(--petive-white);
}

.page-legal .legal-hero {
  padding: 58px 0 18px;
  text-align: center;
}

.page-legal .legal-title {
  margin: 0;
  color: var(--petive-dark);
  font-size: clamp(2.75rem, 5vw, 3.45rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.page-legal .legal-title-line {
  width: 28px;
  height: 2px;
  margin: 22px auto 0;
  background: var(--petive-dark);
}

.page-legal .legal-content-section {
  padding: 8px 0 76px;
}

.page-legal .legal-shell {
  width: min(100% - 36px, 760px);
  margin: 0 auto;
}

.page-legal .legal-content {
  color: var(--petive-text-2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.page-legal .legal-content p {
  margin: 0 0 28px;
}

.page-legal .legal-content p:last-child {
  margin-bottom: 0;
}

.page-legal .legal-content strong {
  color: var(--petive-dark);
  font-weight: 800;
}

.page-legal .legal-content ul {
  margin: -18px 0 28px 25px;
  padding: 0;
}

.page-legal .legal-content li {
  margin: 0 0 7px;
  padding-left: 4px;
}

.page-legal .legal-section-heading {
  margin: 0 0 28px;
  color: var(--petive-dark);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: -0.015em;
}

@media (max-width: 767.98px) {
  .page-legal .legal-hero {
    padding: 48px 0 14px;
  }

  .page-legal .legal-content-section {
    padding: 8px 0 58px;
  }

  .page-legal .legal-title {
    font-size: 2.5rem;
  }

  .page-legal .legal-content {
    font-size: 0.95rem;
    line-height: 1.72;
  }
}

/* ==========================================================
   MOBILE HEADER — versão overlay alinhada com referência visual
   Objetivo:
   - Header fechado mais alto, logótipo centrado e maior
   - Hamburguer elegante à direita
   - Menu aberto em overlay full screen
   - Links centrados, grandes e leves
   - Botão "Pedir Informações" escondido no menu mobile
   ========================================================== */

@media (max-width: 991.98px) {
  .site-header {
    position: relative;
    z-index: 1040;
    background: var(--petive-bg);
    padding: 58px 0 58px;
  }

  .nav-shell {
    width: 100%;
    max-width: none;
    padding: 0 34px;
    margin: 0 auto;
  }

  .navbar {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-brand {
    margin: 0 auto !important;
    padding: 0;
  }

  .brand-logo {
    width: clamp(205px, 53vw, 230px);
    max-height: none;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .navbar-toggler {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1062;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: translateY(-50%);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 39px;
    height: 31px;
    display: block;
    background-image: none !important;
    background-color: transparent;
    border-top: 4px solid var(--petive-dark);
    transition: border-color 0.18s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 39px;
    height: 4px;
    background: var(--petive-dark);
    border-radius: 2px;
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s ease;
  }

  .navbar-toggler-icon::before {
    top: 9px;
  }

  .navbar-toggler-icon::after {
    top: 22px;
  }

  .navbar-collapse {
    margin-top: 0;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    position: fixed;
    inset: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh !important;
    min-height: 100vh;
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    margin: 0 !important;
    padding: 78px 24px 60px;
    overflow-y: auto;
    background: var(--petive-bg);
    transition: none !important;
  }

  .navbar-collapse.show .navbar-nav,
  .navbar-collapse.collapsing .navbar-nav {
    width: 100%;
    display: flex;
    align-items: center !important;
    justify-content: flex-start;
    gap: 34px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .navbar-collapse.show .nav-link,
  .navbar-collapse.collapsing .nav-link {
    display: inline-block;
    padding: 0 !important;
    color: var(--petive-dark);
    font-size: clamp(2rem, 8.2vw, 2.75rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .navbar-collapse.show .nav-link.active,
  .navbar-collapse.collapsing .nav-link.active {
    color: var(--petive-gold);
  }

  .navbar-collapse.show .nav-link:hover,
  .navbar-collapse.collapsing .nav-link:hover {
    color: var(--petive-gold);
  }

  .navbar-collapse.show .nav-item:last-child,
  .navbar-collapse.collapsing .nav-item:last-child,
  .navbar-collapse.show .btn-header,
  .navbar-collapse.collapsing .btn-header {
    display: none !important;
  }

  .navbar-toggler[aria-expanded="true"] {
    position: fixed;
    top: 72px;
    right: 36px;
    z-index: 1062;
    transform: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-top-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 13px;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 13px;
    transform: rotate(-45deg);
  }

  body:has(.navbar-collapse.show),
  body:has(.navbar-collapse.collapsing) {
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 54px 0 54px;
  }

  .nav-shell {
    padding: 0 28px;
  }

  .brand-logo {
    width: clamp(196px, 56vw, 220px);
  }

  .navbar-toggler {
    width: 50px;
    height: 50px;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    width: 36px;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    padding-top: 74px;
  }

  .navbar-collapse.show .navbar-nav,
  .navbar-collapse.collapsing .navbar-nav {
    gap: 31px;
  }

  .navbar-collapse.show .nav-link,
  .navbar-collapse.collapsing .nav-link {
    font-size: clamp(1.92rem, 8.6vw, 2.35rem);
  }

  .navbar-toggler[aria-expanded="true"] {
    top: 68px;
    right: 30px;
  }
}

/* ==========================================================
   AJUSTE DESKTOP — aproximação visual ao layout antigo (Wix)
   Objetivo:
   - Alargar ligeiramente os blocos principais sem colar ao browser
   - Manter menu e banner alinhados pela mesma margem direita/esquerda
   - Repor o tamanho do menu desktop para ficar mais próximo da referência antiga
   - Não interferir com o menu mobile
   ========================================================== */
@media (min-width: 992px) {
  :root {
    --nav-max: 1800px;
    --section-max: 1800px;
    --hero-max: 1800px;
    --content-max: 1180px;
    --blog-max: 1120px;
    --services-max: 1100px;
    --form-panel-max: 1800px;
  }

  .nav-shell,
  .page-shell {
    width: min(90vw, var(--section-max));
    margin-left: auto;
    margin-right: auto;
  }

  .nav-shell {
    width: min(90vw, var(--nav-max));
  }

  .hero-shell,
  .features-shell {
    width: min(90vw, var(--hero-max));
    margin-left: auto;
    margin-right: auto;
  }

  .form-panel-shell {
    width: min(90vw, var(--form-panel-max));
    margin-left: auto;
    margin-right: auto;
  }

  .content-shell {
    width: min(80vw, var(--content-max));
    margin-left: auto;
    margin-right: auto;
  }

  .blog-shell {
    width: min(82vw, var(--blog-max));
    margin-left: auto;
    margin-right: auto;
  }

  .services-shell {
    width: min(82vw, var(--services-max));
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-nav {
    gap: 22px;
  }

  .nav-link {
    font-size: 14px;
    font-weight: 600;
  }

  .btn-header {
    width: 190px;
    min-height: 52px;
    font-size: 17px;
  }

  .service-card {
    max-width: 500px;
  }

  .service-image {
    height: clamp(275px, 17vw, 325px);
  }
}
/* FIM AJUSTE DESKTOP */

