/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root{
  --bg: #FFFDF5;
  --primary: #0487D9;
  --petroleo: #2A506F;
  --text: #111;
  --muted: rgba(0,0,0,0.06);
  --gold: #CDAC82;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}

body {
  background-color: var(--bg);
  color: var(--text);
}

/* ---------- HEADER/NAV ---------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header--main {
  position: relative;
}



/* o fundo tem que ter o mesmo tom de azul da imagem, e o logo deve ser a imagem mostrada*/

.header--scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--petroleo);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}


.nav-blue .menu__link {
  color: #fff;
}

.nav-blue .menu__link:hover{
  color: var(--gold);
}

.nav-blue .menu__link::after{
  background: var(--gold);
}


.header--scroll.show {
  transform: translateY(0);
}

.nav{
  /* Grid = logo | menu (centro real) | ações */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 40px);
  gap: 16px;
}


/* Logo */
.brand{
  display: inline-flex;
  align-items: center;
}
.brand img{
  width: clamp(110px, 10vw, 150px);
  height: auto;
  display: block;
}

/* Menu desktop central */
.menu{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

/* Links */
.menu__link{
  text-decoration: none;
  color: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: 0.25s;
}

.menu__link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.25s;
}

.menu__link:hover{
  color: var(--primary);
}
.menu__link:hover::after{
  width: 100%;
}

/*dropdown*/

.menu__item{
  position: relative;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;

  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);

  list-style: none;
  padding: 10px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 20;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.dropdown li a:hover {
  background: rgba(0,0,0,0.05);
  color: var(--primary);
}

.dropdown__arrow {
  margin-left: 6px;
  font-size: 0.75em;
}

.nav-blue .dropdown {
  background: var(--petroleo);
}

.nav-blue .dropdown li a {
  color: #fff;
}

.nav-blue .dropdown li a:hover {
  background: rgba(255,255,255,0.12);
}

/* Ações (botão + hamburguer) */
.actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Botão CTA */
.btn{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 14px;

  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);

  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 600;

  transition: 0.25s;
  white-space: nowrap;
}

.btn:hover{
  filter: brightness(1.1);
  box-shadow: 0 0 18px rgba(4, 135, 217, 0.35);
  transform: translateY(-2px);
}

/* Burger (só aparece no mobile) */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  display: none; /* aparece no mobile */
  cursor: pointer;
  padding: 10px;
}

.burger span{
  display: block;
  height: 2px;
  background: #111;
  border-radius: 2px;
  margin: 6px 0;
}

/* ---------- MENU MOBILE ---------- */


.menu-mobile{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 40px) 18px;
  display: none;
  gap: 10px;
}

.menu-mobile__link{
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

.btn--full{
  width: 100%;
}

.hero{
  min-height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.35)),
    url("Imagens/pexels-cedric-fauntleroy-4270367.jpg");
  background-size: cover;
  background-position: center;
}

.hero__overlay{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.hero__content{
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.hero__content h1{
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero__content p{
  margin-top: 12px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: 0.95;
}

.hero__content a{
  margin-top: 12px;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 900px){
  /* some o menu desktop, aparece o burger */
  .menu{
    display: none;
  }
  .burger{
    display: inline-block;
  }

  /* opcional: esconder o botão grande no topo e deixar só dentro do menu mobile */
  .actions .btn{
    display: none;
  }

  /* grid do nav fica mais compacto */
  .nav{
    grid-template-columns: auto 1fr auto;
  }
}


/* serviços */

.text-services{
  text-align: center;
  margin-bottom: 6.5%;
}

.text-services p {
  color: var(--primary);
  font-size: 1.4rem;
  padding: 1.5%;
}

.services-section {
  padding: 5% 8%;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.box {
  box-sizing: border-box;
  padding: 2rem 1.5rem;
  width: calc(25% - 1.5rem);
  text-align: center;
  border-radius: 16px;
  transition: 0.3s ease;
  box-sizing: border-box;
  border: 1px solid #948f8f;
  position: relative;
  overflow: hidden;
}

.services img {
  width: 80px;
  margin-bottom: 1rem;
}

.box a{
  text-decoration: none;
}

.box h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c2c2c;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #0487D9;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.box:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .box {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 600px) {
  .box {
    width: 100%;
  }
}


/* Clínica */
.clinic{
  padding: clamp(40px, 6vw, 90px) 0;
  background-color: var(--petroleo);
}

.clinic__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.clinic__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}

.clinic__grid{
  gap: 32px;
}

@media (min-width: 1024px){
  .clinic__grid{
    gap: 80px;
  }
}

.clinic__media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Texto */
.clinic__tag{
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.clinic__title{
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--bg);
}

.clinic__paragraph{
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bg);
  margin-bottom: 14px;
}

.gold {
  background-color: var(--gold);
  border: var(--gold);
}

/* Responsivo */
@media (max-width: 900px){
  .clinic__grid{
    grid-template-columns: 1fr;
  }
  .clinic__text{
    text-align: left;
  }
}

/* ---------- ABOUT ---------- */
.about{
  padding: clamp(40px, 6vw, 90px) 0;
}

.about__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.about__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px); /* mesmo esquema da clínica */
  align-items: center;
}

