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

body {
  background: #F0EDE8;
  color: #2A2826;
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  padding-bottom: 4rem;
  font-size: 1.05rem;
}

.serif { font-family: 'DM Serif Display', serif; }

/* HERO */
.hero {
  padding: 4.5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,145,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8916A;
  margin-bottom: 1rem;
  font-weight: 500;
}

.name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 1.05;
  color: #2A2826;
  margin-bottom: 0.4rem;
}

.name em {
  font-style: italic;
  color: #E8916A;
}

.tagline {
  font-size: 1.05rem;
  color: #7A6E62;
  font-weight: 300;
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
}

.hero-desc {
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  color: #7A6E62;
  line-height: 1.7;
  font-weight: 300;
}

/* INCLUDES STRIP */
.includes {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F2 100%);
  border-bottom: 2px solid #D8D2CC;
  padding: 3.5rem 2rem;
  position: relative;
}

.includes::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(80%, 400px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #E8916A, transparent);
}

.includes::after {
  content: '✓';
  position: absolute;
  bottom: 0.6rem; right: 1rem;
  font-size: 3rem;
  color: rgba(232,145,106,0.08);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.includes-label {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #2A2826;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.includes-label span {
  color: #E8916A;
  display: block;
  font-size: 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 520px;
  margin: 0 auto;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
  color: #2A2826;
  font-weight: 400;
  padding: 0.6rem 1rem;
  background: #F4F1EC;
  border-radius: 8px;
  border-left: 3px solid #E8916A;
  transition: background 0.2s;
}

.include-item:hover { background: #EDE8E2; }

.include-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E8916A;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(232,145,106,0.4);
}

/* PLANS */
.plans-section {
  padding: 3rem 1.5rem 0;
  max-width: 820px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #2A2826;
  margin-bottom: 2rem;
  font-weight: 400;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: #D8D2CC;
  border: 1px solid #D8D2CC;
  border-radius: 12px;
  overflow: hidden;
}

.plan {
  background: #FFFFFF;
  padding: 2rem 1.5rem;
  position: relative;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.plan:hover { background: #FCFAF7; }

.plan-badge {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.badge-basic {
  background: rgba(232,145,106,0.10);
  color: #E8916A;
  border: 1px solid rgba(232,145,106,0.2);
}

.badge-medio {
  background: #F0EDE8;
  color: #7A6E62;
  border: 1px solid #D8D2CC;
}

.badge-oro {
  background: rgba(232,145,106,0.15);
  color: #F0B090;
  border: 1px solid rgba(232,145,106,0.3);
}

.plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.name-basic { color: #E8916A; }
.name-medio { color: #2A2826; }
.name-oro { color: #F0B090; }

.plan-price {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0.8rem 0 1.4rem;
  color: #2A2826;
}

.plan-price span {
  font-size: 0.85rem;
  font-weight: 300;
  color: #6A5E54;
  margin-left: 3px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.plan-features li {
  font-size: 0.92rem;
  color: #6A5E54;
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.plan-features li .ideal {
  color: #7A6E62;
  font-weight: 400;
  display: block;
  margin-top: 0.3rem;
  font-style: italic;
}

.feat-dot { color: #E8916A; font-size: 1.15rem; line-height: 1.2; flex-shrink: 0; }

/* ADDONS */
.addons {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F2 100%);
  border-top: 2px solid #D8D2CC;
  border-bottom: 2px solid #D8D2CC;
  padding: 3.5rem 2rem;
  position: relative;
  margin-top: 3.5rem;
}

.addons::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(80%, 400px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #E8916A, transparent);
}

.addons-label {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #2A2826;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.addons-label span {
  color: #E8916A;
  display: block;
  font-size: 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.addons-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #7A6E62;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 520px;
  margin: 0 auto;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
  color: #2A2826;
  font-weight: 400;
  padding: 0.6rem 1rem;
  background: #F4F1EC;
  border-radius: 8px;
  border-left: 3px solid #E8916A;
  transition: background 0.2s;
}

.addon-item:hover { background: #EDE8E2; }

.addon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E8916A;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(232,145,106,0.4);
}

/* CTA */
.cta {
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-text {
  font-size: 1.05rem;
  color: #7A6E62;
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #E8916A;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.cta-btn:hover { background: #F0A585; transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }

/* CONTACT FORM */
.form-section {
  max-width: 560px;
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
}

.form-card {
  border: 1px solid #D8D2CC;
  border-radius: 12px;
  padding: 2rem;
  background: #FFFFFF;
}

.form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #2A2826;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: #7A6E62;
  margin-bottom: 1.6rem;
  font-weight: 300;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #7A6E62;
  margin-bottom: 0.35rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: #F4F1EC;
  border: 1px solid #D8D2CC;
  border-radius: 8px;
  color: #2A2826;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #E8916A;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238A7A6E'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
}

.form-group select option {
  background: #FFFFFF;
  color: #2A2826;
}

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: #E8916A;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: #F0A585; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: #7A6E62;
  font-size: 1rem;
  line-height: 1.6;
}

.form-success strong {
  color: #2A2826;
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #9B8F82;
  margin-top: 1.5rem;
  font-style: italic;
  text-align: center;
}

@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan { padding: 1.5rem 1.25rem; }
  .form-card { padding: 1.5rem; }
  .hero { padding: 3rem 1.5rem 2rem; }
}
