:root{
  --bg:#fff8fb;
  --bg-soft:#fff0f6;
  --card:#ffffff;
  --text:#231625;
  --muted:#7a6b79;
  --line:#efdce6;
  --primary:#c84f88;
  --primary-dark:#a63c6b;
  --secondary:#f4d9e7;
  --accent:#2a182c;
  --accent-soft:#3b2340;
  --success:#25d366;
  --shadow:0 14px 40px rgba(35,22,37,.08);
  --shadow-lg:0 24px 70px rgba(35,22,37,.14);
  --radius:26px;
  --container:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Cairo',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, #ffe8f1 0%, transparent 22%),
    radial-gradient(circle at bottom left, #f9eefe 0%, transparent 20%),
    var(--bg);
  line-height:1.8;
  overflow-x:hidden;
}

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

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

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.section{
  padding:100px 0;
}

.alt-section{
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,240,246,.65));
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 56px;
}

.section-head h2{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.1;
  margin:18px 0 14px;
  font-weight:800;
}

.section-head p{
  color:var(--muted);
  font-size:1rem;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--primary-dark);
  font-size:.9rem;
  font-weight:700;
  box-shadow:var(--shadow);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-weight:700;
  transition:.25s ease;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),#e26ea4);
  color:#fff;
  box-shadow:0 16px 30px rgba(200,79,136,.28);
}

.btn-dark{
  background:var(--accent);
  color:#fff;
}

.btn-secondary{
  background:#fff;
  border:1px solid var(--line);
  color:var(--text);
  box-shadow:var(--shadow);
}

.full-btn{
  width:100%;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(14px);
  background:rgba(255,248,251,.86);
  border-bottom:1px solid rgba(239,220,230,.95);
}

.navbar{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:66px;
  height:66px;
  flex:0 0 66px;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.brand-text strong{
  display:block;
  font-size:1.08rem;
  font-weight:800;
  line-height:1.1;
}

.brand-text span{
  display:block;
  font-size:.8rem;
  color:var(--muted);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  font-weight:700;
  color:#453749;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  right:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.menu-btn{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:1.4rem;
}

.mobile-menu{
  display:none;
  padding-bottom:18px;
}

.mobile-menu.open{
  display:block;
}

.mobile-menu-box{
  display:flex;
  flex-direction:column;
  gap:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:14px;
  box-shadow:var(--shadow);
}

.mobile-menu-box a{
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
}

.mobile-menu-box a:hover{
  background:var(--bg-soft);
}

/* Hero */
.hero{
  padding:72px 0 30px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(120deg, rgba(42,24,44,.82), rgba(86,46,82,.58)),
    url('image/hero-bg.jpg') center/cover no-repeat;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}

.hero-content{
  color:#fff;
}

.hero-content h1{
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:1.04;
  margin:22px 0 18px;
  font-weight:800;
  max-width:700px;
}

.hero-content p{
  max-width:620px;
  color:rgba(255,255,255,.86);
  font-size:1.05rem;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:34px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:640px;
}

.stat-card{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  padding:20px 16px;
  text-align:center;
  backdrop-filter:blur(8px);
}

.stat-card strong{
  display:block;
  font-size:1.4rem;
  color:#fff;
  margin-bottom:5px;
}

.stat-card span{
  color:rgba(255,255,255,.84);
  font-size:.9rem;
}

.hero-image-wrap{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-image-card{
  width:100%;
  max-width:500px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow-lg);
}

.hero-image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Common grids */
.cards-grid{
  display:grid;
  gap:24px;
}

.cards-grid.three{
  grid-template-columns:repeat(3,1fr);
}

/* Services */
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
}

.icon-box{
  width:60px;
  height:60px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#fff1f6;
  color:var(--primary-dark);
  font-size:1.5rem;
  margin-bottom:18px;
}

.info-card h3{
  font-size:1.2rem;
  margin-bottom:10px;
  font-weight:800;
}

.info-card p{
  color:var(--muted);
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:36px;
  align-items:center;
}

.about-image{
  position:relative;
}

.about-image img{
  width:100%;
  min-height:520px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:var(--shadow-lg);
}

.floating-box{
  position:absolute;
  left:18px;
  bottom:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:22px;
  padding:18px 20px;
  max-width:220px;
}

.floating-box strong{
  display:block;
  color:var(--primary-dark);
  font-size:1.2rem;
  margin-bottom:6px;
}

