/* =================================================
   RESPONSIVE FINAL – EL INICIO
   Mobile SOLO en dispositivos táctiles reales
   ================================================= */

/* =========================
   ESTADO BASE (DESKTOP)
   ========================= */

#mobile-menu {
  display: none;
}

.whatsapp-float {
  display: none;
}

html, body {
  overflow-x: visible;
}

/* =========================
   MOBILE REAL
   ========================= */

@media (max-width: 768px) and (pointer: coarse) {

  /* Reset seguro */
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
    max-width: 100%;
  }

  /* Ocultar menú desktop */
  nav {
    display: none !important;
  }

  /* =========================
     MENÚ MOBILE
     ========================= */
  #mobile-menu {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #eee;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
  }

  #mobile-menu a {
    display: block;
    padding: 14px;
    text-align: center;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #ccc;
    text-decoration: none;
  }

  /* Ocultar Contacto en mobile */
  #mobile-menu a[href="contact.php"] {
    display: none;
  }

  /* =========================
     LOGO
     ========================= */
  #logo {
    text-align: center;
  }

  #logo img {
    max-width: 220px;
    margin: 10px auto;
    display: block;
  }

  /* =========================
     CONTENEDORES
     ========================= */
  #main,
  #site_content {
    width: 100%;
    padding: 20px;
    overflow-x: hidden;
    animation: fadeIn .35s ease-out;
  }

  /* Tipografía base */
  body {
    font-size: 16px;
    line-height: 1.55;
  }

  /* =========================
     IMÁGENES
     ========================= */
  img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Fix ícono Facebook */
  footer img {
    width: 28px !important;
    height: 28px !important;
  }

  /* =========================
     HOME – SLIDE EN COLUMNA
     ========================= */
  ul.slideshow li {
    position: static !important;
    opacity: 1 !important;
    display: block;
    margin-bottom: 12px;
  }

  /* =========================
     NOSOTROS / CONTACTO
     ========================= */
  #left_content,
  #right_content {
    float: none !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
  }

  /* =========================
     FORMULARIO
     ========================= */
  .form_settings {
    width: 100%;
  }

  .form_settings input.contact,
  .form_settings textarea.contact {
    width: 100%;
  }

  /* =========================
     PORTFOLIO (ocultar pesado)
     ========================= */
  #gallery,
  #controls,
  #caption {
    display: none !important;
  }

  /* =========================
     WHATSAPP FLOAT
     ========================= */
  .whatsapp-float {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 15px;
    z-index: 999999;
    pointer-events: auto;
  }

  .whatsapp-float img {
    width: 112px;
    height: 112px;
    animation: whatsapp-pulse 3.5s ease-in-out infinite;
  }

  .whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(37,211,102,.18);
    filter: blur(6px);
    z-index: -1;
  }

  /* =========================
     FOOTER
     ========================= */
  footer {
    padding: 16px 10px;
    text-align: center;
  }
}

/* =========================
   AJUSTES ESPECÍFICOS ABOUT
   ========================= */

@media (max-width: 768px) and (pointer: coarse) {

  body.about #site_content h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  body.about #site_content p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* =========================
   AJUSTES ESPECÍFICOS PORTFOLIO
   ========================= */

@media (max-width: 768px) and (pointer: coarse) {

  body.portfolio #site_content h1 {
    font-size: 46px;
    margin-bottom: 12px;
  }

  body.portfolio #site_content p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* =========================
   ANIMACIONES
   ========================= */

@keyframes whatsapp-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* =================================================
   FIX DEFINITIVO: NUNCA mostrar menú mobile en desktop
   ================================================= */

@media (min-width: 769px) {
  #mobile-menu {
    display: none !important;
  }

  nav {
    display: block !important;
  }
}
