:root {
  --font-main: "Big Shoulders Display", sans-serif;
  --font-subtitles: "DM Sans", sans-serif;
  --pink: #ff3eb5;
  --white: #ffffff;
}

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

body {
  font-family: var(--font-main);
  background-image: url("assets/fondo.png");
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* ─── LOGO ─── */
.logo-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.logo-tagline {
  font-family: var(--font-subtitles);
  font-size: clamp(14px, 4.5vw, 38px);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: clamp(72px, 13vw, 120px);
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
  text-align: left;
  text-shadow: 0 0 50px #000000;
}

/* ─── SECCIÓN ─── */
.seccion {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.seccion__titulo {
  width: 100%;
  font-size: clamp(28px, 8vw, 52px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.seccion__imagen {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.seccion__img-wrapper {
  position: relative;
  width: 100%;
}

.seccion__titulo--overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  width: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ─── BOTONES FLOTANTES ─── */
.whatsapp-float {
  position: fixed;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.whatsapp-float {
  background: #25d366;
  bottom: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ─── LIGHTBOX ─── */
.seccion__imagen {
  cursor: zoom-in;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox--active {
  display: flex;
}

.lightbox__img {
  max-width: 98vw;
  max-height: 98vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
}

/* ─── FOOTER ─── */
.footer {
  background-color: transparent;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  font-family: var(--font-main);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__brand-title {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  padding-bottom: 1rem;
  display: block;
  line-height: 1;
}

.footer__brand-tagline {
  font-family: var(--font-subtitles);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
}

.footer__section-title {
  font-family: var(--font-main);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.footer__list a {
  font-family: var(--font-subtitles);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--pink);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__contact a {
  font-family: var(--font-subtitles);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer__contact a svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact a:hover {
  color: var(--pink);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }
}

.footer__copy {
  font-family: var(--font-subtitles);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

