/* ===================================================
   MÉTODO CASA SEGURA — Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Playfair+Display:wght@700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --azul-suave:    #6BAED6;
  --azul-forte:    #2171B5;
  --bege:          #FDF6EE;
  --bege-escuro:   #F0E6D3;
  --dourado:       #C9A84C;
  --dourado-claro: #F0D080;
  --rosa:          #F4A7B9;
  --rosa-suave:    #FDE8EF;
  --amarelo:       #F9C932;
  --texto:         #3B3535;
  --texto-leve:    #7A6E6E;
  --branco:        #FFFFFF;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.13);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-body:  'Nunito', sans-serif;
  --font-title: 'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bege);
  color: var(--texto);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bege-escuro); }
::-webkit-scrollbar-thumb { background: var(--azul-suave); border-radius: 4px; }

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,246,238,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 0 clamp(1rem, 5vw, 4rem);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  user-select: none;
}

.logo-metodo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  color: var(--azul-suave);
  text-transform: uppercase;
}

.logo-casa {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rosa) 0%, var(--amarelo) 50%, var(--azul-forte) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-segura {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amarelo) 0%, var(--azul-forte) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -6px;
}

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

.nav-links a {
  font-weight: 700;
  font-size: .92rem;
  color: var(--texto-leve);
  letter-spacing: .04em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--dourado);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--azul-forte); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--azul-forte) !important;
  color: var(--branco) !important;
  padding: .5rem 1.4rem;
  border-radius: var(--radius-xl);
  font-weight: 800 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--azul-suave) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33,113,181,.35) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--azul-forte);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem clamp(1rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content { order: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--rosa-suave);
  border: 1px solid var(--rosa);
  color: #C0527A;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  animation: fadeInDown .6s ease both;
}

.hero-badge-icon { font-size: 1rem; }

.hero-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInUp .7s .1s ease both;
}

.hero-title .word-metodo {
  font-family: var(--font-body);
  font-size: .6em;
  font-weight: 700;
  display: block;
  color: var(--azul-suave);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.hero-title .word-casa {
  color: var(--rosa);
  display: inline-block;
}

.hero-title .word-segura {
  color: var(--amarelo);
  display: inline-block;
  -webkit-text-stroke: 2px var(--azul-forte);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--texto-leve);
  font-weight: 600;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeInUp .7s .2s ease both;
}

.hero-subtitle strong { color: var(--azul-forte); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp .7s .3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--azul-forte), var(--azul-suave));
  color: var(--branco);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(33,113,181,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(33,113,181,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--azul-forte);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--azul-forte);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: var(--azul-forte);
  color: var(--branco);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeInUp .7s .4s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--azul-forte);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--texto-leve);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-image {
  order: 2;
  position: relative;
  animation: fadeIn .8s .2s ease both;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge-float {
  position: absolute;
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: .82rem;
  color: var(--texto);
  animation: float 3s ease-in-out infinite;
}

.hero-badge-float .badge-icon { font-size: 1.4rem; }

.badge-float-1 { top: 10%; right: -5%; }
.badge-float-2 { bottom: 15%; left: -5%; animation-delay: 1.5s; }

/* ===================================================
   DIVIDER ORNAMENT
   =================================================== */
.ornament-divider {
  text-align: center;
  padding: .5rem 0;
  color: var(--dourado);
  font-size: 1.4rem;
  letter-spacing: .6em;
  opacity: .6;
}

/* ===================================================
   SECTION COMMONS
   =================================================== */
.section {
  padding: 5rem clamp(1rem, 5vw, 4rem);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--texto);
  line-height: 1.2;
  margin-bottom: .8rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--texto-leve);
  max-width: 560px;
  margin: 0 auto;
}

/* ===================================================
   BENEFITS STRIP
   =================================================== */
.benefits-strip {
  background: linear-gradient(135deg, var(--azul-forte) 0%, var(--azul-suave) 100%);
  padding: 3rem clamp(1rem, 5vw, 4rem);
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--branco);
  gap: .6rem;
}

.benefit-icon {
  font-size: 2.2rem;
  background: rgba(255,255,255,.15);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .4rem;
}

.benefit-title {
  font-weight: 800;
  font-size: 1rem;
}

.benefit-desc {
  font-size: .85rem;
  opacity: .85;
  line-height: 1.5;
}

/* ===================================================
   VIDEO CARDS GRID
   =================================================== */
.videos-section { background: var(--bege); }

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

.video-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201,168,76,.12);
}

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

.card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bege-escuro);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.card-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33,113,181,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.video-card:hover .card-play-overlay { opacity: 1; }

.play-btn-overlay {
  width: 60px; height: 60px;
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1.4rem;
  transform: scale(.8);
  transition: transform var(--transition);
}

.video-card:hover .play-btn-overlay { transform: scale(1); }

.card-tag {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--rosa);
  color: var(--branco);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .7rem;
  border-radius: var(--radius-xl);
}

.card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.card-category {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dourado);
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--texto);
  line-height: 1.3;
}

.card-desc {
  font-size: .9rem;
  color: var(--texto-leve);
  line-height: 1.6;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-top: 1px solid rgba(0,0,0,.06);
}

