
:root {
  --primary: #005187;
  --secondary: #4d82bc;
  --accent: #84b6f4;
  --soft: #c4dafa;
  --white: #fcffff;
  --text: #10304b;
  --muted: #53748f;
  --border: rgba(0, 81, 135, 0.12);
  --shadow: 0 18px 50px rgba(0, 81, 135, 0.12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, rgba(196,218,250,0.25) 0%, var(--white) 18%, var(--white) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.page-shell {
  position: fixed; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(132,182,244,0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(196,218,250,0.2), transparent 25%);
  z-index: -1;
}
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(252,255,255,0.12);
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header.scrolled {
  background: rgba(252,255,255,0.92);
  border-bottom: 1px solid rgba(0,81,135,0.08);
  box-shadow: 0 10px 26px rgba(16,48,75,0.06);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 8px 0;
  min-height: 72px;
  transition: min-height .28s ease, padding .28s ease;
}
.site-header.scrolled .nav-wrap { min-height: 64px; padding: 6px 0; }
.brand img { width: 150px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { font-weight: 600; color: var(--muted); font-size: .98rem; }
.site-nav a:hover { color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-nav {
  background: var(--primary); color: white; box-shadow: 0 12px 24px rgba(0,81,135,0.18);
}
.btn-secondary {
  background: rgba(0,81,135,0.06); color: var(--primary); border: 1px solid rgba(0,81,135,0.08);
}
.btn-white { background: white; color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; padding: 4px 2px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--primary); margin: 4px 0; border-radius: 10px; }
.hero { padding: 46px 0 70px; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 32px; align-items: center;
}
.hero-copy h1 {
  margin: 8px 0 12px; font-size: clamp(2.9rem, 5vw, 5.4rem); line-height: .95; letter-spacing: -0.05em;
  color: var(--primary);
}
.eyebrow, .section-tag {
  display: inline-flex; padding: 10px 16px; border-radius: 999px;
  background: rgba(132,182,244,0.2); color: var(--primary); font-size: .92rem; font-weight: 700;
}
.section-tag.inverse { background: rgba(255,255,255,0.18); color: white; }
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; margin: 0 0 14px;
}
.hero-text, .section-head p, .about-copy p, .cta-box p, .footer-grid p, .footer-grid a {
  color: var(--muted); line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 26px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tags span {
  padding: 10px 14px; border-radius: 999px; background: white; border: 1px solid var(--border); font-weight: 600;
}
.hero-card {
  position: relative; background: linear-gradient(135deg, rgba(0,81,135,0.98), rgba(77,130,188,0.88));
  padding: 18px; border-radius: 32px; box-shadow: var(--shadow); overflow: hidden;
}
.hero-card::after {
  content: ''; position: absolute; inset: auto -40px -40px auto; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 68%);
}
.hero-card img { border-radius: 22px; min-height: 100%; object-fit: cover; }
.stats-section { padding-bottom: 10px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.stat-card {
  background: white; border: 1px solid var(--border); border-radius: 24px; padding: 28px;
  box-shadow: 0 12px 32px rgba(16,48,75,0.06);
}
.stat-card strong { display: block; font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); }
.stat-card span { color: var(--muted); font-weight: 600; }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start;
}
.about-copy h2, .section-head h2, .cta-box h2 {
  font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.08; margin: 16px 0 16px;
  letter-spacing: -0.04em;
}
.about-highlights {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px;
}
.about-highlights div, .info-card {
  background: white; border: 1px solid var(--border); border-radius: 24px; padding: 24px; box-shadow: 0 12px 32px rgba(16,48,75,0.05);
}
.about-highlights h3, .info-card h3 { margin: 0 0 10px; color: var(--primary); }
.about-highlights p, .info-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.about-panel { display: grid; gap: 18px; }
.info-card.main {
  background: linear-gradient(180deg, rgba(0,81,135,1), rgba(77,130,188,1)); color: white;
}
.info-card.main span, .info-card.main h3, .info-card.main p { color: white; }
.info-card.soft { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 32px; }
.courses-marquee {
  overflow: hidden; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; width: max-content; gap: 22px; animation: marquee 42s linear infinite;
  will-change: transform;
}
.courses-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.course-card {
  width: 340px; flex: 0 0 auto; background: white; border: 1px solid var(--border);
  border-radius: 28px; overflow: hidden; box-shadow: 0 18px 35px rgba(16,48,75,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.course-card:hover { transform: translateY(-8px); box-shadow: 0 24px 40px rgba(0,81,135,0.14); }
.course-card img { width: 100%; height: 240px; object-fit: cover; }
.course-body { padding: 22px; }
.course-area {
  display: inline-flex; margin-bottom: 12px; font-size: .84rem; font-weight: 700; color: var(--primary);
  background: rgba(132,182,244,.18); padding: 8px 12px; border-radius: 999px;
}
.course-body h3 { margin: 0 0 12px; font-size: 1.2rem; }
.course-body p { margin: 0; line-height: 1.7; color: var(--muted); }
.gallery-section { background: linear-gradient(180deg, rgba(196,218,250,0.28), rgba(252,255,255,0)); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 24px; cursor: pointer; min-height: 220px;
  box-shadow: 0 18px 36px rgba(16,48,75,0.08);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { display: none; }
.testimonials-slider {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
}
.testimonials-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 320px); gap: 18px; overflow: auto;
  scrollbar-width: none; scroll-snap-type: x mandatory; padding: 8px 2px 18px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: white; border: 1px solid var(--border); border-radius: 26px; padding: 12px;
  box-shadow: 0 14px 36px rgba(16,48,75,0.08); scroll-snap-align: start;
}
.testimonial-card img { width: 100%; height: auto; border-radius: 18px; aspect-ratio: auto; object-fit: contain; }
.slider-btn {
  width: 52px; height: 52px; border-radius: 50%; border: none; background: white; color: var(--primary);
  font-size: 2rem; box-shadow: 0 12px 28px rgba(16,48,75,0.12); cursor: pointer;
}
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white;
  border-radius: 32px; padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 26px;
  box-shadow: var(--shadow);
}
.cta-box p { color: rgba(255,255,255,.85); }
.site-footer {
  padding: 30px 0 54px; background: #032f4e; color: white;
}
.footer-grid {
  display: grid; grid-template-columns: 1.1fr 1fr .8fr; gap: 28px; align-items: start;
}
.footer-logo { width: 190px; border-radius: 16px; background: white; padding: 8px; display: none; }
.footer-grid h3 { margin-top: 0; }
.footer-grid a, .footer-grid p { display: block; color: rgba(255,255,255,.78); margin: 10px 0 0; }
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem; background: var(--primary); color: white;
  box-shadow: 0 18px 38px rgba(0,81,135,.26); z-index: 30;
}
.lightbox {
  position: fixed; inset: 0; background: rgba(3, 25, 42, 0.85); display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: .25s ease; z-index: 40; padding: 20px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 22px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; border: none;
  font-size: 2rem; cursor: pointer; background: white; color: var(--primary);
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid, .about-grid, .footer-grid, .cta-box { grid-template-columns: 1fr; }
  .stats-grid, .about-highlights { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .cta-box { align-items: flex-start; }
}
@media (max-width: 820px) {
  .nav-wrap { min-height: 60px; padding: 6px 0; }
  .site-header.scrolled .nav-wrap { min-height: 56px; }
  .brand img { width: 118px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); background: rgba(252,255,255,0.98);
    border: 1px solid var(--border); border-radius: 20px; padding: 14px; flex-direction: column; align-items: flex-start;
    box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .24s ease;
  }
  .site-nav a { font-size: .98rem; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero { padding-top: 18px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-slider { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
  .cta-box {
    padding: 26px 24px;
    gap: 18px;
    text-align: left;
    align-items: flex-start;
  }
  .cta-box h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .cta-box .btn-white {
    align-self: stretch;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .brand img { width: 148px; }
  .hero-copy h1 { font-size: 2.75rem; }
  .stats-grid, .about-highlights, .gallery-grid { grid-template-columns: 1fr; }
  .stat-card, .about-highlights div, .info-card, .cta-box { padding: 22px; }
  .course-card { width: 286px; }
  .course-card img { height: 210px; }
  .hero-card { padding: 12px; border-radius: 24px; }
  .cta-box { border-radius: 26px; }
}


.quick-grid,.preview-grid,.catalog-grid,.contact-grid,.testimonials-grid,.related-grid{
  display:grid; gap:22px;
}
.quick-grid,.preview-grid{grid-template-columns:repeat(3,1fr);}
.preview-card,.quick-card,.catalog-card,.contact-card,.detail-card,.related-item{
  background:#fff; border:1px solid var(--border); border-radius:28px; box-shadow:0 18px 35px rgba(16,48,75,.08);
}
.quick-card,.preview-card,.contact-card,.detail-card{padding:28px;}
.preview-card h3,.quick-card h3,.contact-card h3,.detail-card h2,.detail-card h3{margin-top:0;}
.preview-section{background:linear-gradient(180deg, rgba(196,218,250,.18), rgba(252,255,255,0));}
.text-link{display:inline-flex; align-items:center; gap:8px; color:var(--primary); font-weight:700;}
.narrow{max-width:860px;}
.compact-hero{padding-top:150px; padding-bottom:70px; background:linear-gradient(180deg, rgba(0,81,135,.08), rgba(77,130,188,.04));}
.catalog-grid{grid-template-columns:repeat(3,1fr);}
.catalog-card img{width:100%; height:240px; object-fit:cover; border-radius:28px 28px 0 0;}
.catalog-body{padding:24px;}
.catalog-body .btn{margin-top:10px;}
.contact-grid{grid-template-columns:repeat(3,1fr);}
.testimonials-grid{grid-template-columns:repeat(4,1fr);}
.course-detail-grid,.detail-layout{display:grid; grid-template-columns:1.1fr .9fr; gap:30px; align-items:start;}
.course-hero .detail-image img{width:100%; border-radius:28px; box-shadow:var(--shadow);}
.detail-list{padding-left:18px; color:var(--muted); line-height:1.8;}
.related-grid{grid-template-columns:repeat(3,1fr);}
.related-item{display:flex; gap:14px; padding:12px; color:var(--text); align-items:center;}
.related-item img{width:110px; height:92px; object-fit:cover; border-radius:18px;}
.related-item span{display:block; color:var(--primary); font-size:.85rem; font-weight:700; margin-bottom:6px;}
@media (max-width:1080px){
  .quick-grid,.preview-grid,.catalog-grid,.contact-grid,.testimonials-grid,.related-grid,.course-detail-grid,.detail-layout{grid-template-columns:repeat(2,1fr);} 
}
@media (max-width:820px){
  .quick-grid,.preview-grid,.catalog-grid,.contact-grid,.testimonials-grid,.related-grid,.course-detail-grid,.detail-layout{grid-template-columns:1fr;} 
  .compact-hero{padding-top:130px;} 
}


.compact-hero { padding: 58px 0 34px; }
.subhero h1 { margin: 14px 0 10px; font-size: clamp(2.25rem, 4vw, 4.25rem); line-height: 1.05; letter-spacing: -0.04em; }
.course-detail-grid, .detail-layout { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 34px; align-items: start; }
.detail-image img { width: 100%; border-radius: 30px; box-shadow: var(--shadow); }
.detail-card { height: 100%; }
.detail-list, .feature-points { margin: 0; padding-left: 1.2rem; color: var(--muted); line-height: 1.75; }
.detail-list li, .feature-points li { margin-bottom: 12px; }
.catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalog-card { overflow: hidden; display: flex; flex-direction: column; }
.catalog-card img { width: 100%; height: 260px; object-fit: cover; }
.catalog-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.catalog-body h3 { margin: 0; font-size: 1.22rem; }
.catalog-body p { margin: 0; color: var(--muted); line-height: 1.75; flex: 1; }
.contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-card { display: flex; flex-direction: column; gap: 14px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.contact-card .text-link { padding: 14px 22px; border-radius: 999px; background: rgba(0,81,135,0.06); border: 1px solid rgba(0,81,135,0.08); }
.testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.testimonial-card { padding: 14px; }
.preview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.detail-note { margin-top: 18px; padding: 16px 18px; border-radius: 20px; background: rgba(132,182,244,.16); border: 1px solid var(--border); color: var(--primary); font-weight: 600; }
.bullet-points { display: grid; gap: 18px; margin-top: 28px; }
.bullet-point { display: flex; gap: 14px; align-items: flex-start; background: white; border: 1px solid var(--border); border-radius: 22px; padding: 20px 22px; box-shadow: 0 12px 30px rgba(16,48,75,.05); }
.bullet-point .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--primary); margin-top: 10px; flex: 0 0 12px; }
.bullet-point h3 { margin: 0 0 6px; color: var(--primary); }
.bullet-point p { margin: 0; color: var(--muted); line-height: 1.7; }

@media (max-width: 1080px) {
  .catalog-grid, .contact-grid, .testimonials-grid, .preview-grid, .quick-grid, .course-detail-grid, .detail-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-detail-grid, .detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .catalog-grid, .contact-grid, .testimonials-grid, .preview-grid, .quick-grid { grid-template-columns: 1fr; }
  .catalog-card img { height: 220px; }
  .subhero h1 { font-size: 2.3rem; }
}



.hero-home {
  position: relative;
  padding: 86px 0 94px;
  background:
    linear-gradient(90deg, rgba(252,255,255,.96) 0%, rgba(252,255,255,.88) 36%, rgba(252,255,255,.52) 70%, rgba(252,255,255,.34) 100%),
    url('../images/brand/banner.jpg') center/cover no-repeat;
}
.hero-home .hero-grid { grid-template-columns: 1fr; min-height: 540px; align-items: center; }
.hero-home .hero-copy { max-width: 720px; }
.hero-home .hero-copy h1 { color: var(--primary); }
.hero-home .hero-text { max-width: 620px; }
.hero-home .hero-visual { display: none; }
.centered-intro { text-align: center; max-width: 900px; }
.centered-intro p { max-width: 760px; margin: 0 auto; }
.visitor-points {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; gap: 18px;
}
.visitor-points li {
  position: relative; padding-left: 24px; color: var(--muted); line-height: 1.8;
}
.visitor-points li::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); position: absolute; left: 0; top: .7em;
}
.about-centered { max-width: 980px; text-align: center; }
.about-centered p { max-width: 860px; margin-left: auto; margin-right: auto; }
.about-centered .bullet-points { margin-top: 34px; }
.about-centered .bullet-point {
  background: transparent; box-shadow: none; border: none; border-radius: 0;
  padding: 0; text-align: left;
}
.about-centered .bullet-point h3 { margin-bottom: 4px; }
.text-points-block { max-width: 980px; }
.text-points-block h2 { text-align: center; margin-bottom: 16px; }
.text-points-block p.lead { text-align: center; max-width: 820px; margin: 0 auto 24px; }
.contact-card.contact-accent {
  background: linear-gradient(135deg, rgba(0,81,135,.96), rgba(77,130,188,.9)); color: white;
}
.contact-card.contact-accent h3, .contact-card.contact-accent p { color: white; }
.contact-card.contact-accent .btn-primary,
.contact-card.contact-accent .btn-secondary {
  background: white; color: var(--primary); border: 1px solid rgba(255,255,255,.3);
}
.contact-card .btn-secondary.color {
  background: rgba(0,81,135,.9); color: white; border: none; box-shadow: 0 12px 24px rgba(0,81,135,0.18);
}
@media (max-width: 820px) {
  .hero-home { padding: 62px 0 70px; background-position: center right; }
  .hero-home .hero-grid { min-height: 460px; }
}


/* Final visual refinements */
.hero-home {
  position: relative;
  overflow: hidden;
  background: none;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/brand/banner.jpg') center/cover no-repeat;
  filter: blur(7px) saturate(.88) brightness(.9);
  transform: scale(1.06);
}
.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(252,255,255,.96) 0%, rgba(252,255,255,.93) 32%, rgba(252,255,255,.82) 58%, rgba(252,255,255,.70) 100%),
    linear-gradient(180deg, rgba(252,255,255,.08) 0%, rgba(252,255,255,.18) 100%);
}
.hero-home > .container {
  position: relative;
  z-index: 1;
}
.hero-home .hero-copy {
  max-width: 760px;
}
.hero-home .hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
}
.hero-home .hero-lead {
  max-width: 720px;
  line-height: 1.24;
}
.hero-home .hero-text {
  max-width: 660px;
  line-height: 1.95;
}
.centered-intro h2,
.about-centered h2,
.text-points-block h2 {
  text-wrap: balance;
}
.centered-intro p,
.about-centered p,
.text-points-block p.lead {
  line-height: 2;
}
.visitor-points {
  gap: 24px;
  max-width: 940px;
  margin: 32px auto 0;
}
.visitor-points li {
  line-height: 2;
  padding-left: 30px;
}
.about-centered .bullet-points,
.text-points-block .visitor-points {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.about-centered .bullet-point {
  margin-bottom: 12px;
}
.about-centered .bullet-point p,
.text-points-block .visitor-points li {
  font-size: 1.08rem;
}

.opinions-carousel {
  overflow: hidden;
  padding: 8px 0 8px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.opinions-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: opinionsMarquee 42s linear infinite;
  will-change: transform;
}
.opinions-carousel:hover .opinions-track {
  animation-play-state: paused;
}
.opinion-slide {
  width: 360px;
  flex: 0 0 auto;
}
.opinion-slide .testimonial-card {
  padding: 10px;
}
.opinion-slide img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}
@keyframes opinionsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.contact-card,
.contact-card.contact-accent {
  background: #fff;
  color: var(--text);
}
.contact-card.contact-accent h3,
.contact-card.contact-accent p {
  color: var(--text);
}
.contact-card .btn,
.contact-card.contact-accent .btn,
.contact-card .btn-secondary.color,
.contact-card.contact-accent .btn-primary,
.contact-card.contact-accent .btn-secondary {
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 12px 24px rgba(0,81,135,0.18);
}
.contact-card .btn:hover,
.contact-card.contact-accent .btn:hover {
  box-shadow: 0 0 0 2px rgba(0,81,135,0.18), 0 0 14px rgba(0,81,135,0.26), 0 16px 28px rgba(0,81,135,0.18);
}