.about-content h2{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.08;
  margin:18px 0 16px;
  font-weight:800;
}

.about-content p{
  color:var(--muted);
  margin-bottom:16px;
}

.check-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.check-list li{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  box-shadow:var(--shadow);
  font-weight:600;
  color:#3c3342;
}

/* Programs */
.program-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.program-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.program-content{
  padding:22px;
}

.program-content h3{
  margin-bottom:10px;
  font-size:1.2rem;
  font-weight:800;
}

.program-content p{
  color:var(--muted);
  margin-bottom:14px;
}

.tag{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#fff1f6;
  color:var(--primary-dark);
  font-size:.82rem;
  font-weight:700;
}

/* Coach */
.coach-box{
  display:grid;
  grid-template-columns:360px 1fr;
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}

.coach-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.coach-info{
  padding:36px;
}

.coach-info h3{
  font-size:2rem;
  margin-bottom:8px;
  font-weight:800;
}

.coach-role{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#fff2f7;
  color:var(--primary-dark);
  font-weight:700;
  margin-bottom:18px;
}

.coach-info p{
  color:var(--muted);
  margin-bottom:14px;
}

.coach-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

.coach-stats div{
  background:var(--bg-soft);
  border-radius:18px;
  padding:18px 14px;
  text-align:center;
}

.coach-stats strong{
  display:block;
  font-size:1.2rem;
  color:var(--primary-dark);
  margin-bottom:4px;
}

/* Pricing */
.pricing-grid{
  align-items:stretch;
}

.price-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px 26px;
  box-shadow:var(--shadow);
  position:relative;
}

.price-card h3{
  font-size:1.3rem;
  margin-bottom:14px;
  font-weight:800;
}

.price{
  font-size:2.4rem;
  font-weight:800;
  color:var(--accent);
  margin-bottom:18px;
}

.price span{
  font-size:1rem;
  color:var(--muted);
}

.price-card ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:24px;
}

.price-card ul li{
  color:var(--muted);
  padding-right:14px;
  position:relative;
}

.price-card ul li::before{
  content:"•";
  color:var(--primary);
  position:absolute;
  right:0;
}

.price-card.featured{
  border:2px solid var(--primary);
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(200,79,136,.16);
}

.top-label{
  position:absolute;
  top:16px;
  left:16px;
  background:var(--primary);
  color:#fff;
  padding:7px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
}

/* Testimonials */
.testimonial-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.testimonial-card p{
  color:var(--muted);
  margin-bottom:14px;
}

.testimonial-card strong{
  font-weight:800;
}

