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

:root {
  --teal: #3aa9ab;
  --teal-dark: #2c8182;
  --teal-light: #45c6c9;
  --teal-pale: #edf8f8;
  --nav-bg: #455a64;
  --nav-hover: #4f6672;
  --dark: #0d3637;
  --text: #1b1b1b;
  --muted: #474747;
  --border: #dbdbdb;
  --bg-alt: #f6f6f6;
  --white: #ffffff;
  --radius: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: "Lato", arial, sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.65; }
h1, h2, h3, h4 { font-family: "Cabin", arial, sans-serif; line-height: 1.25; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.icon-wa { width: 18px; height: 18px; flex-shrink: 0; }

.notice {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-size: .88rem;
  padding: 10px 20px;
  letter-spacing: .01em;
}
.notice a { color: var(--teal-light); font-weight: 700; }

nav {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1060px;
  margin: 0 auto;
  padding: 12px 24px;
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: background .15s;
}
.nav-links a:hover { background: var(--nav-hover); color: var(--white); }
.nav-links .nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 18px;
}
.nav-links .nav-cta:hover { background: var(--teal-light); }
.nav-drop { position: relative; }
.nav-drop > a::after { content: " ▾"; font-size: .7rem; opacity: .7; }
.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-hover);
  border-radius: var(--radius);
  min-width: 210px;
  padding: 6px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.nav-drop:hover .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  border-radius: 0;
}
.drop-menu a:hover { background: rgba(255,255,255,.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: 0;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
}
.mobile-menu {
  display: none;
  background: var(--nav-bg);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 20px 18px;
}
.mobile-menu.is-open { display: grid; gap: 6px; }
.mobile-menu a {
  color: rgba(255,255,255,.9);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-family: "Cabin", sans-serif;
  font-size: .92rem;
}
.mobile-menu a:hover { background: var(--nav-hover); color: var(--white); }
.mobile-menu .mobile-cta {
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.hero {
  background: var(--teal);
  color: var(--white);
  padding: 48px 24px 52px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 442px;
  gap: 48px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.hero-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.88);
  font-family: "Cabin", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-text h1 { font-size: clamp(1.85rem, 3.9vw, 2.8rem); margin-bottom: 12px; max-width: 620px; text-wrap: balance; }
.hero-text h1 em { font-style: normal; color: var(--dark); }
.hero-text p { font-size: 1rem; opacity: .93; margin-bottom: 18px; max-width: 620px; }
.hero-links {
  font-size: .94rem;
  margin-bottom: 24px;
}
.hero-links a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-links a:hover { color: rgba(255,255,255,.85); }
.hero-meta { font-size: .82rem; opacity: .8; margin-bottom: 20px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.2); color: inherit; }
.btn-white { background: var(--white); color: var(--teal-dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-wa { background: #25d366; color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }

.hero-photo { position: relative; }
.hero-photo .photo-wrap {
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  background: #ffffff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(0.9);
  transform-origin: center center;
}

.pillars,
.testimonials,
.blog,
.faq,
.contact,
.page-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.hero-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--teal-dark) 0%, #0f4e50 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  gap: 12px;
}
.hero-photo .photo-placeholder svg { width: 72px; height: 72px; opacity: .4; }

.pillars { padding: 80px 24px; background: var(--white); }
.section-head { text-align: center; margin-bottom: 52px; }
.lema-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-family: "Cabin", sans-serif;
  font-size: 1.44rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 10px; }
.section-head h2 .accent-line {
  display: block;
  width: 52px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.testimonials .section-head h2, .blog .section-head h2, .faq .section-head h2 { font-size: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  position: relative;
}
.pillar-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: "Cabin", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--teal);
  opacity: .5;
  letter-spacing: .04em;
}
.pillar-card:hover { box-shadow: 0 8px 28px rgba(58,169,171,.15); border-color: var(--teal); transform: translateY(-3px); }
.pillar-card .icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.pillar-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.pillar-card p { font-size: .93rem; color: var(--muted); line-height: 1.7; }

