/* ============================================================
   INSTITUTO VETCARE — Global Stylesheet
   Otimizado para SEO, performance e acessibilidade
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:    #000000;
  --teal:     #49A6A6;
  --white:    #FFFFFF;
  --dark-teal:#3C665F;
  --mid-green:#587468;
  --sage:     #579A8D;
  --deep-teal:#027276;
  --steel:    #5B9C9E;
  --mint:     #B8DCD2;
  --font-main: 'Inter', 'Segoe UI', sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(2,114,118,0.10);
  --shadow-lg:0 8px 48px rgba(2,114,118,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: #333; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide { max-width: 1400px; }

.section {
  padding: 100px 0;
}

.section--alt { background: #f7fbfb; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

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

.btn--primary:hover {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,114,118,0.30);
}

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

.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--deep-teal);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--mint);
  border-color: var(--mint);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.7rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* [EDITÁVEL] Logo real no navbar */
.navbar__logo-img {
  height: 56px;
  width: auto;
  background: var(--white);
  border-radius: 12px;
  padding: 5px 10px;
  display: block;
}
@media (max-width: 600px) {
  .navbar__logo-img { height: 46px; }
}

.navbar__logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.navbar.scrolled .navbar__logo-text { color: var(--dark-teal); }

.navbar__logo-sub {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  display: block;
}

.navbar.scrolled .navbar__logo-sub { color: var(--sage); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--mint);
  transition: var(--transition);
}

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

.navbar.scrolled .navbar__links a { color: var(--dark-teal); }
.navbar.scrolled .navbar__links a::after { background: var(--teal); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar.scrolled .navbar__phone { color: var(--dark-teal); }

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .navbar__hamburger span { background: var(--dark-teal); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #0a2a2a 40%, var(--dark-teal) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1583336663277-620dc1996580?w=1800&q=80') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(2,114,118,0.55) 60%,
    rgba(60,102,95,0.4) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(73,166,166,0.2);
  border: 1px solid rgba(73,166,166,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--mint); }

.hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}

/* ---------- FLOATING BAR ---------- */
.info-bar {
  background: var(--deep-teal);
  padding: 1rem 0;
  color: var(--white);
}

.info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.info-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.info-bar__item-icon {
  font-size: 1.1rem;
  opacity: 0.85;
}

.info-bar__item strong { color: var(--mint); }

/* ---------- FEATURES STRIP ---------- */
.features-strip {
  padding: 80px 0;
  background: var(--white);
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid #e8f4f4;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--mint), rgba(73,166,166,0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

/* ---------- ABOUT ---------- */
.about__image-wrap {
  position: relative;
}

.about__image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about__image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 140px;
}

.about__image-badge-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about__image-badge-label {
  font-size: 0.75rem;
  opacity: 0.9;
  display: block;
  margin-top: 0.25rem;
}

.about__text h2 { margin-bottom: 1.25rem; }

.about__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #444;
}

.about__list-item-check {
  width: 22px; height: 22px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--dark-teal);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

/* ---------- SERVICES ---------- */
.services__header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--dark-teal);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: #666;
  flex: 1;
  margin: 0 0 1rem;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

.service-card__link:hover { color: var(--deep-teal); gap: 0.6rem; }

/* ---------- HOURS SECTION ---------- */
.hours {
  background: linear-gradient(135deg, var(--dark-teal), var(--deep-teal));
  padding: 80px 0;
  color: var(--white);
}

.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hours__title { color: var(--white); margin-bottom: 1rem; }
.hours__lead { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.hours__table {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.hours__row:last-child { border-bottom: none; }

.hours__row--today {
  background: rgba(73,166,166,0.2);
  font-weight: 600;
}

.hours__day { color: rgba(255,255,255,0.85); }
.hours__time { color: var(--mint); font-weight: 600; }
.hours__closed { color: rgba(255,255,255,0.4); font-style: italic; }

.hours__emergency {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
}

.hours__emergency h3 {
  color: var(--mint);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours__emergency p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials__header {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--mint);
  line-height: 1;
  opacity: 0.5;
}

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

.testimonial-card__stars {
  color: #FFB800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: #444;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-teal);
}

.testimonial-card__pet {
  font-size: 0.78rem;
  color: #888;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal), var(--deep-teal));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-banner__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- TEAM PREVIEW ---------- */
.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-6px); }

.team-card__img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.team-card__img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--mint);
  box-shadow: var(--shadow);
}

.team-card__badge {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--teal);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.team-card__name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--dark-teal);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.team-card__crmv {
  font-size: 0.78rem;
  color: #888;
}

/* ---------- FAQ SCHEMA SECTION ---------- */
.faq {
  background: #f7fbfb;
  padding: 80px 0;
}

.faq__header {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover { box-shadow: var(--shadow); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-teal);
  transition: var(--transition);
  gap: 1rem;
}

.faq__question:hover { color: var(--teal); }

.faq__toggle {
  width: 28px; height: 28px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--dark-teal);
  transition: var(--transition);
}

.faq__item.open .faq__toggle {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

.faq__item.open .faq__answer { max-height: 300px; }

/* ---------- MAP / LOCATION ---------- */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

.location__info {
  background: var(--dark-teal);
  color: var(--white);
  padding: 3rem 2.5rem;
}

.location__info h3 { color: var(--white); margin-bottom: 1.5rem; }

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.location__detail-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.location__detail-text strong {
  display: block;
  color: var(--mint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.location__map {
  width: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #050f0f;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p { font-size: 0.875rem; margin-top: 1rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

.footer__logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
}

.footer__logo-sub {
  font-size: 0.65rem;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--mint); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.footer__social-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom a { color: var(--mint); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--black), var(--dark-teal));
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1548767797-d8c844163c4a?w=1400&q=80') center/cover;
  opacity: 0.12;
}

.page-header__content { position: relative; z-index: 1; }

.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  justify-content: center;
}

