﻿/* ==========================================================================
   Velho Sarado - Master Stylesheet
   Consolidated & Modernized
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary: #0f766e;
  /* Teal 700 */
  --color-primary-light: #14b8a6;
  /* Teal 500 */
  --color-primary-dark: #0d5e56;

  --color-secondary: #f97316;
  /* Orange 500 */
  --color-secondary-light: #fb923c;

  /* Neutral Colors */
  --color-dark: #1e293b;
  /* Slate 800 */
  --color-text: #334155;
  /* Slate 700 */
  --color-muted: #64748b;
  /* Slate 500 */
  --color-light: #f8fafc;
  /* Slate 50 */
  --color-white: #ffffff;

  /* Borders & Surfaces */
  --color-border: rgba(15, 118, 110, 0.15);
  --color-surface: #ffffff;
  --color-surface-translucent: rgba(255, 255, 255, 0.85);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-card: var(--shadow-md);
  --shadow-soft: 0 20px 40px -10px rgba(15, 118, 110, 0.15);
  --shadow-hover: 0 25px 50px -12px rgba(15, 118, 110, 0.25);

  /* Typography */
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;

  /* Layout */
  --max-width: 1360px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Spacing */
  --page-gutter: clamp(1rem, 5vw, 2.5rem);

  /* Animation */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--color-secondary);
}

ul,
ol {
  padding-left: 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding: 5rem 0;
  position: relative;
}

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

/* --------------------------------------------------------------------------
   4. Components: Header & Navigation
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   4. Components: Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: 80px;
  /* Altura fixa */
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  transition: all 0.3s ease;
}

.site-header .container {
  padding-inline: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.brand {
  display: flex;
  flex-direction: row;
  /* Horizontal */
  align-items: center;
  text-align: left;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
  height: 100%;
}

.brand img {
  height: 48px;
  /* Tamanho reduzido */
  width: auto;
  transition: height 0.3s ease;
}

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

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-links a {
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4rem 0.25rem;
  position: relative;
  white-space: nowrap;
}

.nav-links__cta {
  display: none;
}

@media (max-width: 1350px) {
  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.4rem 0.25rem;
  }

  .brand {
    font-size: 0.85rem;
  }

  .brand img {
    height: 70px;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 880px) {
  .brand img {
    height: 40px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  color: white;
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 6px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px -5px rgba(15, 118, 110, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

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

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  margin: 5px 0;
  transition: 0.3s;
}

/* --------------------------------------------------------------------------
   5. Sections: Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 6rem 0 8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%), url('../img/hero-bg.png');
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.hero-text {
  max-width: 800px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.hero-quotes figure {
  margin: 0;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  text-align: left;
}

.hero-quotes blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
}

.hero-quotes figcaption {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   6. Sections: Values (Cards)
   -------------------------------------------------------------------------- */
.values-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--color-primary);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

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

.value-card:hover::before {
  opacity: 1;
}

.value-card__number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.1;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  font-family: var(--font-serif);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--color-primary-dark);
  position: relative;
  z-index: 1;
}

.value-card p {
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   7. Sections: Health Highlights & Projects
   -------------------------------------------------------------------------- */
.health-highlights,
.projects-grid,
.courses-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-card,
.project-card,
.info-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
  /* For images */
}

.highlight-card img,
.project-card img,
.info-card img {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.5s ease;
}

.highlight-card:hover img,
.project-card:hover img,
.info-card:hover img {
  transform: scale(1.05);
}

.highlight-card:hover,
.project-card:hover,
.info-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.highlight-card,
.project-card,
.info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-card p,
.project-card p,
.info-card p {
  flex-grow: 1;
}

.highlight-link,
.project-card .btn,
.info-card .btn {
  margin-top: auto;
}

.highlight-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.highlight-link:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. Specific Section Tweaks
   -------------------------------------------------------------------------- */
.mission {
  background: var(--color-white);
}

.mission-text p {
  font-size: 1.1rem;
}

/* Helper Classes */
.rounded-shadow {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  display: block;
}

.rounded-shadow:hover {
  transform: scale(1.02);
}

/* Premium Accordion */
.premium-accordion {
  width: 100%;
}

.premium-accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.premium-accordion summary::-webkit-details-marker {
  display: none;
}

.premium-accordion summary h3 {
  margin: 0;
  color: var(--color-primary);
}