.card-duration {
  font-size: .8rem;
  font-weight: 700;
  color: var(--texto-leve);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--azul-forte);
  color: var(--branco);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  padding: .55rem 1.2rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-card:hover {
  background: var(--azul-suave);
  transform: translateX(3px);
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about-section {
  background: linear-gradient(135deg, var(--rosa-suave) 0%, var(--bege) 60%);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge-stamp {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  color: var(--branco);
  font-weight: 800;
  font-size: .7rem;
  line-height: 1.3;
  padding: 1rem;
  animation: float 3s ease-in-out infinite;
}

.about-content h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 1.2rem;
}

.about-content p {
  font-size: 1rem;
  color: var(--texto-leve);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.doctors-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.5rem;
}

.doctor-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--branco);
  padding: .9rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--azul-suave);
}

.doctor-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-suave), var(--azul-forte));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.doctor-info strong {
  display: block;
  font-weight: 800;
  font-size: .95rem;
  color: var(--texto);
}

.doctor-info span {
  font-size: .8rem;
  color: var(--texto-leve);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #1A1A2E;
  color: rgba(255,255,255,.7);
  padding: 3rem clamp(1rem, 5vw, 4rem) 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo-footer-metodo {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--azul-suave);
}

.footer-brand .logo-footer-name {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
  margin-bottom: .8rem;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--azul-suave); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}

.footer-bottom .heart { color: var(--rosa); }

/* ===================================================
   VIDEO PAGE SPECIFICS
   =================================================== */
.page-video-hero {
  background: linear-gradient(180deg, var(--bege-escuro) 0%, var(--bege) 100%);
  padding: 3rem clamp(1rem, 5vw, 4rem) 0;
}

.video-page-inner {
  max-width: 900px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--azul-forte);
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 1.5rem;
  transition: gap var(--transition);
}
.back-link:hover { gap: .8rem; }

.video-page-category {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: .5rem;
}

.video-page-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--texto);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.video-page-subtitle {
  font-size: 1.1rem;
  color: var(--texto-leve);
  margin-bottom: 2rem;
  max-width: 600px;
}

.video-player-wrap {
  background: #0d0d0d;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.video-player-wrap iframe,
.video-player-wrap video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* HTML5 video native controls override */
.video-player-wrap video {
  background: #000;
  outline: none;
}

/* Placeholder when no video is set */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
}

.video-placeholder .ph-icon { font-size: 3.5rem; opacity: .4; }
.video-placeholder p { font-size: .9rem; text-align: center; max-width: 260px; line-height: 1.6; }

.video-content-section {
  padding: 3rem clamp(1rem, 5vw, 4rem) 5rem;
}

.video-content-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.video-description h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--texto);
  margin: 1.5rem 0 .8rem;
}

.video-description h3:first-child { margin-top: 0; }

.video-description p {
  font-size: 1rem;
  color: var(--texto-leve);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.video-description ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.video-description ul li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .97rem;
  color: var(--texto-leve);
  line-height: 1.6;
}

.video-description ul li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--azul-suave), var(--azul-forte));
  color: var(--branco);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.warning-box {
  background: linear-gradient(135deg, #FFF3E0, #FFF8E7);
  border-left: 4px solid var(--amarelo);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .95rem;
  color: #7A5500;
  font-weight: 600;
  line-height: 1.6;
}

.warning-box strong { color: #5A3D00; }

.video-sidebar .sidebar-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,.15);
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--bege-escuro);
}

.related-list { display: flex; flex-direction: column; gap: .7rem; }

.related-item {
  display: flex;
  gap: .8rem;
  align-items: center;
  text-decoration: none;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.related-item:hover { background: var(--bege); }

.related-item img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.related-item-info strong {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--texto);
  line-height: 1.3;
}

.related-item-info span {
  font-size: .76rem;
  color: var(--texto-leve);
}

.emergency-card {
  background: linear-gradient(135deg, var(--azul-forte), var(--azul-suave));
  color: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.emergency-card .icon { font-size: 2.5rem; margin-bottom: .5rem; }
.emergency-card h4 { font-weight: 800; margin-bottom: .4rem; }
.emergency-card p { font-size: .85rem; opacity: .85; margin-bottom: 1rem; }
.emergency-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: .05em;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.5rem;
    text-align: center;
  }
  .hero-content { order: 2; }
  .hero-image  { order: 1; }
  .hero-image img { max-width: 340px; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .badge-float-1, .badge-float-2 { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .video-content-inner { grid-template-columns: 1fr; }
  .video-sidebar { order: -1; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bege);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--bege-escuro);
    gap: 1.2rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

/* ===================================================
   IN-PAGE NAV (VIDEO PAGES)
   =================================================== */
.in-page-nav {
  position: sticky;
  top: 70px; /* same as header height */
  z-index: 90;
  background: var(--branco);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.in-page-nav a {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--texto-leve);
  transition: color var(--transition);
  text-decoration: none;
}

.in-page-nav a:hover,
.in-page-nav a:focus {
  color: var(--azul-forte);
}