/* CTA */
.cta-box{
  background:linear-gradient(135deg,#2a182c,#4a2d4c);
  color:#fff;
  border-radius:34px;
  padding:52px 28px;
  text-align:center;
  box-shadow:var(--shadow-lg);
}

.cta-box h2{
  font-size:clamp(2rem,4vw,3.3rem);
  margin-bottom:12px;
  font-weight:800;
}

.cta-box p{
  max-width:700px;
  margin:0 auto 24px;
  color:rgba(255,255,255,.82);
}

/* Footer */
.site-footer{
  margin-top:16px;
  background:#140e16;
  color:#fff;
  padding:72px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:28px;
  margin-bottom:28px;
}

.footer-brand{
  margin-bottom:14px;
}

.site-footer .brand-text strong{
  color:#fff;
}

.site-footer .brand-text span,
.footer-col p,
.footer-col a{
  color:rgba(255,255,255,.72);
}

.footer-col h4{
  margin-bottom:14px;
  font-weight:800;
}

.footer-col a{
  display:block;
  margin-bottom:10px;
}

.footer-bottom{
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  color:rgba(255,255,255,.62);
  font-size:.92rem;
}

/* WhatsApp */
.whatsapp-float{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:999;
  min-height:56px;
  padding:0 18px;
  border-radius:999px;
  background:var(--success);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:0 14px 30px rgba(37,211,102,.28);
  font-weight:700;
}

/* Page hero for other pages */
.page-hero{
  background:linear-gradient(135deg,#2a182c,#4a2d4c);
  color:#fff;
  padding:90px 0 70px;
}

.page-hero h1{
  font-size:clamp(2rem,4vw,3.6rem);
  margin-bottom:12px;
}

.page-hero p{
  max-width:760px;
  color:rgba(255,255,255,.82);
}

/* Contact page */
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.contact-card,
.form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:30px;
}

.contact-card h3,
.form-card h3{
  margin-bottom:12px;
  font-size:1.5rem;
  font-weight:800;
}

.contact-card p,
.form-card p{
  color:var(--muted);
  margin-bottom:22px;
}

.contact-list{
  list-style:none;
  display:grid;
  gap:14px;
}

.contact-list li{
  background:#faf6f8;
  border-radius:18px;
  padding:16px;
}

.contact-list strong{
  display:block;
  margin-bottom:4px;
  color:var(--primary-dark);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.input,
.textarea,
.select{
  width:100%;
  border:1px solid var(--line);
  background:#faf6f8;
  border-radius:16px;
  padding:15px 16px;
  color:var(--text);
  outline:none;
}

.input:focus,
.textarea:focus,
.select:focus{
  background:#fff;
  border-color:#d9b8c8;
}

.textarea{
  resize:vertical;
  min-height:150px;
}

/* Responsive */
@media (max-width:1100px){
  .hero-grid,
  .about-grid,
  .coach-box,
  .footer-grid,
  .contact-wrap{
    grid-template-columns:1fr;
  }

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

  .hero-content p{
    margin-inline:auto;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-stats{
    margin-inline:auto;
  }

  .coach-photo img{
    max-height:420px;
  }
}

@media (max-width:900px){
  .cards-grid.three{
    grid-template-columns:repeat(2,1fr);
  }

  .nav-links,
  .desktop-btn{
    display:none;
  }

  .menu-btn{
    display:grid;
    place-items:center;
  }
}

@media (max-width:700px){
  .section{
    padding:78px 0;
  }

  .cards-grid.three,
  .hero-stats,
  .coach-stats,
  .form-grid{
    grid-template-columns:1fr;
  }

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

  .floating-box{
    position:static;
    margin-top:16px;
    max-width:100%;
  }

  .coach-info,
  .contact-card,
  .form-card{
    padding:24px;
  }

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

  .footer-col,
  .footer-col a{
    text-align:center;
  }

  .footer-brand{
    justify-content:center;
  }
}

@media (max-width:480px){
  .container{
    width:min(var(--container), calc(100% - 20px));
  }

  .navbar{
    min-height:74px;
  }

  .brand-logo{
    width:54px;
    height:54px;
    flex-basis:54px;
  }

  .brand-text strong{
    font-size:.96rem;
  }

  .brand-text span{
    font-size:.68rem;
  }

  .hero-content h1{
    font-size:2.3rem;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .whatsapp-float{
    width:56px;
    height:56px;
    padding:0;
    border-radius:50%;
    font-size:0;
  }

  .whatsapp-float span{
    font-size:1.45rem;
  }
}
/* =====================================================
   ABOUT PAGE PROFESSIONAL FIX - Cochecho
   Add this at the END of styles.css
===================================================== */

.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(42, 24, 44, 0.88), rgba(111, 60, 120, 0.72)),
    url("image/about-hero.jpg") center / cover no-repeat;
  color: #fff;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 142, 181, 0.24), transparent 34%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.about-page-hero .container {
  position: relative;
  z-index: 2;
}

.about-page-hero .badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffe1ec;
  font-weight: 900;
}

.about-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -1px;
}

.about-page-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

/* About grid */
.about-grid {
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(42, 24, 44, 0.16);
}

.floating-box {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 300px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(42, 24, 44, 0.16);
  border: 1px solid rgba(42, 24, 44, 0.08);
}

.floating-box strong {
  display: block;
  margin-bottom: 6px;
  color: #2a182c;
  font-size: 18px;
  font-weight: 900;
}

.floating-box span {
  color: #7c687d;
  font-size: 14px;
  line-height: 1.7;
}

.about-content h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
  color: #2a182c;
  margin-bottom: 18px;
}

.about-content p {
  color: #7c687d;
  margin-bottom: 14px;
  font-size: 16.5px;
  line-height: 1.9;
}

.about-content .badge,
.section-head .badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(216, 93, 140, 0.10);
  color: #d85d8c;
  border: 1px solid rgba(216, 93, 140, 0.16);
  font-weight: 900;
}

/* Vision cards */
.info-card {
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(42, 24, 44, 0.08);
  box-shadow: 0 18px 48px rgba(42, 24, 44, 0.08);
  transition: 0.25s ease;
}

.info-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(42, 24, 44, 0.16);
}