.premium-accordion .acc-icon {
  width: 32px;
  height: 32px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.premium-accordion .acc-icon::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.premium-accordion[open] .acc-icon {
  background: var(--color-primary);
  transform: rotate(180deg);
}

.premium-accordion[open] .acc-icon::after {
  content: '−';
  /* Minus sign */
  color: white;
}

.premium-accordion[open] summary {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.premium-accordion .acc-content {
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vision-card h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.vision-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.vision-card h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.vision-points {
  list-style: none;
  padding: 0;
}

.vision-points li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.vision-points li::before {
  content: '•';
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.mantenedor {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Background Pattern Overlay (Optional) */
.mantenedor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.mantenedor h2,
.mantenedor p {
  color: white;
}

.mantenedor .btn-primary {
  background: white;
  color: var(--color-primary);
  border: none;
  box-shadow: var(--shadow-lg);
}

.mantenedor .btn-primary:hover {
  background: var(--color-light);
  transform: translateY(-3px);
}

.cta-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 1px solid var(--color-border);
}

.cta-card ul {
  text-align: left;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.brand-footer {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.site-footer h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  width: 100%;
  clear: both;
}

/* --------------------------------------------------------------------------
   10. Generic Extras & Guide Nav
   -------------------------------------------------------------------------- */
.guide-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.guide-nav__list a {
  background: rgba(15, 118, 110, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--color-primary);
  transition: all 0.2s;
}

.guide-nav__list a:hover {
  background: var(--color-primary);
  color: white;
}

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

.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  background: var(--color-primary);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  opacity: 0.8;
  z-index: 900;
}

.back-to-top:hover {
  opacity: 1;
  background: var(--color-secondary);
  color: white;
}

/* --------------------------------------------------------------------------
   11. Responsiveness (Mobile Fixes)
   -------------------------------------------------------------------------- */
@media (max-width: 880px) {

  .nav-actions,
  .nav-cta {
    display: none !important;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

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

  .nav-links li {
    width: 100%;
  }

  /* Nav Links in mobile menu */
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links__cta {
    display: block !important;
    margin-top: 1.5rem;
    width: 100%;
  }

  .nav-links__cta .btn {
    width: 100%;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   12. Footer Extended Styles
   -------------------------------------------------------------------------- */
.footer-brand-col,
.footer-links-col,
.footer-social-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-col .brand {
  margin-bottom: 1rem;
}

.footer-brand-col .brand img {
  height: 48px;
  width: auto;
  margin-right: 0.75rem;
}

.contact-info {
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--color-secondary-light);
}

.contact-info a:hover {
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--color-primary);
  color: white;
}

.footer-links-inline {
  display: flex;
  gap: 1.5rem;
}

.footer-links-inline a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links-inline a:hover {
  color: var(--color-secondary);
}

/* --------------------------------------------------------------------------
   13. Contact Form Styles
   -------------------------------------------------------------------------- */
.contact-form-wrapper {
  margin-top: 1rem;
}

.contact-form {
  width: 100%;
}

.input-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.input-group input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.95rem;
  transition: var(--transition);
}

.input-group input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-group input[type="email"]:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.15);
}

.contact-form-footer .input-group .btn {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. Check List & Learn List Styles
   -------------------------------------------------------------------------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.learn-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.learn-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.learn-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   15. Sub-Hero & Health Guide Styles (saude-integral.html)
   -------------------------------------------------------------------------- */
.sub-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(248, 250, 252, 0) 100%);
  text-align: center;
}

.sub-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.sub-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.health-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header--stack {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-header--stack h2 {
  margin-bottom: 1rem;
}

.section-header--stack p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Info Table & Callout Styles
   -------------------------------------------------------------------------- */
/* Premium Table Styles */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  font-size: 0.95rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.info-table thead {
  background: var(--color-primary);
  color: white;
}

.info-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-light);
  color: var(--color-text);
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table tbody tr:hover {
  background: rgba(15, 118, 110, 0.03);
}

/* Sticky Guide Navigation */
.guide-nav {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  z-index: 90;
  margin: 0 auto 3rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  max-width: 900px;
}

.guide-nav__list {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.guide-nav__list li {
  margin: 0;
}

.guide-nav__list a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}

.guide-nav__list a:hover {
  background: var(--color-primary-light);
  color: white;
}

@media (max-width: 768px) {
  .guide-nav {
    border-radius: var(--radius-md);
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
  }

  .guide-nav__list {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.callout {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
  border-left: 4px solid var(--color-secondary);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 500;
  color: var(--color-dark);
}

/* --------------------------------------------------------------------------
   17. Wellbeing Grid & Projects Benefits
   -------------------------------------------------------------------------- */
.wellbeing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.wellbeing-grid .info-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wellbeing-grid .info-card p {
  margin-bottom: 1.5rem;
}

.projects-benefits {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border: 1px solid var(--color-border);
}

.projects-benefits h3,
.projects-benefits h4 {
  color: var(--color-primary-dark) !important;
  margin-bottom: 1rem;
}

.projects-benefits ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.projects-benefits li {
  background: rgba(15, 118, 110, 0.05);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  font-weight: 500;
  color: #1f2937 !important;
  /* Force dark gray */
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .projects-benefits ul {
    columns: 1;
  }

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

  .footer-links-inline {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   18. Accessibility & Polish
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   19. Support CTA (New)
   -------------------------------------------------------------------------- */
.support-cta {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 5rem 1rem;
  text-align: center;
  color: white;
  margin-top: 4rem;
}

.support-cta .container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.support-cta h2 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.support-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
}

.support-cta .btn {
  background: white;
  color: var(--color-primary-dark);
  border: none;
  font-size: 1.1rem;
  padding: 1rem 3rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.support-cta .btn:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   20. Fixes & Refinements
   -------------------------------------------------------------------------- */
.cta-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
  /* Force dark text */
  height: fit-content;
}

.cta-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.cta-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.cta-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.cta-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   21. Split Layout (Saúde Integral)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split--reverse .split__content {
  grid-column: 2;
  grid-row: 1;
}

.split--reverse .split__image {
  grid-column: 1;
  grid-row: 1;
}

.split__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.split:hover .split__image img {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    /* Better for mobile */
  }

  .split--reverse .split__content,
  .split--reverse .split__image {
    grid-column: auto;
    grid-row: auto;
  }

  /* Reset order for mobile if needed, but grid-column: auto usually stacks 1 then 2 based on DOM order */
  /* If DOM order is content then image, it will stack content then image. */
  /* If we want image first on mobile for reverse, we need order. But stacking content first is usually better for reading. */
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.values-grid .value-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.values-grid .value-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary-light);
}

.values-grid .value-card h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.values-grid .value-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}