/* ── DEPANTEN ESPAÑA — INNER PAGES CSS ── */
:root {
  --dark: #3a1a2d;
  --dark2: #4e2240;
  --red: #b7064d;
  --red2: #9a0540;
  --gold: #ffce22;
  --gold2: #f5b429;
  --green: #27ae60;
  --white: #fff;
  --light: #f9f5f7;
  --text: #222;
  --text2: #555;
  --max-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Arial', sans-serif; color: var(--text); background: #fff; }
a { text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── HEADER ── */
.i-header {
  background: var(--dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.i-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.i-logo img { height: 44px; }
.i-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.i-nav a {
  color: rgba(255,255,255,0.80);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.i-nav a:hover, .i-nav a.active {
  background: var(--red);
  color: #fff;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  background: var(--light);
  padding: 10px 20px;
  font-size: 13px;
  color: #888;
  border-bottom: 1px solid #e8d8e4;
}
.breadcrumbs a { color: var(--red); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; }

/* ── HERO ── */
.i-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.i-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,8,40,0.93) 0%, rgba(30,8,40,0.80) 50%, rgba(30,8,40,0.55) 100%);
}
.i-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.i-hero-content h1 {
  font-size: clamp(24px, 3.2vw, 42px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: 800;
}
.i-hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.i-benefits {
  margin-bottom: 28px;
}
.i-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.90);
  font-size: 15px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.i-benefits li:last-child { border-bottom: none; }
.i-benefits li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.i-hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 44px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 28px rgba(255,206,34,0.55);
  transition: all 0.3s;
}
.i-hero-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,206,34,0.70);
}

/* ── PRICE CARD ── */
.i-price-card {
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.i-price-card .prod-img {
  width: 140px;
  height: auto;
  margin-bottom: 14px;
}
.i-promo-label {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.i-price-new {
  font-size: 54px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.i-price-new span { font-size: 28px; }
.i-price-old {
  font-size: 20px;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.i-price-save {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 18px;
}
.i-card-btn {
  display: block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 14px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 24px rgba(183,6,77,0.45);
  transition: all 0.3s;
  margin-bottom: 12px;
}
.i-card-btn:hover {
  background: var(--red2);
  transform: translateY(-2px);
}
.i-delivery {
  font-size: 12px;
  color: #777;
}

/* ── CONTENT SECTION ── */
.i-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 20px;
}
.i-content h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--dark);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}
.i-content h2:first-child { margin-top: 0; }
.i-content p {
  line-height: 1.80;
  color: #333;
  margin-bottom: 18px;
  font-size: 16px;
}
.i-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}
.i-content ul li {
  padding: 4px 0;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}
.i-content strong { color: var(--dark); }

/* ── PHOTO + TEXT SECTION ── */
.i-photo-section {
  padding: 70px 20px;
}
.i-photo-section.bg-light { background: var(--light); }
.i-photo-section.bg-white { background: #fff; }
.i-photo-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.i-photo-grid.reverse .i-photo-img { order: 2; }
.i-photo-grid.reverse .i-photo-text { order: 1; }
.i-photo-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(58,26,45,0.20);
}
.i-photo-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.i-photo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
}
.i-photo-text h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--dark);
  margin-bottom: 16px;
  border-bottom: none;
  display: block;
  padding-bottom: 0;
}
.i-photo-text p {
  color: var(--text2);
  line-height: 1.80;
  margin-bottom: 18px;
  font-size: 15px;
}
.i-photo-checklist { margin-bottom: 24px; }
.i-photo-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: #333;
  font-size: 15px;
  border-bottom: 1px solid rgba(58,26,45,0.08);
}
.i-photo-checklist li:last-child { border-bottom: none; }
.i-photo-checklist li::before {
  content: "✓";
  color: var(--red);
  font-weight: bold;
  flex-shrink: 0;
}
.i-photo-cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(183,6,77,0.40);
  transition: all 0.3s;
}
.i-photo-cta:hover {
  background: var(--red2);
  transform: translateY(-2px);
}

/* ── EXPERT SECTION ── */
.i-expert {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 60px 20px;
}
.i-expert-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.i-expert-avatar {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 18px;
}
.i-expert-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.i-expert-title {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.i-expert-quote {
  font-size: 17px;
  color: rgba(255,255,255,0.90);
  line-height: 1.80;
  font-style: italic;
  position: relative;
  padding: 0 24px;
}
.i-expert-quote::before {
  content: '"';
  font-size: 80px;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -20px;
  left: 0;
  line-height: 1;
  font-style: normal;
}

/* ── TESTIMONIALS ── */
.i-reviews {
  background: var(--light);
  padding: 70px 20px;
}
.i-reviews-title {
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
}
.i-reviews-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.i-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 4px 20px rgba(58,26,45,0.10);
  border-top: 4px solid var(--red);
  position: relative;
}
.i-review-card::after {
  content: '"';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 64px;
  color: rgba(255,206,34,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.i-rev-stars {
  color: var(--gold2);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.i-rev-text {
  font-size: 14px;
  color: #555;
  line-height: 1.70;
  font-style: italic;
  margin-bottom: 16px;
}
.i-rev-author { font-weight: 800; color: var(--dark); font-size: 15px; }
.i-rev-meta { font-size: 12px; color: #888; margin-top: 2px; }

/* ── FINAL CTA ── */
.i-final-cta {
  background: linear-gradient(135deg, var(--red) 0%, #8b033a 100%);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.i-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,206,34,0.15), transparent 70%);
}
.i-final-cta h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.i-final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.i-final-price {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.i-final-price-new {
  font-size: 64px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.i-final-price-new span { font-size: 30px; }
.i-final-price-old {
  font-size: 24px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.i-final-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
  font-size: 22px;
  padding: 18px 56px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(255,206,34,0.55);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.i-final-btn:hover {
  background: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255,206,34,0.70);
}
.i-final-trust {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  position: relative;
  z-index: 1;
}

/* ── SEO LINKS ── */
.i-seo-links {
  background: var(--dark);
  padding: 20px;
}
.i-seo-links-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: center;
}
.i-seo-links span { color: rgba(255,255,255,0.4); font-size: 12px; }
.i-seo-links a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  transition: color 0.2s;
}
.i-seo-links a:hover { color: var(--gold); }

/* ── FOOTER ── */
.i-footer {
  background: #1a0d16;
  padding: 30px 20px 20px;
  text-align: center;
}
.i-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin-bottom: 16px;
}
.i-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.i-footer-links a:hover { color: var(--gold); }
.i-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .i-hero-inner { grid-template-columns: 1fr; }
  .i-price-card { display: none; }
  .i-photo-grid { grid-template-columns: 1fr; gap: 30px; }
  .i-photo-grid.reverse .i-photo-img { order: 0; }
  .i-photo-grid.reverse .i-photo-text { order: 0; }
  .i-photo-img img { height: 260px; }
  .i-reviews-grid { grid-template-columns: 1fr; }
  .i-nav { display: none; }
}
