.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  font-family: 'Arial Narrow Bold', sans-serif;
  padding: 0px 0;
  box-shadow: 0 2px 5px rgba(78, 9, 189, 0.2);
  z-index: 9999;
}

/* Contenedor principal */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

/* Menú horizontal */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
  margin: 0;
  flex-grow: 1;
}

.nav-links li {
  background-color: #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(211, 209, 209, 0.15);
  transition: background-color 0.3s ease;
}

.nav-links a {
  display: block;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 16px;
  text-align: center;
}

.nav-links li:hover {
  background-color: #525ec5;
  cursor: pointer;
  color: white;
}

/* Botón hamburguesa */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  z-index: 10000;
}

/* ----------- MEDIA QUERY PARA MÓVIL ----------- */
@media (max-width: 768px) {
  .nav-container {
    padding: 15px 20px;
    justify-content: space-between;
  }

  .nav-logo {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.92);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 0;
    margin: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    z-index: 9998;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    width: 80%;
    background-color: rgba(230, 230, 230, 0.85);
    text-align: center;
    border-radius: 12px;
  }

  .nav-links a {
    font-size: 22px;
    padding: 16px 24px;
    display: block;
    color: #000;
  }

  .nav-links li:hover {
    background-color: #525ec5;
  }
}

/* Padding para evitar que el contenido quede debajo de navbar */
body {
  padding-top: 80px;
  font-family: Arial, sans-serif;
}


/* Evitar que el contenido quede debajo de navbar */
body {
  padding-top: 80px;
  font-family: Arial, sans-serif;
}


/* ==== Responsive para pantallas pequeñas ==== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 5px 0;
    width: 100%;
    text-align: center;
  }

  .logo-text {
    font-size: 16px;
  }
}

.video-section {
  max-width: 950px;  /* ancho máximo del video */
  margin: 20px auto; /* centrado horizontal y margen arriba/abajo */
  padding: 0 10px;   /* algo de espacio lateral */
}

.video-section iframe {
  width: 100%;   /* ocupa todo el ancho del contenedor */
  height: 500px; /* altura fija, puedes ajustarla */
  border: none;
  border-radius: 10px; /* opcional, para bordes suaves */
}

/* Responsive: en pantallas pequeñas el video se adapta */
@media (max-width: 768px) {
  .video-section iframe {
    height: 280px; /* menos alto en móvil */
  }
}

/* Sección bajo el video con botón de Patreon */
.intro-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5; /* opcional para mejor contraste */
}

