/* Sanare Studio — landing estática
   Marca: carbón #282725, crema #FCFAF8, arena #E9DDCC,
   verde salvia #B3D2B4 / #74A080, terracota #CA7055 / #B6563F
   Tipografías: Lora (titulares) + DM Sans (cuerpo) — Google Fonts */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FCFAF8;
  color: #282725;
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
}

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

input::placeholder {
  color: #8a8580;
  opacity: 1;
}

::selection {
  background: #CA7055;
  color: #FCFAF8;
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  text-align: center;
}

.btn-primary {
  background: #CA7055;
  color: #FCFAF8;
}

.btn-dark {
  background: #282725;
  color: #FCFAF8;
}

.btn-small {
  font-size: 13px;
  padding: 10px 18px;
  letter-spacing: 0.01em;
}

.btn-large {
  font-size: 16px;
  padding: 16px 32px;
  margin-top: 8px;
}

.btn-block {
  font-size: 16px;
  padding: 16px;
  margin-top: 8px;
  width: 100%;
}

.link-mailto {
  color: inherit;
  text-decoration: underline;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header .logo {
  height: 47px;
  width: 92px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: #282725;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

/* HERO / PROBLEMA (fondo oscuro) */
.hero {
  background: #282725;
  color: #FCFAF8;
  padding: 56px 24px 64px;
  padding-top: 64px;
}

.hero-inner {
  max-width: 639px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 37px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B3D2B4;
  line-height: 1.4;
}

.eyebrow-green {
  color: #74A080;
  margin-bottom: 16px;
}

.hero-logo {
  filter: brightness(0) invert(1);
  object-fit: contain;
  width: 220px;
  height: auto;
}

.hero-inner h1 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 31px;
  line-height: 1.3;
  margin: 13px 7px;
}

.hero-inner h1 em {
  font-style: italic;
  color: #B3D2B5;
}

.hero-inner p {
  font-size: 15px;
  line-height: 1.65;
  color: #e2dcd3;
  margin: 0;
  max-width: 520px;
}

.hero-note {
  font-size: 13px;
  color: #B3D2B4;
}

/* PROBLEMA */
.section {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

.section h2 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.section h2 em {
  font-style: italic;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4744;
  margin: 0;
}

/* COR + TRANSICION */
.cor-block {
  background: #E9DDCC;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.cor-block img {
  width: 72px;
  height: auto;
  animation: cor-float 3.2s ease-in-out infinite;
}

.cor-block h3 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 24px;
  margin: 0;
  max-width: 420px;
}

.cor-block p {
  font-size: 15px;
  color: #4a4744;
  margin: 0;
  max-width: 420px;
  line-height: 1.45;
}

/* COMO FUNCIONA */
.steps-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px;
}

.steps-header {
  text-align: center;
  margin-bottom: 48px;
}

.steps-header h2 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 28px;
  margin: 0;
}

.steps-header h2 em {
  font-style: italic;
}

.steps-list {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #E9DDCC;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Lora', serif;
  font-size: 24px;
  color: #CA7055;
  flex: none;
  width: 36px;
}

.step-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.step-text {
  font-size: 14px;
  color: #6b6660;
  line-height: 1.6;
}

/* CTA / FORM SECTIONS (reemplazan a los <form>) */
.cta-section {
  padding: 72px 24px;
}

.cta-section.dark {
  background: #282725;
}

.cta-section.sage {
  background: #B3D2B4;
}

.cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.cta-header {
  text-align: center;
  margin-bottom: 32px;
}

.cta-header h2 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 12px;
}

.cta-header h2 em {
  font-style: italic;
}

.cta-section.dark .cta-header h2 {
  color: #FCFAF8;
}

.cta-section.dark .cta-header h2 em {
  color: #CA7055;
}

.cta-section.dark .cta-header p {
  font-size: 14px;
  color: #e2dcd3;
  margin: 0;
}

.cta-section.sage .cta-header h2 {
  color: #282725;
  font-size: 30px;
  line-height: 1.35;
}

.cta-section.sage .cta-header p {
  font-size: 15px;
  color: #3d4a3f;
  margin: 0;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.cta-secondary {
  text-align: center;
  font-size: 14px;
}

.cta-section.dark .cta-secondary {
  color: #e2dcd3;
}

.cta-section.sage .cta-secondary {
  color: #3d4a3f;
}

.cta-secondary .link-mailto {
  font-weight: 700;
}

/* POR QUE SANARE */
.quote-block {
  border-left: 5px solid #CA7055;
  border-radius: 2px;
  padding: 28px 32px;
  text-align: left;
  background-color: rgba(233, 221, 204, 0.6);
  margin-top: 32px;
}

.quote-block p {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: #282725;
  margin: 0;
}

/* SERVICIOS */
.services-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px;
}

.services-header {
  text-align: center;
  margin-bottom: 32px;
}

.services-header h2 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 16px;
}

.services-header h2 em {
  font-style: italic;
}

.services-header p {
  font-size: 15px;
  color: #4a4744;
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.6;
}

.services-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8580;
  margin-bottom: 20px;
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.plan-card {
  background: #282725;
  border-radius: 10px;
  padding: 32px;
  color: #FCFAF8;
  position: relative;
}

.plan-featured {
  border: 2px solid #CA7055;
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #CA7055;
  color: #FCFAF8;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Lora', serif;
  font-size: 20px;
  margin-bottom: 16px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}

.plan-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #CA7055;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex: none;
  margin-top: 1px;
}

.project-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.project-service-card {
  background: #E9DDCC;
  border-radius: 10px;
  padding: 24px;
}

.project-service-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.project-service-text {
  font-size: 13px;
  color: #6b6660;
  line-height: 1.6;
}

.summer-callout {
  background: rgba(233, 221, 204, 0.6);
  border-left: 5px solid #CA7055;
  border-radius: 2px;
  padding: 36px 40px;
}

.summer-callout-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B6563F;
  margin-bottom: 12px;
  font-weight: 700;
}

.summer-callout p {
  font-size: 16px;
  line-height: 1.7;
  color: #282725;
  margin: 0 0 16px;
}

.summer-callout p:nth-of-type(2) {
  font-size: 15px;
  color: #4a4744;
  margin-bottom: 24px;
}

.summer-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.summer-callout-actions .btn {
  font-weight: 300;
  font-size: 15px;
  padding: 14px 26px;
}

.link-mailto-strong {
  color: #282725;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 700;
}

.summer-callout-note {
  font-size: 13px;
  color: #6b6660;
  margin-top: 14px;
}

@media (max-width: 720px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .summer-callout {
    padding: 28px 24px;
  }
}

/* FOOTER */
.site-footer {
  background: #FCFAF8;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-top: 1px solid #E9DDCC;
}

.site-footer .logo {
  height: 54px;
  width: 107px;
}

.site-footer p {
  font-size: 12px;
  color: #8a8580;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .site-nav {
    gap: 10px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-inner h1 {
    font-size: 26px;
  }

  .section h2,
  .steps-header h2 {
    font-size: 24px;
  }

  .cta-header h2 {
    font-size: 22px;
  }

  .cta-section.sage .cta-header h2 {
    font-size: 26px;
  }

  .site-header .logo {
    height: 38px;
    width: 74px;
  }
}
