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

html { scroll-behavior: smooth; }

body {
  font-family: 'Anek Latin', sans-serif;
  color: #333;
  background: #e8c5d2;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ============================================
   HERO & FOOTER
   ============================================ */
.hero {
  position: relative;
  background: #c47da3 url('../img/main-banner.png') center center / cover no-repeat;
  padding: 0 0 40px;
  text-align: left;
  color: #fff;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.hero__bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-corner {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 45%;
  max-width: 400px;
  opacity: 0.18;
}

.hero__flowers-top {
  display: block;
  width: 220px;
  margin: 0 auto 0 calc(50% - 110px);
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

.hero__logo {
  width: 100%;
  max-width: 460px;
  margin: 0 0 12px;
  display: block;
}

.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #0097ba;
}

.hero__info-block {
  text-align: left;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.info-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.info-row__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.info-row__icon svg,
.date-row__icon svg {
  width: 22px;
  height: 22px;
  fill: #0097ba;
}

.info-row__text {
  flex: 1;
  color: #5e3e56;
  font-size: 1.15rem;
}

.info-row__bold {
  font-weight: 700;
  font-size: 1.15rem;
  color: #5e3e56;
}

.info-row__sub {
  display: block;
  font-size: 1.15rem;
  line-height: 1.55;
  opacity: 0.92;
  color: #5e3e56;
}

.date-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 1.15rem;
  color: #5e3e56;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.date-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.date-row__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.date-row .day {
  font-weight: 700;
}

.date-row .arrow {
  margin: 0 2px;
}

.date-row .time {
  font-weight: 400;
  opacity: 0.92;
}

.hero__footer-bar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 30px 48px 0;
}

.hero__url {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #5e3e56;
  text-decoration: none;
}

.dc-logo {
  position: absolute;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-logo__img {
  height: 50px;
  width: auto;
}

/* ============================================
   INTRO QUOTE (light pink, centered block, left-aligned text)
   ============================================ */
.intro-quote {
  position: relative;
  background: #f5dce4;
  padding: 56px 48px;
  overflow: hidden;
}

.intro-quote__decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.intro-quote__decor img {
  width: 100%;
  height: auto;
}

.intro-quote__decor--bottom-left {
  bottom: -20px;
  left: -20px;
  width: 180px;
  opacity: 0.35;
}

.intro-quote__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 180px;
}

.intro-quote__text {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.4;
  color: #5e3e56;
  text-align: left;
  margin: 0;
}

/* ============================================
   CONFERENCISTA DIVIDER
   ============================================ */
.conf-divider {
  background: #d9a0bc;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.conf-divider__label {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
}

.conf-divider__logo {
  height: 36px;
  width: auto;
}

/* ============================================
   SPEAKER SECTION
   ============================================ */
.speaker {
  background: #f2d4dc;
  padding: 48px 48px 52px;
  position: relative;
  overflow: hidden;
}

.speaker--alt {
  background: #eed0d8;
}

.speaker__inner {
  position: relative;
  z-index: 1;
}

.speaker__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 26px;
  background: linear-gradient(135deg, #b8709a 0%, #9b5f87 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(140, 80, 110, 0.25);
}

.speaker__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #5e3e56;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.5px;
}

.speaker__bio {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #5e3e56;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* ============================================
   FOOTER (light pink intro + URL & logo)
   ============================================ */
.footer {
  background: #f5dce4;
  background-image: none;
  padding: 28px 48px 12px;
  min-height: 0;
  height: auto;
  color: #3d2d4a;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 12px;
  padding: 20px 24px;
  text-align: center;
}

.footer__heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #3d2d4a;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.footer__text {
  font-size: 2rem;
  line-height: 1.65;
  color: #3d2d4a;
  text-align: center;
  margin-bottom: 16px;
}

.footer__cta {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4);
  transition: background 0.2s, box-shadow 0.2s;
}

.footer__cta:hover {
  background: #20bd5a;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.footer .hero__footer-bar {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 12px;
  padding-bottom: 28px;
}

.footer .hero__url {
  color: #5e3e56;
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 768px) {
  body {
    background: #d4b0c0;
  }

  .page-wrapper {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.12);
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
  }

  .hero {
    min-height: 600px;
    background-size: cover;
    background-position: center center;
  }

  .footer {
    min-height: 0;
    height: auto;
  }

  .hero__flowers-top {
    width: 260px;
    margin-left: calc(50% - 130px);
  }

  .hero__content {
    max-width: 55%;
  }

  .speaker__photo {
    width: 200px;
    height: 200px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
  .hero {
    background-size: cover;
    background-position: center center;
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
    padding: 0 28px;
  }

  .hero__footer-bar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .dc-logo {
    right: 28px;
  }

  .hero__logo {
    max-width: 320px;
  }

  .hero__subtitle {
    font-size: 2.1rem;
    letter-spacing: 3px;
    color: #0097ba;
  }

  .info-row {
    font-size: 1.1rem;
  }

  .info-row__bold {
    font-size: 1.3rem;
  }

  .info-row__sub {
    font-size: 1.08rem;
  }

  .date-row {
    font-size: 0.95rem;
  }

  .hero__url {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .dc-logo__img {
    height: 40px;
  }

  .intro-quote {
    padding: 40px 28px;
  }

  .intro-quote__inner {
    min-height: 120px;
  }

  .intro-quote__text {
    font-size: 1.4rem;
  }

  .intro-quote__decor--bottom-left {
    width: 120px;
  }

  .conf-divider {
    padding: 16px 28px;
  }

  .conf-divider__label {
    font-size: 0.65rem;
  }

  .conf-divider__logo {
    height: 28px;
  }

  .footer {
    padding: 24px 28px 12px;
  }

  .footer__inner {
    padding: 20px 12px;
    margin-bottom: 12px;
  }

  .footer__heading {
    font-size: 1.2rem;
  }

  .footer__text {
    font-size: 1rem;
  }

  .footer__cta {
    font-size: 1.4rem;
    padding: 12px 24px;
  }

  .speaker {
    padding: 36px 28px 40px;
  }

  .speaker__photo {
    width: 150px;
    height: 150px;
  }

  .speaker__name {
    font-size: 1.3rem;
  }

  .speaker__bio {
    font-size: 1.05rem;
  }
}

@media (max-width: 380px) {
  .hero__content {
    padding: 0 20px;
  }

  .conf-divider,
  .speaker {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__logo { max-width: 280px; }

  .speaker__photo {
    width: 130px;
    height: 130px;
  }

  .speaker__name { font-size: 1.15rem; }
  .speaker__bio { font-size: 0.98rem; }
}