.intro-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-content h1 {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.patreon-button {
  display: inline-block;
  background-color: #e85b46;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

.patreon-button:hover {
  background-color: #c94d3b;
}

/* Ajustes para celular: centrar el h1 arriba del botón */
@media (max-width: 768px) {
  .intro-box {
    flex-direction: column; /* apila verticalmente */
    padding: 40px 15px;
  }

  .intro-content {
    max-width: 100%;
    align-items: center; /* centra hijos */
    text-align: center;
  }

  .intro-content h1 {
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin: 0 auto;
  }

  .patreon-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}

/*aboutme */
.about-me {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f3f3f3;
}

.about-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap; /* Para móvil */
}

.foto-about-me {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-right: 1px solid #ddd;
}

.about-text {
  flex: 1;
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.about-text p {
  margin-bottom: 16px;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
    align-items: center; /* CENTRA los hijos de about-card */
  }

  .foto-about-me {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-right: none;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
    margin: 0 auto; /* CENTRA la imagen */
    display: block;
    border-radius: 10px;
  }

  .about-text {
    padding: 15px;
    text-align: center; /* Opcional: centra el texto también */
  }
}


.social-links {
  margin-top: 20px;
  text-align: center; /* Centra horizontalmente */
}

.social-links a {
  color: #555;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  color: #000;
}

.newsletter-section {
  background-color: #f7f7f7;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.newsletter-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Centra texto y botón horizontalmente */
  flex: 1;
  text-align: center;
}

.newsletter-text p {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: #333;
  font-family: Arial, sans-serif;
}

.subscribe-button {
  display: inline-block;
  background-color: #ff424d;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: Arial, sans-serif;
  margin-top: 0;
}

.subscribe-button:hover {
  background-color: #e6393e;
}

/* Responsive: apilar en móvil */
@media (max-width: 480px) {
  .newsletter-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .newsletter-image {
    margin-bottom: 15px;
  }
}

body {
  position: relative;
  z-index: 0;
}

/* Fondo con imagen y opacidad controlada */
body::before {
  content: "";
  position: fixed; /* para que cubra todo el fondo, incluso al hacer scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./imgs/white-abstract-background_23-2148804712.avif'); /* cambia esto al path correcto */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 4; /* controla la opacidad del fondo */
  z-index: -1; /* detrás de todo */
}

/* area de contacto */
.contact-page {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 30px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .form-wrapper {
  background: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.contact-page .form-wrapper:hover {
  transform: scale(1.01);
}

.contact-page .form-wrapper h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #1f2937;
}

.contact-page label {
  font-weight: 600;
  margin-top: 20px;
  display: block;
  color: #374151;
}

.contact-page input,
.contact-page select,
.contact-page textarea,
.contact-page .form-wrapper button {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 8px;
  box-sizing: border-box;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.contact-page textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botón moderno con efecto shimmer */
.contact-page .form-wrapper button {
  margin-top: 30px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(118, 75, 162, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-page .form-wrapper button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  pointer-events: none;
  border-radius: 40px;
}

.contact-page .form-wrapper button:hover {
  background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
  box-shadow: 0 12px 25px rgba(118, 75, 162, 0.6);
  transform: translateY(-4px);
}

.contact-page .form-wrapper button:hover::before {
  left: 125%;
}

@media (max-width: 480px) {
  .contact-page .form-wrapper {
    padding: 30px 20px;
  }

  .contact-page .form-wrapper h2 {
    font-size: 24px;
  }

  .contact-page .form-wrapper button {
    width: 100%;
    min-width: unset;
  }

  .contact-page label {
    text-align: left;
  }
}

/* ==============================
   Estilos principales solo para la página videos
   ============================== */

/* ===== Estilos Generales ===== */

body.videos main {
  max-width: 1400px; /* aumentado */
  margin: 40px auto 80px auto;
  padding: 0 30px; /* aumentado */
  color: #1f2937;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  box-sizing: border-box;
}

body.videos main h1 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #1f2937;
  margin-bottom: 0.6em;
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
  padding-left: 0;
}

body.videos main h2 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #000000;
  margin-top: 0;
  margin-bottom: 1.4em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #a5b4fc;
  padding-bottom: 6px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.videos main p {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 40px;
}

body.videos main a {
  color: #ef4444;
  text-decoration: underline;
  font-weight: 600;
}

/* ===== Grid para videos ===== */

body.videos .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* En pantallas grandes, limitar a 3 columnas pero más grandes */
@media (min-width: 1024px) {
  body.videos main {
    max-width: 1400px;
    padding: 0 30px;
  }

  body.videos .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  body.videos .video-card {
    border-radius: 12px;
  }

  body.videos .video-thumbnail {
    border-radius: 12px;
    aspect-ratio: 16 / 10; /* más grande visualmente */
  }
}

/* Estilo individual para cada tarjeta de video */
body.videos .video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

body.videos .video-card:hover {
  transform: scale(1.03);
}

body.videos .video-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ===== Overlay texto "Ver en YouTube" ===== */
body.videos .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ===== Botón de YouTube ===== */
body.videos .youtube-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff0000;
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
  user-select: none;
  max-width: 300px;
  margin: 0 auto 40px auto;
  box-sizing: border-box;
  gap: 10px;
}

body.videos .youtube-button:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
}

body.videos .youtube-button img {
  height: 24px;
  margin-right: 10px;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  body.videos main {
    margin: 30px 15px 60px 15px;
  }

  body.videos main h1 {
    font-size: 1.8rem;
  }

  body.videos main h2 {
    font-size: 1.2rem;
  }

  body.videos .video-grid {
    gap: 16px;
  }

  body.videos .youtube-button {
    font-size: 13px;
    padding: 10px 18px;
    max-width: 200px;
    margin: 20px auto 40px auto;
    gap: 6px;
  }

  body.videos .youtube-button img {
    height: 18px;
  }
}

@media (max-width: 480px) {
  body.videos main p {
    font-size: 15px;
  }

  body.videos main h1 {
    font-size: 1.6rem;
  }

  body.videos main h2 {
    font-size: 1rem;
  }

  body.videos .youtube-button {
    font-size: 12px;
    padding: 8px 16px;
    max-width: 180px;
    gap: 5px;
  }

  body.videos .youtube-button img {
    height: 16px;
  }
}



/* galería */
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Títulos y párrafo para que se vean elegantes solo en esta página */
body.gallery-page main h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #2c2c2c;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.gallery-page main p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive para móviles */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    padding: 0 10px;
  }
}

onlyfans-button-container {
  text-align: center;
  margin: 40px 0;
}

.onlyfans-button {
  display: inline-block;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 65, 108, 0.3);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.onlyfans-button:hover {
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 65, 108, 0.5);
}

/* Main Blog Layout */
main {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #fafafa;
}

/* Header Image */
main > img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Intro Title and Paragraph */
main h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #00695c;
}

main p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-intro {
  background: linear-gradient(135deg, #e0f7fa, #fffde7);
  padding: 80px 30px;
  border-radius: 24px;
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease-out;
}

.intro-text h1 {
  font-size: 2.6rem;
  color: #004d40;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.intro-text p {
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Simple fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-intro {
    padding: 60px 20px;
  }

  .intro-text h1 {
    font-size: 1.8rem;
  }

  .intro-text p {
    font-size: 1rem;
  }
}


/* BLOG POSTS (already styled) */
.blog-post {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 20px;
  transition: transform 0.2s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.blog-post h2 {
  font-size: 1.6rem;
  color: #004d40;
  margin-bottom: 10px;
}

.blog-post a {
  color: #00897b;
  text-decoration: none;
  font-weight: bold;
}

.blog-post a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .intro-text {
    padding: 20px;
  }

  .intro-text h1 {
    font-size: 1.5rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .blog-post h2 {
    font-size: 1.3rem;
  }
}
.blog-article {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  color: #333;
}

.article-header h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #004d40;
}

.article-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 1rem;
  color: #00897b;
  text-decoration: none;
  font-weight: bold;
}

.back-link:hover {
  text-decoration: underline;
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  color: #00695c;
}

.article-paragraph {
  margin-bottom: 30px;
}

.article-image {
  margin: 30px 0;
}

.article-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}
 

body.videos main > div {
  display: flex !important;
  justify-content: center !important;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .intro-box {
    flex-direction: column;
    padding: 40px 15px;
  }

  .intro-content {
    align-items: center; /* centra el contenido dentro */
    text-align: center;
  }

  .intro-content h1 {
    font-size: 20px;
  }

  .patreon-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}