.testimonials { background: var(--bg-alt); padding: 72px 24px; }
.proof-bar {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 620px;
  margin: 0 auto 48px;
}
.proof-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.proof-stat:hover { background: var(--bg-alt); }
.proof-stat + .proof-stat { border-left: 1px solid var(--border); }
.proof-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.proof-divider strong { font-family: "Cabin", sans-serif; font-size: 1.5rem; line-height: 1; color: var(--text); }
.proof-divider span { font-size: .7rem; color: var(--muted); text-align: center; margin-top: 3px; }
.plat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .85rem;
}
.plat-google { background: #4285f4; color: #fff; }
.plat-superprof { background: #ff6b35; color: #fff; }
.proof-stat .stat-info strong { display: block; font-family: "Cabin", sans-serif; font-size: .9rem; }
.proof-stat .stat-info .plat-stars { color: #f5a623; font-size: .78rem; letter-spacing: 1px; line-height: 1.4; }
.proof-stat .stat-info span { font-size: .75rem; color: var(--muted); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.testi-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.stars { color: #f5a623; font-size: .95rem; letter-spacing: 2px; }
.platform-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-google { background: #e8f0fe; color: #4285f4; }
.badge-superprof { background: #fff0ea; color: #ff6b35; }
.testi-card > p { font-size: .9rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: .85rem;
}
.av-google { background: #4285f4; }
.av-superprof { background: #ff6b35; }
.testi-author strong { display: block; font-size: .88rem; }
.testi-author span { font-size: .76rem; color: var(--muted); }
.testi-links { display: flex; justify-content: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.testi-links a {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-google { color: #4285f4; }
.link-superprof { color: #ff6b35; }

.blog { padding: 72px 24px; background: var(--white); }
.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.blog-thumb {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 3rem;
}
.blog-body { padding: 32px 28px; }
.blog-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.blog-body h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--text); }
.blog-body h3 a { color: var(--text); }
.blog-body h3 a:hover { color: var(--teal); }
.blog-meta { font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
.blog-body p { font-size: .92rem; color: var(--muted); margin-bottom: 20px; }
.blog-all { text-align: center; margin-top: 32px; }
.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  transition: background .15s, color .15s;
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

.faq { padding: 72px 24px; background: var(--bg-alt); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
details[open] { border-color: var(--teal); }
summary {
  padding: 18px 20px;
  cursor: pointer;
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.3rem; color: var(--teal); flex-shrink: 0; }
details[open] summary::after { content: "−"; }
.faq-body { padding: 0 20px 20px; font-size: .93rem; color: var(--muted); line-height: 1.7; }

.contact { padding: 72px 24px; background: var(--teal); color: var(--white); }
.contact-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-inner p { opacity: .9; margin-bottom: 36px; }
.contact-btns { display: flex; flex-direction: column; gap: 14px; }
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--radius);
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s, box-shadow .15s;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.2); color: inherit; }
.cb-phone { background: var(--dark); color: var(--white); }
.cb-wa { background: #25d366; color: var(--white); }
.cb-email { background: var(--white); color: var(--teal-dark); }
.contact-info { margin-top: 24px; font-size: .85rem; opacity: .8; }

footer { background: #0d2626; color: rgba(255,255,255,.65); padding: 36px 24px; }
.footer-inner { max-width: 1060px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
}
.footer-logo img {
  height: 44px;
  width: auto;
  opacity: .85;
}
.footer-logo-fun img {
  height: 78px;
  opacity: 1;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-links a:hover { color: var(--white); }
.socials { display: flex; gap: 10px; }
.socials a {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.socials a:hover { border-color: var(--teal); color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  font-size: .8rem;
  text-align: center;
}

.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 64px 24px;
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.08rem;
  max-width: 760px;
  opacity: .95;
}

.page-section {
  padding: 72px 24px;
}
.page-section.alt {
  background: var(--bg-alt);
}
.page-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.page-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.12rem;
}
.page-card p,
.page-card li {
  color: var(--muted);
}
.page-card ul {
  padding-left: 20px;
}
.page-card li + li {
  margin-top: 8px;
}

.content-narrow {
  max-width: 820px;
  margin: 0 auto;
}
.content-narrow h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.content-narrow p + p {
  margin-top: 14px;
}
.content-narrow ul,
.content-narrow ol {
  padding-left: 22px;
  margin-top: 14px;
}
.content-narrow li + li {
  margin-top: 8px;
}

.page-cta {
  background: var(--dark);
  color: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
}
.page-cta h2,
.page-cta p {
  color: var(--white);
}
.page-cta .hero-btns {
  justify-content: center;
  margin-top: 24px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-card h3 {
  color: var(--dark);
  font-size: 1.2rem;
}
.app-card p,
.app-card li {
  color: var(--muted);
}
.app-card ul {
  padding-left: 20px;
}
.app-card li + li {
  margin-top: 8px;
}
.app-link-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.story-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.story-copy h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
.story-copy h3 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 18px;
}
.story-copy p {
  color: var(--muted);
}
.story-copy p + p {
  margin-top: 16px;
}

.privacy-block + .privacy-block {
  margin-top: 32px;
}
.privacy-block h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.privacy-block p,
.privacy-block li {
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .grid-3, .testi-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .page-grid-2 { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-thumb { min-height: 140px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .proof-bar { flex-direction: column; }
  .proof-stat + .proof-stat,
  .proof-divider { border-left: 0; border-right: 0; border-top: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .btn, .btn-outline-teal { justify-content: center; width: 100%; }
  .lema-badge { font-size: 1rem; padding: 10px 18px; }
  .hero-kicker { font-size: .78rem; }
}