@media (max-width: 820px) {
  .hero-home::before {
    background-position: 68% center;
    filter: blur(8px) saturate(.82) brightness(.88);
  }
  .hero-home::after {
    background: linear-gradient(180deg, rgba(252,255,255,.94) 0%, rgba(252,255,255,.90) 28%, rgba(252,255,255,.86) 100%);
  }
  .hero-home .hero-copy h1 {
    font-size: 2.95rem;
  }
  .hero-home .hero-lead,
  .hero-home .hero-text,
  .centered-intro p,
  .about-centered p,
  .visitor-points li {
    line-height: 1.88;
  }
  .visitor-points {
    gap: 20px;
  }
  .opinion-slide {
    width: 300px;
  }
}

@media (max-width: 560px) {
  .hero-home .hero-copy h1 {
    font-size: 2.6rem;
  }
  .hero-home .hero-text,
  .centered-intro p,
  .about-centered p,
  .text-points-block p.lead,
  .visitor-points li {
    font-size: 1.02rem;
  }
  .visitor-points {
    gap: 18px;
  }
  .opinion-slide {
    width: 268px;
  }
}


/* Minimal final refinements */
.hero-home {
  background: transparent !important;
  padding: 104px 0 82px;
}
.hero-home::before,
.hero-home::after {
  display: none !important;
}
.hero-home .hero-grid {
  grid-template-columns: 1fr;
  min-height: auto;
}
.hero-copy-minimal {
  max-width: 980px !important;
  margin: 0 auto;
  text-align: center;
}
.hero-copy-minimal h1 {
  font-size: clamp(3.7rem, 7vw, 6.3rem);
  line-height: .95;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero-copy-minimal .hero-lead {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.4;
}
.hero-actions-centered {
  justify-content: center;
  margin-top: 32px;
}
.section-minimal-message {
  padding-top: 52px;
}
.section-minimal-message .centered-intro {
  max-width: 980px;
}
.section-minimal-message .centered-intro h2 {
  max-width: 860px;
  margin: 18px auto 0;
  text-wrap: balance;
}
.centered-intro p {
  margin-top: 26px;
  margin-bottom: 0;
}
.visitor-points {
  gap: 30px;
  margin-top: 40px;
}
.visitor-points li {
  padding-left: 34px;
  line-height: 2.1;
}
.text-points-block .visitor-points li,
.about-centered .bullet-point p {
  line-height: 2;
}
@media (max-width: 820px) {
  .hero-home { padding: 72px 0 60px; }
  .hero-copy-minimal h1 { font-size: 3.2rem; }
  .hero-copy-minimal .hero-lead { font-size: 1.2rem; }
  .visitor-points { gap: 24px; margin-top: 34px; }
}
@media (max-width: 560px) {
  .hero-copy-minimal h1 { font-size: 2.7rem; }
  .hero-copy-minimal .hero-lead { font-size: 1.08rem; }
  .section-minimal-message { padding-top: 34px; }
  .visitor-points { gap: 20px; }
  .visitor-points li { padding-left: 28px; line-height: 1.95; }
}


/* Final mobile and layout fixes */
.section-minimal-message {
  padding-top: 18px;
  padding-bottom: 10px;
}
.section-minimal-message .centered-intro h2 {
  max-width: 760px;
  margin: 0 auto;
}

.about-centered .bullet-points {
  display: grid;
  gap: 28px;
  max-width: 940px;
  margin: 34px auto 0;
}
.about-centered .bullet-point {
  display: block;
  text-align: center;
}
.about-centered .bullet-point .dot,
.visitor-points li::before {
  display: none;
}
.about-centered .bullet-point h3 {
  margin-bottom: 10px;
}
.about-centered .bullet-point p,
.text-points-block .visitor-points li {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.visitor-points {
  gap: 26px;
  max-width: 960px;
}
.visitor-points li {
  padding-left: 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

@media (max-width: 820px) {
  .nav-wrap {
    padding: 10px 0;
    min-height: 76px;
  }
  .brand img {
    width: 130px;
  }
  .nav-toggle {
    padding: 4px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    margin: 4px 0;
  }
  .section-minimal-message {
    padding-top: 10px;
    padding-bottom: 2px;
  }
  .section-minimal-message .centered-intro h2 {
    font-size: clamp(2.15rem, 7vw, 3rem);
    line-height: 1.08;
  }
  .cta-box {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 28px 22px;
    border-radius: 28px;
  }
  .cta-box .section-tag.inverse {
    font-size: .9rem;
    padding: 9px 14px;
  }
  .cta-box h2 {
    margin: 12px 0 12px;
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.05;
  }
  .cta-box p {
    margin: 0;
    line-height: 1.65;
    font-size: 1rem;
  }
  .cta-box .btn {
    width: 100%;
    min-height: 54px;
  }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
    font-size: 1.4rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
  }
  .nav-wrap {
    min-height: 68px;
    padding: 8px 0;
  }
  .brand img {
    width: 112px;
  }
  .nav-toggle span {
    width: 20px;
    margin: 3px 0;
  }
  .hero-home {
    padding: 54px 0 36px;
  }
  .hero-copy-minimal h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }
  .hero-copy-minimal .hero-lead {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 320px;
  }
  .hero-actions-centered {
    gap: 12px;
    margin-top: 24px;
  }
  .hero-actions-centered .btn {
    width: 100%;
  }
  .stats-section {
    padding-top: 6px;
  }
  .section-minimal-message .centered-intro h2 {
    font-size: 2.2rem;
  }
  .visitor-points {
    gap: 22px;
    margin-top: 28px;
  }
  .text-points-block p.lead,
  .text-points-block .visitor-points li,
  .about-centered p,
  .about-centered .bullet-point p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .cta-box {
    padding: 24px 20px;
    gap: 18px;
  }
  .cta-box h2 {
    font-size: 2.05rem;
    line-height: 1.06;
  }
  .cta-box .section-tag.inverse {
    display: inline-flex;
    width: auto;
  }
}

.cta-section { padding-top: 24px; }
.hero-home { padding-top: 36px; }
.section-minimal-message { padding-top: 48px; padding-bottom: 48px; }
