* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
  color: #221f1f;
  background: #fffdfc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: #ff5b52; }

:root {
  --coral: #ff5b52;
  --coral-dark: #e8483f;
  --ink: #221f1f;
  --muted: #6b6560;
  --bg-alt: #faf3f0;
  --border: #eee2dd;
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.icon { width: 18px; height: 18px; flex-shrink: 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(255,255,255,.85); }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(42px, 6.5vw, 76px); line-height: 0.98; margin: 20px 0 22px; }
.hero-copy h1 { font-size: clamp(30px, 5.5vh, 76px); line-height: 1.02; margin: clamp(10px, 2vh, 20px) 0 clamp(10px, 2vh, 22px); }
h1 em, h2 em { font-style: italic; color: var(--coral); font-weight: 500; }
h2 { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.15; }
h3 { font-size: 20px; margin-bottom: 10px; font-weight: 600; }

.lead { font-size: 17px; color: #5b5652; max-width: 640px; line-height: 1.6; }
.hero-copy .lead { max-width: 460px; margin-bottom: 0; font-size: clamp(14px, 2vh, 17px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; display: none; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px -8px rgba(255,91,82,.5); }
.btn-primary:hover { background: var(--coral-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-light { background: #fff; color: var(--coral); }
.btn-light:hover { background: #fff0ee; color: var(--coral-dark); transform: translateY(-1px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }
.hero-copy .cta-row { margin: clamp(14px, 2.6vh, 30px) 0 clamp(16px, 2.8vh, 34px); }

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,91,82,.25);
  background: rgba(255,91,82,.06);
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-light { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: #fff; margin: 26px 0; }

/* Header */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 24px; }
.logo img { height: 40px; width: auto; }
.site-header .btn-sm { display: inline-flex; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: clamp(80px, 12vh, 110px) 0 clamp(50px, 8vh, 70px); overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; z-index: 0; }
.blob-1 { width: 460px; height: 460px; top: -160px; right: -140px; background: linear-gradient(135deg, var(--coral), #ffb199); }
.blob-2 { width: 380px; height: 380px; bottom: -140px; left: -120px; background: var(--coral); opacity: .18; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero-media { position: relative; }
.hero-media-frame { border-radius: 28px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(34,31,31,.3); height: clamp(260px, 52vh, 480px); }
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute; left: -20px; bottom: -18px;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 20px 40px -16px rgba(34,31,31,.22);
  max-width: 220px;
}
.floating-icon {
  width: 42px; height: 42px; border-radius: 999px;
  background: rgba(255,91,82,.1); color: var(--coral);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.floating-card-sub { font-size: 12px; color: var(--muted); }
.floating-card-title { font-weight: 700; font-size: 15px; }

.stat-row { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; font-weight: 500; color: var(--muted); margin-top: 8px; }
.hero-copy .stat-row { font-size: clamp(12px, 1.6vh, 14px); }
.stat { display: flex; align-items: center; gap: 8px; }
.stat .icon { color: var(--coral); }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 700px; }
.section-head.center { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.center .lead { margin: 18px auto 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.about-copy p:last-child { margin-bottom: 0; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(34,31,31,.18); border-color: rgba(255,91,82,.3); }
.card p { color: var(--muted); font-size: 15px; }
.card-icon {
  width: 48px; height: 48px; border-radius: 16px;
  background: rgba(255,91,82,.1); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: background .18s ease, color .18s ease;
}
.card:hover .card-icon { background: var(--coral); color: #fff; }
.card-icon .icon { width: 22px; height: 22px; }
.card-icon-light { background: rgba(255,255,255,.2); color: #fff; }

/* Founder */
.founder-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.founder-media img { border-radius: 26px; aspect-ratio: 3/3.6; object-fit: cover; box-shadow: 0 30px 60px -20px rgba(34,31,31,.28); max-width: 420px; }
.founder-copy p { color: var(--muted); font-size: 16px; margin: 20px 0 0; max-width: 520px; }

/* Perfil (gradient) */
.perfil { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; text-align: center; justify-content: center; }
.perfil h2 { color: #fff; }
.perfil-inner { max-width: 900px; margin: 0 auto; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; text-align: left; }
.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px; padding: 20px; font-size: 16px; line-height: 1.45;
}
.check-item .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; margin-top: 7px; flex-shrink: 0; }
.perfil-cta { margin-top: 36px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.contact-item {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: 26px 22px; transition: transform .18s ease, box-shadow .18s ease;
}
.contact-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(34,31,31,.18); color: var(--ink); }
.contact-item-primary { background: var(--coral); color: #fff; border-color: var(--coral); }
.contact-item-primary:hover { color: #fff; }
.contact-item-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: .75; margin-top: 4px; }
.contact-item-value { font-weight: 700; font-size: 16px; margin-top: 4px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo { height: 26px; opacity: .8; }
.site-footer p { font-size: 13px; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .founder-grid { grid-template-columns: 1fr; }
  .founder-media { order: -1; }
  .founder-media img { max-width: 320px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .floating-card { position: static; margin-top: -40px; margin-left: 20px; max-width: none; width: fit-content; }
}
@media (max-width: 560px) {
  .section { min-height: auto; padding: 64px 0; }
  .hero { min-height: auto; align-items: flex-start; padding: 100px 0 48px; background: linear-gradient(180deg, #ffd9d5 0%, #fff3f1 55%, #fffdfc 100%); }
  .hero-media, .stat-row { display: none; }
  .hero-copy h1, .hero-copy .lead { width: 100% !important; height: auto !important; }
  .hero-copy h1 { font-size: 44px !important; line-height: 1.05 !important; margin: 20px 0 16px !important; }
  .hero-copy .lead { font-size: 16px !important; text-align: left !important; }
  .site-header { background: transparent; }
  .site-header .btn-sm { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .floating-card { margin-left: 0; }
}