.breadcrumb a { color: var(--mint); }
.breadcrumb span { opacity: 0.5; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 300px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .features-strip__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hours__grid { grid-template-columns: 1fr; }
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__stats { gap: 1.5rem; }
  .about__image-badge { right: 0; }
  .info-bar__inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .features-strip__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
  min-height: 100vh;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__links a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  color: var(--dark-teal);
  font-weight: 600;
  font-size: 1.1rem;
}

.mobile-nav__close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-teal);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---------- UTILITY ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   [EDITÁVEL] ===== BLOG ===== 
   Estilos da listagem do blog e dos artigos. 
   ============================================================ */

/* ---------- BLOG: LISTAGEM ---------- */
.blog-hero {
  background: linear-gradient(135deg, var(--dark-teal), var(--deep-teal));
  color: var(--white);
  padding: 130px 0 70px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.blog-hero p { color: var(--mint); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

.blog-list { padding: 70px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.post-card__img { width: 100%; height: 200px; object-fit: cover; }

.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.post-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin-bottom: 0.6rem;
}

.post-card__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.post-card__title a:hover { color: var(--teal); }

.post-card__excerpt { color: #555; font-size: 0.95rem; flex: 1; }

.post-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #888;
}
.post-card__link { color: var(--deep-teal); font-weight: 600; }
.post-card__link:hover { color: var(--teal); }

/* Card em destaque (primeiro post) */
.post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.post-card--featured .post-card__img { width: 46%; height: auto; min-height: 320px; }
.post-card--featured .post-card__body { justify-content: center; padding: 2.5rem; }
.post-card--featured .post-card__title { font-size: 2rem; }

@media (max-width: 800px) {
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__img { width: 100%; min-height: 200px; height: 200px; }
}

/* ---------- BLOG: ARTIGO ---------- */
.article-header {
  background: linear-gradient(135deg, var(--dark-teal), var(--deep-teal));
  color: var(--white);
  padding: 130px 0 60px;
}
.article-header__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.article-header__cat {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 1rem;
}
.article-header h1 { color: var(--white); margin-bottom: 1rem; }
.article-header__meta {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  color: var(--mint); font-size: 0.9rem;
}

.article-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 0.9rem 0;
  font-size: 0.85rem;
  color: #888;
}
.article-breadcrumb a { color: var(--deep-teal); }
.article-breadcrumb a:hover { color: var(--teal); }
.article-breadcrumb span { margin: 0 0.4rem; }

.article-body { padding: 60px 0 70px; }
.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
}
.article-content > p:first-of-type {
  font-size: 1.2rem;
  color: #222;
  font-weight: 500;
}
.article-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--deep-teal);
}
.article-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
}
.article-content p { color: #333; margin-bottom: 1.2rem; }
.article-content ul, .article-content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: #333;
}
.article-content ul li { list-style: disc; margin-bottom: 0.5rem; }
.article-content ol li { list-style: decimal; margin-bottom: 0.5rem; }
.article-content img { border-radius: var(--radius); margin: 2rem 0; }
.article-content strong { color: var(--deep-teal); }

.article-content blockquote {
  border-left: 4px solid var(--teal);
  background: #f4faf9;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #444;
}

/* Caixa de destaque/resposta rápida (boa p/ featured snippet) */
.answer-box {
  background: linear-gradient(135deg, #eef7f5, #e0f0ec);
  border: 1px solid var(--mint);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0 2rem;
}
.answer-box strong { color: var(--deep-teal); }

/* CTA dentro do artigo */
.article-cta {
  background: var(--dark-teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-cta h3 { color: var(--white); margin-bottom: 0.8rem; }
.article-cta p { color: var(--mint); margin-bottom: 1.2rem; }

/* FAQ dentro do artigo */
.article-faq { max-width: 760px; margin: 0 auto; padding-top: 1rem; }
.article-faq h2 { font-size: 1.8rem; color: var(--deep-teal); margin-bottom: 1.5rem; }

/* Autor */
.article-author {
  max-width: 760px;
  margin: 2.5rem auto 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #f7faf9;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.article-author__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--mint); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; flex-shrink: 0;
}
.article-author__name { font-weight: 700; color: var(--deep-teal); }
.article-author__role { font-size: 0.88rem; color: #888; }

/* Artigos relacionados */
.related-posts { background: #f7faf9; padding: 60px 0; }
.related-posts h2 { text-align: center; margin-bottom: 2rem; font-size: 1.8rem; }

/* ============================================================
   [EDITÁVEL] ===== ESPECIALIDADES (página equipe) =====
   ============================================================ */
.specialties-section { padding: 70px 0; background: var(--white); }
.specialties-section .specialties-intro {
  max-width: 680px; margin: 0 auto 3rem; text-align: center;
}
.specialties-intro p { color: #555; margin-top: 0.75rem; }

.specialty-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.specialty-group {
  background: #f7faf9;
  border: 1px solid var(--mint);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.specialty-group__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--deep-teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.specialty-group__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.specialty-tag {
  background: var(--white);
  border: 1px solid var(--steel);
  color: var(--dark-teal);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
