/* =============================================================
   styles-mobile.css — Paula Tirado
   Estilos exclusivos para dispositivos móviles (≤ 768 px).
   Se carga ADEMÁS de styles.css, solo en pantallas pequeñas.
   ============================================================= */

/* ─── 0. Base anti-overflow y anti-zoom ─────────────────────── */
/* overflow-x solo en html, NO en body — en Android Chrome poner overflow
   en body puede bloquear el scroll vertical de un dedo */
html {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  max-width: 100%;
}

/* Cualquier elemento que pueda sobresalir */
*:not(canvas):not(.photo-strip):not(.brands-track):not(.marquee-track) {
  max-width: 100%;
}

/* ─── 1. Tipografía base ────────────────────────────────────── */
:root {
  --nav-h: 56px;
}

/* ─── 2. NAV ────────────────────────────────────────────────── */
.nav-container {
  padding-inline: 1rem;
}
.nav-brand {
  font-size: 1.1rem;
}

/* ─── 3. HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
}
.hero-content {
  width: 100%;
  text-align: center;
}
.hero-kicker {
  font-size: .65rem;
  letter-spacing: .18em;
  margin-bottom: 1rem;
}
.hero-name {
  font-size: clamp(3.8rem, 20vw, 6rem);
  line-height: .92;
  margin-bottom: 1.2rem;
}
.hero-categories {
  font-size: .78rem;
  letter-spacing: .12em;
  margin-bottom: 2rem;
}
.hero-social {
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.hero-social-link {
  font-size: .75rem;
  padding: .55rem 1.1rem;
}
.hero-scroll-hint {
  display: none; /* en móvil no hay espacio */
}

/* ─── 4. SOBRE MÍ ───────────────────────────────────────────── */
.sobre-mi {
  padding-block: 3.5rem;
}
.sobre-mi-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.sobre-mi-figure {
  max-height: 420px;
  overflow: hidden;
  border-radius: 8px;
}
.sobre-mi-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre-mi-title {
  font-size: clamp(1.8rem, 7vw, 2.4rem);
}
.sobre-mi-bio {
  font-size: .9rem;
  line-height: 1.7;
}
.sobre-mi-image-tag {
  right: 0;
  bottom: 1rem;
}

/* ─── 5. MARQUEE ────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  max-width: 100vw;
}

/* ─── 6. FORMATOS ───────────────────────────────────────────── */
.content-types {
  padding-block: 3rem;
}
.formats-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.format-card {
  padding: 1.5rem 1.25rem;
}
.section-title {
  font-size: clamp(2rem, 8vw, 2.8rem);
}

/* ─── 7. PORTFOLIO — VÍDEOS ─────────────────────────────────── */
.portfolio {
  padding-block: 3rem;
}
.portfolio-block {
  margin-top: 2rem;
}
.tt-carousel-viewport {
  overflow: hidden;
}
.tt-slide {
  flex: 0 0 100%;
}
.tt-video-wrap {
  border-radius: 10px;
}

/* ─── 8. FOTO STRIP ─────────────────────────────────────────── */
.photo-strip-outer {
  padding: 0;
}
.photo-strip {
  height: 240px;
  gap: 6px;
  padding-left: 1rem;
  padding-right: 1rem;
  scroll-padding-left: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.photo-strip-item {
  flex: 0 0 180px;
  scroll-snap-align: start;
  border-radius: 6px;
}
.photo-strip-item img {
  border-radius: 6px;
}
/* Las esquinas-L se ocultan en móvil (no hay hover) */
.strip-corner,
.strip-outer-corner {
  display: none;
}

/* ─── 9. COLABORACIONES ─────────────────────────────────────── */
.colaboraciones {
  padding-block: 4rem 3.5rem;
}
.colaboraciones-inner {
  text-align: center;
}
.colaboraciones-title {
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  line-height: 1.15;
}
.colaboraciones-sub {
  font-size: .95rem;
}

/* ─── 10. MARCAS ────────────────────────────────────────────── */
.brands-strip-inline {
  overflow: hidden;
  max-width: 100vw;
}
.brands-heading {
  font-size: .58rem;
  padding-block: .75rem .6rem;
}

/* ─── 11. CONTACTO ──────────────────────────────────────────── */
.contacto {
  padding-block: 3rem;
}
.contacto-grid {
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contacto-title {
  font-size: clamp(2.5rem, 10vw, 3.5rem);
}
.contacto-sub {
  font-size: .9rem;
}
.contacto-social {
  gap: .75rem;
}
.contacto-social-link {
  padding: .85rem 1rem;
}
.contacto-form {
  padding: 1.75rem 1.25rem;
}
.contacto-form-title {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.form-field input,
.form-field textarea {
  font-size: 16px; /* evita zoom automático en iOS al enfocar */
}

/* ─── 12. FAB ───────────────────────────────────────────────── */
.fab {
  bottom: 1.25rem;
  right: 1.25rem;
  padding: .8rem;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  justify-content: center;
}
.fab span { display: none; }

/* ─── 13. FOOTER ────────────────────────────────────────────── */
.footer {
  padding-block: 2rem;
}
.footer-inner {
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}
.footer-social {
  gap: 1.25rem;
}

/* ─── 14. GRACIAS ───────────────────────────────────────────── */
.gracias-title {
  font-size: clamp(4rem, 18vw, 7rem);
}
.gracias-sub {
  font-size: .95rem;
}
.gracias-social {
  gap: .75rem;
}

/* ─── 15. Cursor — oculto en móvil ─────────────────────────── */
.cursor { display: none !important; }

/* ─── 16. Lightbox ──────────────────────────────────────────── */
.photo-lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}
.photo-lightbox img {
  max-width: 95vw;
  max-height: 80svh;
}

/* ─── 17. Sección headers ───────────────────────────────────── */
.section-header {
  margin-bottom: 2rem;
}
.section-kicker {
  font-size: .6rem;
  letter-spacing: .2em;
  margin-bottom: .5rem;
}

/* ─── 18. Botones ───────────────────────────────────────────── */
.btn {
  font-size: .78rem;
  padding: .7rem 1.5rem;
}
.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}