.about__media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Texto */
.about__tag{
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.about__title{
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}

.about__paragraph{
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.75);
  margin-bottom: 14px;
}

/* Responsivo */
@media (max-width: 900px){
  .about__grid{
    grid-template-columns: 1fr;
  }

  /* opcional: imagem primeiro no mobile */
  .about__media{
    order: -1;
  }
}

/* ---------- FOOTER ---------- */
.footer{
  background: var(--petroleo);
  color: #fff;
}

.footer__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px) 24px;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
}

/* Marca */
.footer__logo{
  width: 170px;
  margin-bottom: 14px;
}

.footer__text{
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer__phone{
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}

.footer__phone:hover{
  text-decoration: underline;
}

/* Títulos */
.footer__title{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

/* Listas */
.footer ul{
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer ul li{
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.footer ul a{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer ul a:hover{
  color: var(--gold);
}

/* Linha inferior */
.footer__bottom{
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* Responsivo */
@media (max-width: 900px){
  .footer__grid{
    grid-template-columns: 1fr;
  }

  .footer__logo{
    width: 150px;
  }
}

/* ---------- SERVICE PAGE ---------- */

.service-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.service-tag{
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-title{
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}

.service-paragraph{
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.75);
}

/* HERO */
.service-hero{
  min-height: 72vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.35)),
    url("Imagens/pexels-cedric-fauntleroy-4270367.jpg");
  background-size: cover;
  background-position: center;
}

.service-hero__overlay{
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
}

.service-hero__container{
  max-width: 900px;
  padding: 0 clamp(16px, 4vw, 40px);
  text-align: center;
  color: #fff;
}

.service-hero__tag{
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.service-hero__title{
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.service-hero__subtitle{
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-hero__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões extras no mesmo padrão */
.btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
}

.btn--ghost:hover{
  box-shadow: 0 0 18px rgba(255,255,255,0.20);
}

/* INTRO */
.service-intro{
  padding: clamp(40px, 6vw, 90px) 0;
}

.service-intro__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.service-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-intro__card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.service-intro__card h3{
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-intro__card ul{
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-intro__card li{
  color: rgba(0,0,0,0.78);
}

/* PASSOS */
.service-steps{
  padding: clamp(40px, 6vw, 90px) 0;
  background: rgba(0,0,0,0.02);
}

.service-steps__header{
  max-width: 850px;
  margin-bottom: 22px;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.step-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(4,135,217,0.10);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card h3{
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-card p{
  color: rgba(0,0,0,0.75);
  line-height: 1.7;
}

/* INDICAÇÕES */
.service-who{
  padding: clamp(40px, 6vw, 90px) 0;
}

.service-who__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.service-list{
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-list li{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(0,0,0,0.78);
}

/* FAQ */
.service-faq{
  padding: clamp(40px, 6vw, 90px) 0;
  background: rgba(0,0,0,0.02);
}

.service-faq__header{
  margin-bottom: 18px;
}

.faq-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.faq-item summary{
  cursor: pointer;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
}

.faq-item p{
  margin-top: 10px;
  color: rgba(0,0,0,0.75);
  line-height: 1.7;
}

/* CTA FINAL */
.service-cta{
  padding: clamp(40px, 6vw, 90px) 0;
}

.service-cta__box{
  background: var(--petroleo);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-cta__box h2{
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.service-cta__box p{
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}

.btn--gold{
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1a1a;
  font-weight: 800;
}

.btn--gold:hover{
  filter: brightness(1.05);
  box-shadow: 0 0 18px rgba(205,172,130,0.35);
}

/* RESPONSIVO */
@media (max-width: 1024px){
  .steps-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px){
  .service-intro__grid,
  .service-who__grid{
    grid-template-columns: 1fr;
  }

  .faq-grid{
    grid-template-columns: 1fr;
  }

  .service-cta__box{
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 600px){
  .steps-grid{
    grid-template-columns: 1fr;
  }
}


/* ---------- BLOG ---------- */
.blog {
  background: var(--bg);
}

/* Hero do blog */
.blog-hero {
  background: linear-gradient(120deg, rgba(4,135,217,0.10), rgba(42,80,111,0.10));
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.blog-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 60px) clamp(16px, 4vw, 40px);
}

.blog-hero__tag {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.blog-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.70);
  max-width: 72ch;
}

/* Container */
.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 40px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 90px);
}

/* Topbar (busca + filtro) */
.blog-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.blog-search {
  flex: 1;
  min-width: 240px;
}

.blog-search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  outline: none;
  background: #fff;
}

.blog-search input:focus {
  border-color: rgba(4,135,217,0.6);
  box-shadow: 0 0 0 4px rgba(4,135,217,0.12);
}

.blog-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-filter__label {
  font-weight: 600;
  color: rgba(0,0,0,0.70);
}

.blog-filter__select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  outline: none;
}

/* Layout (grid + sidebar) */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

/* Grid de posts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Card de post */
.post-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: 0.25s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}

.post-card__media {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s;
}

.post-card:hover .post-card__media img {
  transform: scale(1.03);
}

.post-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.post-card__content {
  padding: 16px 16px 18px;
}

.post-card__meta {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.60);
  margin-bottom: 10px;
}

.post-card__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.post-card__title a {
  text-decoration: none;
  color: var(--text);
}

.post-card__title a:hover {
  color: var(--primary);
}

.post-card__excerpt {
  color: rgba(0,0,0,0.70);
  line-height: 1.6;
  margin-bottom: 12px;
}

.post-card__link {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
}

.post-card__link:hover {
  text-decoration: underline;
}

/* Sidebar */
.blog-side {
  display: grid;
  gap: 14px;
}

.side-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.side-card__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.side-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.side-list a {
  text-decoration: none;
  color: rgba(0,0,0,0.75);
  font-weight: 600;
}

.side-list a:hover {
  color: var(--primary);
}

.side-post {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.side-post:first-of-type {
  border-top: none;
  padding-top: 0;
}

.side-post__title {
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

.side-post__meta {
  color: rgba(0,0,0,0.60);
  font-size: 0.9rem;
}

.side-post:hover .side-post__title {
  color: var(--primary);
}

/* CTA da sidebar */
.side-card--cta {
  background: linear-gradient(160deg, rgba(4,135,217,0.10), rgba(42,80,111,0.10));
}

.side-card__text {
  color: rgba(0,0,0,0.70);
  line-height: 1.6;
  margin: 10px 0 14px;
}

/* Paginação */
.blog-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(0,0,0,0.75);
  font-weight: 700;
  transition: 0.2s;
}

.page-btn:hover {
  border-color: rgba(4,135,217,0.5);
  box-shadow: 0 0 0 4px rgba(4,135,217,0.10);
  color: var(--primary);
}

.page-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Responsivo */
@media (max-width: 980px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- CONTATO ---------- */
.contact{
  background: var(--bg);
}

.contact-hero{
  background: linear-gradient(120deg, rgba(4,135,217,0.10), rgba(42,80,111,0.10));
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-hero__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 60px) clamp(16px, 4vw, 40px);
}

.contact-hero__tag{
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero__title{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-hero__subtitle{
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.70);
  max-width: 70ch;
}

.contact__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 40px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 90px);
}

/* Grid principal */
.contact__grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

/* Cards */
.contact-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.contact-card__title{
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-card__subtitle{
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Info */
.contact-info{
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.contact-info__label{
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info__value{
  color: rgba(0,0,0,0.80);
  line-height: 1.5;
}

.contact-info__value a{
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.contact-info__value a:hover{
  text-decoration: underline;
}

.contact-actions{
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.contact-note{
  margin-top: 14px;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Form */
.contact-card--form {
  background: var(--petroleo);
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
}

/* grid */
.contact-form {
  display: grid;
  gap: 14px;
}

/* campos */
.field {
  display: grid;
  gap: 6px;
}

/* labels */
.field label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* inputs, textarea e select (campo azul) */
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  outline: none;

  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-family: inherit;
}

/* placeholder */
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* setinha branca do select */
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* opções do dropdown (controle máximo possível) */
.field select option {
  color: #111;           /* evita texto branco invisível */
  background: #ffffff;   /* fundo legível */
}

/* focus */
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(205, 172, 130, 0.25);
  background: rgba(255, 255, 255, 0.16);
}

/* botão */
.btn--submit {
  margin-top: 8px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  width: fit-content;
}

.btn--submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(205, 172, 130, 0.35);
}

/* nota */
.form-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}


.btn--submit{
  width: fit-content;
}

/* Mapa */
.map-card{
  margin-top: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.map-card__text{
  padding: 18px;
}

.map-card__title{
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.map-card__subtitle{
  color: rgba(0,0,0,0.70);
  line-height: 1.6;
  margin-bottom: 14px;
}

.map-card__map{
  min-height: 260px;
}

.map-card__map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ */
.contact-faq{
  margin-top: 26px;
}

.contact-faq__title{
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.faq-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.faq-item h3{
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-item p{
  color: rgba(0,0,0,0.70);
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 980px){
  .contact__grid{
    grid-template-columns: 1fr;
  }
  .field--two{
    grid-template-columns: 1fr;
  }
  .map-card{
    grid-template-columns: 1fr;
  }
  .faq-grid{
    grid-template-columns: 1fr;
  }
}

/* ---------- POST (Página do Blog) ---------- */

/* Hero */
.post-hero{
  background: linear-gradient(120deg, rgba(4,135,217,0.10), rgba(42,80,111,0.10));
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.post-hero__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px) clamp(16px, 4vw, 40px) 20px;
}

.post-breadcrumb{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(0,0,0,0.55);
  font-weight: 600;
  margin-bottom: 12px;
}

.post-breadcrumb a{
  text-decoration: none;
  color: rgba(0,0,0,0.65);
}

.post-breadcrumb a:hover{
  color: var(--primary);
}

.post-hero__title{
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 12px;
  color: var(--text);
}

.post-hero__meta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(0,0,0,0.60);
  margin-bottom: 12px;
}

.post-pill{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.75);
  font-weight: 700;
}

.post-hero__subtitle{
  max-width: 80ch;
  color: rgba(0,0,0,0.70);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* Capa no hero (background) */

/* Layout */
.post{
  background: var(--bg);
}

.post__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 40px) clamp(16px, 4vw, 40px) clamp(40px, 6vw, 90px);
}

.post__layout{
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.post__article{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  overflow: hidden;
}

.post__figure img{
  width: 100%;
  display: block;
  height: auto;
}

.post__figure figcaption{
  padding: 10px 16px;
  color: rgba(0,0,0,0.60);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.post__content{
  padding: 18px;
}

.post__content .lead{
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.78);
  margin-bottom: 14px;
}

.post__content p{
  line-height: 1.8;
  color: rgba(0,0,0,0.74);
  margin: 12px 0;
}

.post__content h2{
  font-size: 1.35rem;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.post__content ul{
  margin: 10px 0 16px 18px;
  color: rgba(0,0,0,0.74);
  line-height: 1.8;
}

.post__content blockquote{
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--primary);
  background: rgba(4,135,217,0.08);
  border-radius: 12px;
  color: rgba(0,0,0,0.78);
  font-weight: 600;
}

.post__content hr{
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.10);
  margin: 18px 0;
}

/* Callout */
.post-callout{
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(4,135,217,0.10), rgba(42,80,111,0.10));
  border: 1px solid rgba(0,0,0,0.08);
}

.post-callout h3{
  margin-bottom: 6px;
  color: var(--text);
}

/* Share */
.post-share{
  display: grid;
  gap: 10px;
}

.post-share__title{
  font-weight: 800;
  color: rgba(0,0,0,0.70);
}

.post-share__buttons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn{
  text-decoration: none;
  font-weight: 700;
  color: rgba(0,0,0,0.72);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 12px;
  border-radius: 14px;
}

.share-btn:hover{
  border-color: rgba(4,135,217,0.35);
  color: var(--primary);
}

/* Autor */
.post-author{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}

.post-author__avatar{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0,0,0,0.12);
}

.post-author__name{
  font-weight: 800;
  margin-bottom: 4px;
}

.post-author__bio{
  color: rgba(0,0,0,0.68);
  line-height: 1.6;
}

/* Navegação entre posts */
.post-nav{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.post-nav__item{
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  transition: 0.2s;
}

.post-nav__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.post-nav__label{
  display: block;
  color: rgba(0,0,0,0.60);
  font-weight: 700;
  margin-bottom: 4px;
}

.post-nav__title{
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

/* Sidebar do post (usa side-card do seu blog, mas reforça bullets) */
.side-bullets{
  margin-left: 18px;
  color: rgba(0,0,0,0.70);
  line-height: 1.8;
}

/* Relacionados */
.related{
  margin-top: 22px;
}

.related__title{
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.related__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Responsivo */
@media (max-width: 980px){
  .post__layout{
    grid-template-columns: 1fr;
  }
  .related__grid{
    grid-template-columns: 1fr;
  }
  .post-nav{
    grid-template-columns: 1fr;
  }
}