.icon-box {
  background: linear-gradient(135deg, rgba(216, 93, 140, 0.16), rgba(111, 60, 120, 0.10));
}

/* Extra values section */
.about-values-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 93, 140, 0.10), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(111, 60, 120, 0.08), transparent 34%),
    #fffaf7;
}

.about-values-section .about-grid {
  direction: ltr;
}

.about-values-section .about-content,
.about-values-section .about-image {
  direction: rtl;
}

/* Buttons */
.about-content .btn {
  margin-top: 8px;
}

/* Mobile fix */
@media (max-width: 980px) {
  .about-page-hero {
    padding: 86px 0 70px;
  }

  .about-image img {
    height: 430px;
  }

  .about-values-section .about-grid {
    direction: rtl;
  }
}

@media (max-width: 680px) {
  .about-page-hero {
    padding: 68px 0 58px;
  }

  .about-page-hero h1 {
    font-size: 34px;
  }

  .about-page-hero p {
    font-size: 15.5px;
  }

  .about-image img {
    height: 310px;
    border-radius: 26px;
  }

  .floating-box {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 30px;
  }
}
/* =====================================================
   BLOG PAGE PROFESSIONAL FIX - Cochecho
   Add this at the END of styles.css
===================================================== */

.blog-page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(42, 24, 44, 0.90), rgba(111, 60, 120, 0.70)),
    url("image/blog-hero.jpg") center / cover no-repeat;
}

.blog-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 142, 181, 0.26), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.12), transparent 34%);
}

.blog-page-hero .container {
  position: relative;
  z-index: 2;
}

.blog-page-hero .badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffe1ec;
  font-weight: 900;
}

.blog-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -1px;
}

.blog-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

/* Blog cards polish */
.program-card img {
  height: 270px;
  object-fit: cover;
}

.program-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(42, 24, 44, 0.08);
  border: 1px solid rgba(42, 24, 44, 0.08);
  transition: 0.25s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(42, 24, 44, 0.16);
}

.program-content h3 {
  line-height: 1.45;
}

.program-content p {
  line-height: 1.8;
}

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

/* Mobile */
@media (max-width: 680px) {
  .blog-page-hero {
    padding: 68px 0 58px;
  }

  .blog-page-hero h1 {
    font-size: 34px;
  }

  .blog-page-hero p {
    font-size: 15.5px;
  }

  .program-card img {
    height: 250px;
  }
}
/* =====================================================
   PROGRAMS PAGE PROFESSIONAL FIX - Cochecho
   Add this at the END of styles.css
===================================================== */

.programs-page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(42, 24, 44, 0.90), rgba(111, 60, 120, 0.70)),
    url("image/programs-hero.jpg") center / cover no-repeat;
}

.programs-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 142, 181, 0.26), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.12), transparent 34%);
}

.programs-page-hero .container {
  position: relative;
  z-index: 2;
}

.programs-page-hero .badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffe1ec;
  font-weight: 900;
}

.programs-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -1px;
}

.programs-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

/* Program cards */
.program-card {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(42, 24, 44, 0.08);
  box-shadow: 0 18px 48px rgba(42, 24, 44, 0.08);
  transition: 0.25s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(42, 24, 44, 0.16);
}

.program-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.program-content {
  padding: 24px;
}

.program-content h3 {
  font-size: 23px;
  color: #2a182c;
  margin-bottom: 10px;
  line-height: 1.35;
}

.program-content p {
  color: #7c687d;
  line-height: 1.85;
  margin-bottom: 16px;
}

.program-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
}

.program-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e4b60;
  font-size: 14.5px;
  font-weight: 700;
}

.program-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(216, 93, 140, 0.12);
  color: #d85d8c;
  font-weight: 900;
}

.program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.program-footer .tag {
  margin: 0;
}

.program-footer a {
  padding: 8px 14px;
  border-radius: 999px;
  background: #2a182c;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.program-footer a:hover {
  background: #d85d8c;
  transform: translateY(-2px);
}

.programs-cta-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 93, 140, 0.10), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(111, 60, 120, 0.08), transparent 34%),
    #fffaf7;
}

/* Mobile */
@media (max-width: 680px) {
  .programs-page-hero {
    padding: 68px 0 58px;
  }

  .programs-page-hero h1 {
    font-size: 34px;
  }

  .programs-page-hero p {
    font-size: 15.5px;
  }

  .program-card img {
    height: 250px;
  }

  .program-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .program-footer a,
  .program-footer .tag {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}