/* Lipedema International Meeting — static clone */
:root {
  --accent: #1e73be;
  --accent-dark: #174c8c;
  --accent-navy: #314d89;
  --contrast: #222222;
  --text: #212121;
  --text-light: #efefef;
  --white: #ffffff;
  --category: #174c8c;
  --container: 1190px;
  --font-body: "Raleway", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  background: #f7f8f9;
}

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

a { color: var(--accent); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 800px;
  overflow: hidden;
}

@media (max-width: 1024px) { .hero-slider { height: 768px; } }
@media (max-width: 778px) { .hero-slider { height: 960px; } }
@media (max-width: 480px) { .hero-slider { height: 720px; } }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.hero-content {
  position: absolute;
  left: 12%;
  top: 26%;
  max-width: 78%;
  color: var(--white);
  z-index: 2;
  --hero-logo-size: 84px;
  --hero-logo-gap: 24px;
}

@media (max-width: 1024px) {
  .hero-content {
    left: 10%;
    top: 24%;
    max-width: 82%;
    --hero-logo-size: 66px;
    --hero-logo-gap: 18px;
  }
}

@media (max-width: 778px) {
  .hero-content {
    left: 8%;
    top: 18%;
    max-width: 85%;
    --hero-logo-gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-content { --hero-logo-size: 65px; }
}

.hero-heading-row {
  display: flex;
  align-items: center;
  gap: var(--hero-logo-gap);
  margin-bottom: 12px;
}

@media (max-width: 778px) {
  .hero-heading-row { align-items: flex-start; }
}

.hero-body {
  padding-left: calc(var(--hero-logo-size) + var(--hero-logo-gap));
}

.hero-logo {
  width: var(--hero-logo-size);
  height: var(--hero-logo-size);
  object-fit: contain;
  flex-shrink: 0;
  animation: fadeSlideIn 1s ease;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.4;
  margin: 0 0 12px;
}

.hero-text {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.4;
  margin: 0 0 16px;
}

@media (max-width: 1024px) {
  .hero-title { font-size: 46px; }
  .hero-subtitle,
  .hero-text { font-size: 27px; }
}

@media (max-width: 778px) {
  .hero-title { font-size: 30px; }
  .hero-subtitle,
  .hero-text { font-size: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .hero-subtitle,
  .hero-text { font-size: 17px; }
}

.hero-text-list {
  font-size: 22px;
  line-height: 1.35;
}

.hero-text-label {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .hero-text-list { font-size: 20px; }
}

@media (max-width: 778px) {
  .hero-text-list { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero-text-list { font-size: 13px; }
}

.hero-lists {
  display: flex;
  gap: 40px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 26px;
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-list i {
  color: var(--white);
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-lists { font-size: 16px; gap: 32px; }
}

@media (max-width: 778px) {
  .hero-lists { gap: 16px; font-size: 12px; line-height: 18px; }
  .hero-list li { gap: 6px; margin-bottom: 5px; }
  .hero-list i { margin-top: 4px; }
}

@media (max-width: 480px) {
  .hero-lists { gap: 10px; font-size: 10.5px; line-height: 15px; }
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 60px;
  background: linear-gradient(181deg, #314d89 0%, #4b6199 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(49, 77, 137, 0.5);
  transition: filter 0.3s, transform 0.3s;
}

.hero-btn:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

@media (max-width: 778px) {
  .hero-btn { padding: 12px 36px; font-size: 16px; }
}

@media (max-width: 480px) {
  .hero-btn { padding: 10px 28px; font-size: 14px; }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-arrow:hover { background: #000; }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.slider-dot.active { background: var(--white); }

/* Intro */
.intro-section {
  background: url("../assets/images/2023/07/fondo2.png") -140px -25px / cover no-repeat;
  padding: 6% 0;
  margin-top: 2%;
}

.intro-logo {
  width: auto;
  max-width: 340px;
  min-width: 200px;
  margin-bottom: 24px;
}

.intro-text p { margin: 0 0 16px; }

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
}

.specialty-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.specialty-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 16px;
}

.specialty-list i {
  color: var(--accent-dark);
  font-size: 14px;
}

/* Welcome */
.welcome-section {
  background-color: var(--white);
  background-image: url("../assets/images/2026/07/bienvenidos-paraguay.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin: 100px 0 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 0;
  align-items: start;
}

.welcome-left {
  position: relative;
}

.welcome-visual {
  display: none;
}

.welcome-photo {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  margin: 0;
}

.welcome-right {
  padding-left: 24px;
  padding-right: 0;
  max-width: none;
}

.welcome-right h2 {
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 20px;
  color: var(--accent-dark);
}

.welcome-right p {
  text-align: justify;
  color: var(--text);
  font-size: 16px;
  line-height: 26px;
}

.welcome-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 993px) {
  .welcome-section {
    background-size: 80%;
    background-position: 2% center;
  }

  .welcome-left {
    min-height: 340px;
  }

  .welcome-section .container {
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 12px;
  }
}

@media (max-width: 992px) {
  .welcome-section {
    margin: 60px 0 0;
    background-image: none;
    background-position: center;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .welcome-left {
    margin-bottom: 32px;
  }

  .welcome-right {
    padding-left: 0;
  }

  .welcome-visual {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 24px;
  }

  .welcome-right h2 {
    text-align: center;
  }

  .welcome-right p {
    text-align: center;
  }
}

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

/* Quote / Treatment */
.quote-section {
  padding: 80px 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.quote-text-col {
  padding-right: 20%;
}

.quote-image-col {
  text-align: left;
}

.quote-image {
  width: 57%;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(23, 76, 140, 0.68);
}

.quote-highlight {
  margin: 0 0 10px;
  padding: 25px 20px;
  background-color: #e9e9e9;
  border: none;
  border-left: 4px solid var(--accent-dark);
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #000;
}

.quote-highlight p {
  margin: 0;
}

.quote-follow {
  margin: 3% 0 0;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: var(--text);
}

@media (max-width: 992px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quote-text-col {
    padding-right: 0;
  }

  .quote-image-col {
    text-align: center;
  }

  .quote-image {
    width: 80%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Dark CTA */
.cta-dark {
  position: relative;
  background: var(--accent-dark) url("../assets/images/auditorio.jpg") center / cover no-repeat fixed;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

@media (max-width: 778px) {
  .cta-dark { background-attachment: scroll; }
}

.cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.cta-dark .container { position: relative; z-index: 1; }

.cta-dark p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 12px;
  text-align: center;
}

/* Audience */
.audience-section { padding: 80px 0; }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.audience-grid h4 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 0 0 16px;
}

/* Committee */
.committee-section { padding: 40px 0 20px; text-align: center; }

.committee-section h4 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 32px;
}

.committee-img-wrap {
  width: 100%;
  overflow: hidden;
}

.committee-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.committee-img-desktop {
  display: block;
  min-height: 367px;
  object-fit: cover;
}

.committee-img-mobile {
  display: none;
  min-height: 243px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .committee-img-desktop { display: none; }
  .committee-img-mobile { display: block; }
}

/* Speakers */
.speakers-section { padding: 20px 0 40px; }

.section-divider {
  border: none;
  border-top: 1px solid #0c0d0e;
  margin: 20px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 32px;
  text-align: center;
  color: var(--accent-dark);
}

.category-accent {
  font-weight: 400;
  color: var(--accent-dark);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px;
}

@media (max-width: 1200px) {
  .speakers-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
}

.speaker-card {
  text-align: center;
}

.speaker-photo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto 12px;
  border-radius: 50%;
}

.speaker-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 0 0 4px;
  text-transform: uppercase;
}

.speaker-role {
  font-family: var(--font-heading);
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--category);
}

.speaker-flag {
  width: 14%;
  max-width: 40px;
  margin: 0 auto;
}

/* Sponsors */
.sponsors-section {
  position: relative;
  background: var(--accent-dark) url("../assets/images/footer.jpg") center / cover no-repeat fixed;
  padding: 60px 0;
  color: var(--white);
}

@media (max-width: 778px) {
  .sponsors-section { background-attachment: scroll; }
}

.sponsors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.sponsors-section .container { position: relative; z-index: 1; }

.sponsors-section h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  text-align: center;
  margin: 0 0 32px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin-bottom: 32px;
}

.sponsors-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.sponsors-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .sponsors-grid,
  .sponsors-grid-5,
  .sponsors-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sponsor-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: brightness(1.1);
  transition: transform 0.3s, filter 0.3s;
}

.sponsor-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.organiza-title {
  margin-top: 48px;
}

.organiza-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.organiza-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: brightness(1.1);
}

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

.reserve-btn-wrap { text-align: center; margin-top: 40px; }

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: var(--accent-navy);
  transform: translateY(-2px);
}

/* Fixed buttons */
.fixed-btn {
  position: fixed;
  z-index: 999;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fixed-btn:hover { transform: translateY(-2px); }

.btn-program {
  left: 20px;
  bottom: 40px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  right: 20px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Cookie banner */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--accent-dark);
  color: var(--white);
  padding: 15px 30px;
  display: none;
}

.cookie-bar.visible { display: block; }

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.cookie-close {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-btn {
  padding: 8px 25px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  border-radius: 0;
}

.cookie-btn.reject {
  background: transparent;
  border-color: var(--white);
}

.cookie-btn.settings {
  background: transparent;
  border: none;
  text-decoration: underline;
  color: var(--white);
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.open { display: flex; }

.cookie-modal-content {
  background: var(--white);
  color: var(--text);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cookie-tab {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.cookie-tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.cookie-tab-body {
  display: none;
  font-size: 14px;
  padding-top: 8px;
  color: #555;
}

.cookie-tab.open .cookie-tab-body { display: block; }

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-down {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-down.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .btn-program {
    left: 10px;
    bottom: 30px;
    font-size: 12px;
    padding: 10px 14px;
  }

  .btn-whatsapp {
    right: 10px;
    bottom: 30px;
  }
}
