﻿/* BASE COMUN GUCCI RÚSTICO REFINADO */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Lora:wght@400;600&family=Playfair+Display:wght@500;700&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefaf6;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  scroll-behavior: smooth;
}

/* HEADER */
.header-supremo {
  background-color: #fff8f4;
  border-bottom: 1px solid #ddd;
  padding: 20px 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.06);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-header {
  height: 65px;
  max-width: 200px;
  transition: transform 0.3s ease;
}

.logo-header:hover {
  transform: scale(1.05);
}

/* MENÚ */
.menu-principal ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.menu-principal ul li a {
  text-decoration: none;
  color: #4b1e1e;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.menu-principal ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #a61c3c;
  transition: width 0.3s ease;
}

.menu-principal ul li a:hover::after,
.menu-principal ul li a.activo::after {
  width: 100%;
}

.menu-principal ul li a:hover {
  color: #a61c3c;
}

/* IDIOMAS */
.idiomas img {
  width: 28px;
  height: auto;
  margin-left: 8px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.idiomas img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(166, 28, 60, 0.4);
}

.whatsapp-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-flotante img {
  width: 58px;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-flotante img:hover {
  transform: scale(1.12);
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}


/* FOOTER */
.footer-mendoza {
  background-color: #f9f4f0;
  padding: 30px 10px;
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  font-family: 'Lora', serif;
  border-top: 1px solid #ddd;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  margin-top: 60px;
}

/* ICONOS SOCIALES HORIZONTALES (FLOTANTES) */
.iconos-sociales-fijos-horizontales {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.iconos-sociales-fijos-horizontales img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0.95);
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}

.iconos-sociales-fijos-horizontales img:hover {
  filter: brightness(1.25) drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-principal ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .logo-header {
    height: 55px;
  }

  .whatsapp-float img {
    width: 50px;
  }

  .iconos-sociales-fijos-horizontales {
    bottom: 15px;
    left: 15px;
    gap: 8px;
  }

  .iconos-sociales-fijos-horizontales img {
    width: 24px;
    height: 24px;
  }
}
/* 🔥 CORRECCIÓN DEFINITIVA DEL FOOTER */
footer.footer-gucci {
  width: 100%;
  background-color: #f5f5f5 !important;
  border-top: 1px solid #ccc;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 0;
}

.footer-texto p {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #444;
  margin: 0;
}
.bloque-portada-gucci {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}


.bloque-portada-gucci img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}


@media (max-width: 768px) {
  .bloque-portada-gucci {
    height: 360px;
  }
}

section.banner-inicio.banner-comodidades {
  background-color: #000;
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

section.banner-inicio.banner-comodidades img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
}
/* 💎 CONTROL UNIVERSAL DEL BANNER INICIO */
section.banner-inicio {
  height: 460px !important;
  overflow: hidden !important;
  position: relative !important;
}

section.banner-inicio img.banner-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width: 768px) {
  section.banner-inicio {
    height: 340px !important;
  }
}
/* ✨ UNIFICADOR UNIVERSAL DE ALTURA DE BANNERS */
.bloque-portada-gucci,
section[class*="banner-"] {
  height: 420px !important;
  overflow: hidden !important;
  position: relative !important;
}

.bloque-portada-gucci img,
section[class*="banner-"] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width: 768px) {
  .bloque-portada-gucci,
  section[class*="banner-"] {
    height: 300px !important;
  }
}
/* 💎 BLOQUE MATRIZ PUICOT ∞ — ALTURA UNIFICADA TOTAL DE BANNERS */
section[class^="banner-"],
section[class*=" banner-"],
.bloque-portada-gucci {
  height: 420px !important;
  max-height: 420px !important;
  overflow: hidden !important;
  position: relative !important;
}

section[class^="banner-"] img,
section[class*=" banner-"] img,
.bloque-portada-gucci img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width: 768px) {
  section[class^="banner-"],
  section[class*=" banner-"],
  .bloque-portada-gucci {
    height: 300px !important;
    max-height: 300px !important;
  }
}
/* FIX UNIVERSAL WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  display: block !important;
}

.whatsapp-float img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25) !important;
  object-fit: contain !important;
  display: block !important;
}
/* === PUICOT_RESPONSIVO_TOTAL_∞ === */
/* QuickCut responsivo global 2025 · Estilo Guccico Refinado */

@media (max-width: 768px) {

  /* GENERAL */
  body {
    padding: 12px;
    font-size: 16px;
    line-height: 1.65;
    font-family: 'Playfair Display', serif;
    background-color: #fffaf8;
    color: #333;
  }

  section {
    padding: 30px 12px;
  }

  /* IMÁGENES & VIDEOS */
  img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    object-fit: cover;
  }

  /* TÍTULOS */
  h1, h2, h3, h4 {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
    margin: 18px auto 12px auto;
    letter-spacing: 0.4px;
  }

  /* PÁRRAFOS */
  p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
    padding: 0 6px;
    margin-bottom: 18px;
  }

  /* GALERÍAS SIMPLES */
  .galeria img,
  .fotos-destacadas img,
  .foto-contacto-destacada img {
    margin: 0 auto 20px auto;
    border-radius: 14px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  }

  /* BOTÓN WHATSAPP */
  .boton-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    z-index: 999;
    transform: scale(0.9);
  }

  /* MENÚ HORIZONTAL */
  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 20px 0;
    gap: 14px;
  }

  nav ul li {
    list-style: none;
    font-size: 1.1rem;
    font-weight: 500;
  }

  /* VIDEOS */
  .video-thumbnail {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 20px auto;
  }

  /* BLOQUES EXTERNOS */
  .bloque-contacto,
  .atajo-contacto {
    padding: 16px;
    background-color: #fdf9f4;
    border-radius: 10px;
    margin: 24px auto;
    box-shadow: 0 0 6px rgba(0,0,0,0.04);
  }

  /* EVITAR SCROLL LATERAL */
  html, body {
    overflow-x: hidden;
  }

}
.imagen-portada {
  width: 100% !important;
  max-width: 1920px !important;
  height: auto !important;
  max-height: 600px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto !important;
}  
