:root {
  --black: #0b0b0b;
  --white: #f5f5f5;
  --bg: #ededed;
  --text: #202020;
  --muted: #555;
  --brand: #20d5ff;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #050505;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 160px;
}

.brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--brand);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
  justify-content: flex-end;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
}

.instagram-link svg path,
.instagram-link svg rect,
.instagram-link svg circle {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
}

.menu-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: background 0.2s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.menu-btn.open .menu-icon {
  background: transparent;
}

.menu-btn.open .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn.open .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 999;
}

.mobile-menu a {
  display: block;
  padding: 16px 24px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.mobile-menu a:hover {
  color: var(--brand);
}

.mobile-menu.open {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.18);
  pointer-events: none;
  border: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(980px, calc(100% - 40px));
  padding: 40px 0;
}

.hero-content h1 {
  font-size: clamp(52px, 8vw, 94px);
  letter-spacing: 4px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 4px;
  font-weight: 300;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: 0.25s ease;
  background: rgba(255, 255, 255, 0.03);
}

.hero-btn:hover {
  background: #fff;
  color: #111;
}

section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: 6px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.intro {
  background: #efefef;
}

.intro-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 40px;
}

.intro-logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-logo-box img {
  max-height: 140px;
  width: auto;
}

.intro-mark {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: #111;
  text-align: center;
  opacity: 0.12;
  letter-spacing: 4px;
}

.intro-text h2 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.intro-text p {
  font-size: 21px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.intro-text strong {
  font-weight: 800;
}

.numbers {
  background: #0a0a0a;
  color: white;
  padding: 110px 0;
}

.numbers .container {
  width: min(1320px, calc(100% - 80px));
}

.numbers h2 {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 72px;
  text-align: left;
  text-transform: uppercase;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 44px;
}

.number-item {
  text-align: left;
}

.number-item h3 {
  font-size: 92px;
  line-height: 0.95;
  font-weight: 300;
  margin: 0 0 20px;
  letter-spacing: -2px;
}

.number-item p {
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  max-width: 260px;
}

.tickets {
  background: #efefef;
}

.tickets-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-top: 20px;
  align-items: start;
}

.ticket-single-wrap {
  max-width: none;
  margin: 0;
}

.ticket-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid #dfe7ea;
}

.ticket-thumb {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1f3c4b 55%, #20d5ff 100%);
}

.ticket-thumb::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -40px;
  width: 180px;
  height: 280px;
  background: rgba(255, 255, 255, 0.86);
  transform: rotate(36deg);
}

.ticket-thumb::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
}

.ticket-label {
  position: absolute;
  top: 20px;
  right: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: right;
  letter-spacing: 1px;
  z-index: 2;
  text-transform: uppercase;
  max-width: 180px;
  line-height: 1.15;
}

.ticket-date {
  position: absolute;
  right: 35px;
  bottom: 44px;
  color: #fff;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticket-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticket-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #313131;
}

.ticket-features {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.ticket-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.5;
}

.ticket-feature .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 8px;
  flex-shrink: 0;
}

.ticket-price {
  font-size: 20px;
  font-weight: 800;
  border-top: 2px solid #6c6c6c;
  padding-top: 12px;
}

.ticket-btn {
  display: inline-block;
  border: 2px solid #20d5ff;
  padding: 15px 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 15px;
  color: #20d5ff;
  font-weight: 700;
  transition: 0.25s ease;
  background: transparent;
  cursor: pointer;
}

.ticket-btn:hover {
  background: #12b8de;
  color: #fff;
  border-color: #12b8de;
}

.ticket-register-form {
  display: grid;
  gap: 12px;
}

.ticket-register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ticket-register-grid input {
  width: 100%;
  border: 1.5px solid #d9dfdd;
  background: #f8faf9;
  color: #222;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  outline: none;
}

.preinscripcion-card {
  background: #fff;
  border: 1px solid #dfe7ea;
  padding: 20px;
}

