/* ===== ProSpanish Alt — Modern Design, Faithful Layout ===== */

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

:root {
  --primary: #c0392b;
  --primary-dark: #962d22;
  --primary-light: #e74c3c;
  --accent: #f39c12;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg: #fafafa;
  --white: #ffffff;
  --border: #e8e8e8;
  --success: #27ae60;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== Header Bar ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.header__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__brand h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

.header__brand h1 span {
  color: var(--dark);
}

.header__brand p {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  line-height: 1;
  margin-top: 0.25rem;
}

.header__nav {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.header__nav a {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 1px;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--primary);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

/* ===== Subnav ===== */
.subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.subnav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subnav__left {
  display: flex;
  align-items: center;
  gap: 0;
}

.subnav__dropdown {
  position: relative;
}

.subnav__trigger {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  padding: 0.9rem 1.4rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  border: none;
  background: none;
  font-family: inherit;
  transition: background var(--transition);
}

.subnav__trigger:hover {
  background: rgba(192, 57, 43, 0.04);
}

.subnav__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  z-index: 1000;
  padding: 0.4rem 0;
}

.subnav__dropdown:hover .subnav__menu,
.subnav__dropdown.open .subnav__menu {
  display: block;
}

.subnav__menu a {
  display: block;
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.15s;
}

.subnav__menu a:hover {
  background: rgba(192, 57, 43, 0.05);
  color: var(--primary);
}

.subnav__featured {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  padding: 0.5rem 1.3rem;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.subnav__featured:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== Main Content Area ===== */
.main {
  max-width: 1100px;
  margin: 1.5rem auto 3rem;
  padding: 0 2rem;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 3rem 3.5rem 3.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* ===== Page Title ===== */
.page-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.75rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* ===== Body Text ===== */
.content-card p {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.text-red {
  color: var(--primary);
  font-weight: 600;
}

/* ===== Key Features ===== */
.features-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2rem 0 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.features-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
}

/* ===== Guarantee ===== */
.guarantee {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 1.5rem 0 0;
  line-height: 1.75;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--success);
}

/* ===== Price & Buy Now ===== */
.buy-section {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.price-line {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.btn-buy {
  display: inline-block;
  padding: 0.95rem 3.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-buy:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
}

.payment-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== Price Variants ===== */
.price-strikethrough {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.price-savings {
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 600;
  display: inline-block;
  margin: 0 0.5rem;
}

.price-red {
  color: var(--primary);
  font-weight: 700;
}

/* ===== What's Included ===== */
.included-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2rem 0 0.75rem;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.included-list li {
  padding: 0.7rem 0 0.7rem 2rem;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.included-list li:last-child {
  border-bottom: none;
}

.included-list li strong {
  font-weight: 700;
  color: var(--dark);
}

.included-list li span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 0.15rem;
  font-weight: 400;
}

/* ===== Testimonials ===== */
.testimonial {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.testimonial:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.testimonial__stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial__text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.testimonial__author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== About ===== */
.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== Contact ===== */
.contact-info {
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 2rem 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 1rem 1.25rem;
    gap: 0.6rem;
  }

  .header__nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .subnav__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.25rem;
  }

  .subnav__left {
    flex-direction: column;
    gap: 0;
  }

  .subnav__trigger {
    padding: 0.65rem 0;
    font-size: 0.85rem;
  }

  .subnav__menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    min-width: 0;
  }

  .subnav__dropdown:hover .subnav__menu {
    display: none;
  }

  .subnav__dropdown.open .subnav__menu {
    display: block;
  }

  .subnav__featured {
    margin: 0.5rem 0 0.75rem;
    text-align: center;
    display: block;
  }

  .main {
    padding: 0 1rem;
  }

  .content-card {
    padding: 1.75rem 1.5rem 2rem;
    border-radius: var(--radius-sm);
  }

  .page-title {
    font-size: 1.4rem;
  }
}