.preinscripcion-card .ticket-btn {
  width: 100%;
}

.ticket-note {
  margin-top: 36px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.speakers {
  background: #efefef;
}

.speakers-row {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #333;
  user-select: none;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

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

.speaker-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #d8d8d8, #c9c9c9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  font-size: 52px;
  font-weight: 700;
}

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

.speaker-name {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 800;
  color: #00a895;
  text-transform: uppercase;
}

.speaker-role {
  margin-top: 8px;
  font-size: 16px;
  color: #2f2f2f;
}

.sponsors {
  background: #efefef;
  padding-top: 30px;
}

.sponsor-group {
  margin-bottom: 40px;
}

.sponsor-group h3 {
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 800;
  color: #2e2e2e;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 30px;
  align-items: center;
}

.logo-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #d8d8d8;
  background: #f8f8f8;
  color: #444;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
}

.company {
  background: #efefef;
  padding-top: 40px;
  padding-bottom: 0;
}

.company-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}

.company-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #d8d8d8, #bfbfbf);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.company-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 800;
}

.accent-line {
  width: 92px;
  height: 5px;
  background: #00a895;
  margin-bottom: 22px;
}

.company-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 760px;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.company-actions a {
  border: 2px solid #2b2b2b;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  color: #222;
  transition: 0.25s ease;
}

.company-actions a:hover {
  background: #111;
  color: #fff;
}

.home-contact {
  background: #f4f8f9;
}

.home-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.home-contact-card {
  background: #fff;
  border: 1px solid #dfe7ea;
  padding: 24px;
}

.home-contact-card h3 {
  font-size: 24px;
  margin: 0 0 8px;
  color: #121212;
}

.home-contact-card p {
  font-size: 15px;
  margin: 0 0 12px;
  color: #5d5d5d;
}

.home-contact-card a {
  font-size: 18px;
  font-weight: 700;
  color: #00a8c8;
}

.home-contact-form {
  background: #fff;
  border: 1px solid #dfe7ea;
  padding: 24px;
}

.home-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-contact-fields input,
.home-contact-fields textarea {
  width: 100%;
  border: 1.5px solid #d9dfdd;
  background: #f8faf9;
  color: #222;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 15px;
  outline: none;
}

.home-contact-fields textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

.home-contact-form button {
  margin-top: 14px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.venue {
  background: #dcdcdc;
  position: relative;
  overflow: hidden;
}

.venue-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  min-height: 420px;
  align-items: center;
  position: relative;
}

.venue-art {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-logo {
  position: relative;
  z-index: 2;
  width: min(420px, 75%);
  opacity: 0.98;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.2));
}

.venue-ball {
  position: absolute;
  left: 360px;
  top: 120px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b49a, #20d5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  line-height: 1.05;
  z-index: 3;
}

.venue-bars span {
  position: absolute;
  display: block;
  height: 28px;
}

.bar1 {
  left: 0;
  top: 40px;
  width: 110px;
  background: #ff1048;
}
.bar2 {
  left: 110px;
  top: 20px;
  width: 130px;
  background: #ae7fd2;
}
.bar3 {
  left: 235px;
  top: 40px;
  width: 132px;
  background: #e1cf0f;
}
.bar4 {
  left: 235px;
  top: 110px;
  width: 132px;
  background: #4dc6ae;
}

.venue-info {
  padding: 40px 0;
}

.venue-info h3 {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.venue-info p {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 430px;
}

.venue-btn {
  display: inline-block;
  margin-top: 12px;
  border: 2px solid #2b2b2b;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 16px;
  background: transparent;
  transition: 0.25s ease;
}

.venue-btn:hover {
  background: #111;
  color: #fff;
}

.site-footer {
  background: #1b1b1b;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-bottom: 54px;
}

.footer-col h4 {
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
  font-weight: 900;
}

.footer-line {
  width: 92px;
  height: 2px;
  background: #fff;
  margin-bottom: 18px;
  opacity: 0.85;
}

.footer-col p,
.footer-col a {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

.footer-col .brand-link {
  color: #00b8a6;
  font-weight: 700;
}

.footer-cta {
  display: inline-block;
  margin-top: 16px;
  border: 2px solid #fff;
  padding: 16px 28px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.footer-cta:hover {
  background: #fff;
  color: #111;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.footer-socials svg path,
.footer-socials svg rect,
.footer-socials svg circle {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 54px 40px;
  }
}

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

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

  .intro-top {
    grid-template-columns: 1fr;
  }

  .company-box,
  .venue-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tickets-layout {
    grid-template-columns: 1fr;
  }

  .ticket-card {
    grid-template-columns: 1fr;
  }

  .ticket-thumb {
    min-height: 220px;
  }

  .ticket-register-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-wrap,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .venue-info {
    padding-top: 0;
  }
}

@media (max-width: 1100px) {
  .nav,
  .header-right {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-content h1 {
    letter-spacing: 2px;
  }

  .hero-content p {
    letter-spacing: 2px;
  }

  .section-title {
    letter-spacing: 3px;
  }

  .speaker-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .numbers {
    padding: 80px 0;
  }

  .numbers .container {
    width: min(1320px, calc(100% - 40px));
  }

  .numbers h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .number-item h3 {
    font-size: 72px;
    margin-bottom: 14px;
  }

  .number-item p {
    font-size: 18px;
    max-width: 100%;
  }

  .speakers-row {
    grid-template-columns: 1fr;
  }

  .arrow {
    display: none;
  }

  .company-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-actions a {
    width: 100%;
    text-align: center;
  }

  .venue-ball {
    left: auto;
    right: 30px;
    top: 40px;
  }

  .venue-art {
    min-height: 300px;
  }

  .venue-logo {
    width: min(320px, 70%);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    height: 66px;
  }

  .mobile-menu {
    top: 66px;
  }

  .hero {
    margin-top: 66px;
  }

  .brand img {
    height: 38px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .home-contact-fields {
    grid-template-columns: 1fr;
  }

  .intro-text p,
  .ticket-body p,
  .company-content p,
  .venue-info p,
  .footer-col p,
  .footer-col a {
    font-size: 16px;
  }

  .section-title {
    font-size: 34px;
  }

  .venue-info h3 {
    font-size: 44px;
  }

  .ticket-label {
    font-size: 18px;
    max-width: 150px;
  }

  .ticket-register-grid {
    grid-template-columns: 1fr;
  }

  .ticket-card {
    grid-template-columns: 1fr;
  }

  .ticket-thumb {
    min-height: 190px;
  }

  .preinscripcion-card {
    padding: 16px;
  }

}

.location-strip {
  margin-top: 72px;
  padding: 0 0 28px;
  background: transparent;
}

.location-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 300px;
  background: linear-gradient(90deg, #dff2f5 0%, #dfeef2 100%);
  border-radius: 12px;
  overflow: hidden;
}

.location-map {
  min-height: 300px;
  height: 100%;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 34px;
}

.location-content h3 {
  font-size: 62px;
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 16px;
  color: #2a2a2a;
}

.location-content p {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 12px;
  color: #2d2d2d;
}

@media (max-width: 900px) {
  .location-strip-inner {
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100% - 48px));
    min-height: auto;
  }

  .location-map,
  .location-map iframe {
    min-height: 300px;
  }

  .location-content {
    padding: 28px 22px 30px;
  }

  .location-content h3 {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 12px;
  }

  .location-content p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media (max-width: 560px) {
  .location-strip {
    padding-bottom: 20px;
  }

  .location-strip-inner {
    width: min(var(--max), calc(100% - 28px));
    border-radius: 10px;
  }

  .location-map iframe {
    min-height: 320px;
  }

  .location-content {
    padding: 22px 16px 26px;
  }

  .location-content h3 {
    font-size: 34px;
  }
}


/* Home full contact section (same aesthetic as contacto view) */
.home-contact-full {
  padding: 90px 0;
  background: linear-gradient(to bottom, #f8fbfa 0%, #ffffff 100%);
}

.home-contact-full .contacto-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.home-contact-full .contacto-title {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
}

.home-contact-full .contacto-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #5b5b5b;
  margin: 0 auto 20px;
  max-width: 640px;
}

.home-contact-full .contacto-line {
  width: 90px;
  height: 4px;
  background: #00b894;
  margin: 0 auto;
  border-radius: 999px;
}

.home-contact-full .contacto-main-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.home-contact-full .contacto-main-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #00b894 0%, #00a895 100%);
}

.home-contact-full .contacto-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 0;
  align-items: stretch;
}

.home-contact-full .contacto-info,
.home-contact-full .contacto-form-wrap {
  padding: 40px;
}

.home-contact-full .contacto-info {
  background: linear-gradient(180deg, #f9fcfb 0%, #f4fbf8 100%);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.home-contact-full .card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: rgba(0, 184, 148, 0.1);
  color: #009a7d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}

.home-contact-full .contact-section-title,
.home-contact-full .contacto-form-wrap h3 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  color: #131313;
  margin-bottom: 14px;
}

.home-contact-full .contact-section-text,
.home-contact-full .contacto-form-wrap p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 28px;
}

.home-contact-full .contact-list {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.home-contact-full .contact-person {
  padding: 18px;
  border: 1px solid #e6ecea;
  border-radius: 18px;
  background: #ffffff;
}

.home-contact-full .contact-person strong {
  display: block;
  font-size: 18px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.home-contact-full .contact-person small {
  display: block;
  font-size: 13px;
  color: #7c7c7c;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.home-contact-full .whatsapp-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
}

.home-contact-full .contact-meta {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.home-contact-full .contact-meta-item span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #7b7b7b;
  margin-bottom: 6px;
}

.home-contact-full .contact-meta-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #252525;
}

.home-contact-full .location-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e6ecea;
}

.home-contact-full .location-map iframe {
  width: 100%;
  height: 250px;
  display: block;
  border: 0;
  min-height: 0;
}

.home-contact-full .contact-form {
  display: grid;
  gap: 18px;
}

.home-contact-full .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.home-contact-full .field {
  display: flex;
  flex-direction: column;
}

.home-contact-full .field.full {
  grid-column: 1 / -1;
}

.home-contact-full .contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 8px;
}

.home-contact-full .contact-form input,
.home-contact-full .contact-form textarea {
  width: 100%;
  border: 1.5px solid #d9dfdd;
  background: #f8faf9;
  color: #222;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 15px;
  outline: none;
}

.home-contact-full .contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.home-contact-full .contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.home-contact-full .contact-note {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.6;
  max-width: 420px;
}

.home-contact-full .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .home-contact-full .contacto-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-full .contacto-info {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 768px) {
  .home-contact-full {
    padding: 70px 0 60px;
  }

  .home-contact-full .contacto-header {
    margin-bottom: 36px;
  }

  .home-contact-full .contacto-info,
  .home-contact-full .contacto-form-wrap {
    padding: 26px;
  }

  .home-contact-full .form-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-full .location-map iframe {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .home-contact-full .contacto-title {
    font-size: 34px;
  }

  .home-contact-full .contacto-subtitle {
    font-size: 16px;
  }

  .home-contact-full .contact-section-title,
  .home-contact-full .contacto-form-wrap h3 {
    font-size: 24px;
  }

  .home-contact-full .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

.home-contact-full .contact-btn,
.home-contact-full .whatsapp-link {
  width: 100%;
  justify-content: center;
}
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-float-icon {
  font-size: 18px;
  font-weight: 900;
}

.whatsapp-float-text {
  display: none;
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
