/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://example.com/generatepress-child/
 Description:  Mi tema hijo para GeneratePress
 Author:       Tu Nombre
 Author URI:   https://example.com
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  generatepress_child
*/
/*
Theme Name: GeneratePress Child
Template: generatepress
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
.video-thumbnail-wrapper {
  position: relative;
  display: inline-block;
}

.video-thumbnail-wrapper img {
  display: block;
  border-radius: 10px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.mobile-only-label {
  display: none;
  font-size: 14px;
  margin-bottom: 6px;
  color: #7e0f25;
  font-weight: 500;
}

@media (max-width: 768px) {
  .mobile-only-label {
    display: block;
  }
}
.carousel-row {
  display: flex;
  overflow: hidden;
  gap: 20px;
  margin: 20px 0;
}
.carousel-row a {
  display: inline-block;
  animation: scroll-horizontal 8s linear infinite;
}

.marquee {
   animation: marquee 15s linear infinite;
}

.marquee.reverse {
  animation-direction: reverse;
}

.marquee img {
  height: 180px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s;
}

.marquee img:hover {
  transform: scale(1.05);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.full-gallery-section {
  padding: 60px 20px;
  background: #f9f9f9; /* fondo claro suave */
  color: #111;
  overflow-x: hidden;
}

.section-main-title {
  font-size: 2.5rem;
  color: #7e0f25;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

.fcl-line-divider {
  width: 80px;
  height: 4px;
  background: #cba135;
  margin: 20px auto;
  border-radius: 5px;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-item-full {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: #fff;
}

.gallery-item-full:hover {
  transform: scale(1.025);
  box-shadow: 0 10px 30px rgba(203, 161, 53, 0.2);
}

.gallery-item-full img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item-full:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-full:hover .item-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 40px;
  height: 40px;
  fill: #cba135;
}
.contact-form-col {
  padding-bottom: 4rem; /* o más si lo deseas más separado */
}
.footer-socials {
  text-align: center;
  margin: 2rem 0;
}

.footer-socials a {
  display: inline-block;
  margin: 0 12px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
  color: #cba135;
}

.footer-socials svg {
  animation: bounce 1.5s infinite ease-in-out;
}

.footer-socials a:nth-child(1) svg {
  animation-delay: 0s;
}
.footer-socials a:nth-child(2) svg {
  animation-delay: 0.2s;
}
.footer-socials a:nth-child(3) svg {
  animation-delay: 0.4s;
}
.footer-socials a:nth-child(4) svg {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Typewriter Effect */
.typewriter {
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  width: 0;
  margin-top: 1rem;
  animation: 
    typing 4s steps(40, end) 1s forwards, 
    blink 0.7s step-end 6,
    remove-cursor 0s forwards 6.2s; /* quita el cursor después de todo */
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

@keyframes remove-cursor {
  to { border-right: none; }
}

[data-aos] {
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}
.fcl-license-box {
  background-color: #fff9f0;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(203, 161, 53, 0.15);
  margin-top: 3rem;
  text-align: center;
}

.fcl-license-box .licensed-icon {
  margin-bottom: 1rem;
}

.fcl-license-box {
  background-color: #fffdf9;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid #cba13520; /* dorado translúcido */
  margin-top: 3rem;
  text-align: center;
}

.fcl-license-box p {
  color: #1c1c1c;
}
.standout-cta {
  background: linear-gradient(135deg, #fce4ec, #fff3e0); /* rosado claro a durazno */
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(126, 15, 37, 0.2); /* sombra suave con el vino */
  text-align: center;
  margin: 4rem 0;
  transition: transform 0.3s ease;
}

.standout-cta:hover {
  transform: translateY(-4px);
}

.standout-cta h3 {
  font-size: 2rem;
  color: #c2185b; /* rosa fuerte, sin ser dorado */
  margin-bottom: 0.5rem;
}

.standout-cta p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.fcl-button.fcl-button-alt {
  background-color: #c2185b;
  color: #fff;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
  display: inline-block;
}

.fcl-button.fcl-button-alt:hover {
  background-color: #ad1457;
  text-decoration: none;
}
.fcl-button-cta {
  background-color: #7e0f25;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(126, 15, 37, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.fcl-button-cta:hover {
  background-color: #a01739;
  transform: translateY(-2px);
}
.circle-icon {
  width: 60px;
  height: 60px;
  background-color: #7e0f25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  box-shadow: 0 0 10px rgba(126, 15, 37, 0.4);
}

.icon-hover-bounce:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 20px rgba(126, 15, 37, 0.6);
}

.contact-direct-item-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.contact-direct-item-modern:hover {
  transform: translateY(-5px);
}

.contact-label {
  font-weight: bold;
  color: #333;
  margin-bottom: 0.3rem;
}
/* ===============================
   FORMULARIOS PERSONALIZADOS
   =============================== */
   /* Moderniza fondo, transición y bordes del menú móvil */
   /* Estilo personalizado para el botón hamburguesa en móvil */
   /* Estilo general del input */

/* Mostrar solo en pantallas pequeñas (móviles) */
/* Contenedor con ícono */

.footer-credit-line {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 10px 15px;
  background-color: #111;
  color: #aaa;
}

.footer-credit-line a {
  color: #cba135;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit-line a:hover {
  color: #fff;
}

.footer-credit-line strong {
  color: #fff;
  font-weight: 700;
}
.datepicker-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Input con espacio a la izquierda en móvil */
@media (max-width: 768px) {
  .datepicker-wrapper input {
    padding-left: 44px;
  }

  .datepicker-icon {
    display: flex;
  }
}

/* Ícono oculto por defecto (desktop) */
.datepicker-icon {
  position: absolute;
  left: 14px;
  top: 50%; /* añade esto */
  transform: translateY(-50%); /* centra verticalmente */
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Estilo del input (ya lo tienes, solo asegúrate que no se duplique) */
.custom-input {
  border: 2px solid #cba135;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  width: 100%;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 8px rgba(203, 161, 53, 0.2);
  transition: box-shadow 0.3s ease;
  height: 52px;
  box-sizing: border-box;
}

/* Placeholder visible en todos los dispositivos */
.custom-input::placeholder {
  color: #999;
  opacity: 1;
  font-family: 'Montserrat', sans-serif;
}




   .datepicker-warning {
  display: none;
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 4px;
}

.invalid-datepicker {
  border: 2px solid #c0392b !important;
  box-shadow: 0 0 5px rgba(192, 57, 43, 0.5) !important;
}




.custom-input:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(203, 161, 53, 0.4);
}
.datepicker.custom-input {
  border: 2px solid #cba135;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  width: 100%;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 8px rgba(203, 161, 53, 0.2);
  transition: box-shadow 0.3s ease;
}

.datepicker.custom-input:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(203, 161, 53, 0.4);
}

/* Estilo del calendario */
.flatpickr-calendar {
  background-color: #111;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #cba135;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(0,0,0,0.6);
}

/* Cabecera del calendario */
.flatpickr-months {
  background-color: #222;
  color: #cba135;
}

/* Días seleccionados */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #cba135;
  color: #000;
  border: none;
}

/* Hover */
.flatpickr-day:hover {
  background: #cba13544;
  border-radius: 6px;
  color: #fff;
}

/* Días no disponibles */
.flatpickr-day.disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #666;
  background: transparent;
  cursor: not-allowed;
}
/* Estilo uniforme del placeholder */
.datepicker.custom-input::placeholder {
  color: #999;
  opacity: 1;
  font-family: 'Montserrat', sans-serif;
}

/* Ajuste de altura uniforme */
.datepicker.custom-input {
  height: 52px; /* ajusta si tus otros inputs usan otro alto */
  line-height: 1.4;
  box-sizing: border-box;
}
   
   .fcl-line-divider-animated {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #7e0f25, #e0c48f, #7e0f25); /* borgoña y dorado */
  margin: 50px 0;
  animation: shimmer 4s infinite linear;
  opacity: 0.6;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
   
.contact-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-link {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.tab-link.active {
  background-color: #7e0f25; /* vino tinto */
  color: white;
}

.tab-link:not(.active) {
  background-color: #444;
  color: white;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .contact-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-link {
    width: 100%;
    text-align: center;
  }
}   
   
.menu-toggle {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.menu-toggle .gp-icon {
    color: #000; /* o #80002a si deseas usar el vino tinto del branding */
}
   
.main-navigation.toggled {
  background: #1f1f1f;
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border-radius: 0 0 16px 16px;
  transition: all 0.3s ease;
}

/* Quita bordes y mejora paddings en items */
.main-navigation.toggled .main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-navigation.toggled .main-nav ul li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-navigation.toggled .main-nav ul li a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  transition: background 0.3s ease;
}

.main-navigation.toggled .main-nav ul li a:hover {
  background: rgba(255,255,255,0.1);
  color: #ffdf70;
}

/* Mejora botón hamburguesa */
.menu-toggle {
    background: transparent !important;
    border: none;
    padding: 0 !important;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
}

.menu-toggle .gp-icon {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: auto;
    height: auto;
    color: #7e0f25 !important; /* color vino */
}

.menu-toggle .gp-icon svg {
    width: 28px;
    height: 28px;
    stroke: #7e0f25;
    stroke-width: 2.5;
    transition: transform 0.2s ease;
}

.menu-toggle .gp-icon svg:hover {
    transform: scale(1.1) rotate(90deg);
}

/* Alternativa con fondo claro */
@media (max-width: 768px) {
  .main-navigation.toggled {
    background: white;
    color: #1f1f1f;
  }

  .main-navigation.toggled .main-nav ul li a {
    color: #1f1f1f;
  }

  .main-navigation.toggled .main-nav ul li a:hover {
    background: #f3f3f3;
    color: #7e0f25;
  }

  .menu-toggle {
    color: #7e0f25;
  }
}
   
   .experience-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.experience-media {
  flex: 1;
}

.experience-text {
  flex: 1;
}

/* Estilos para móvil */
@media (max-width: 768px) {
  .experience-grid {
    flex-direction: column;
  }

  /* Forzar que imagen vaya primero en sección 1 */
  .flair-section .experience-media {
    order: -1;
  }

  /* Revertir en sección 2 si es necesario */
  .reverse-grid {
    flex-direction: column-reverse;
  }

  .experience-media img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .experience-text {
    padding: 0 1rem;
    text-align: center;
  }

  .primary-button {
    margin-top: 1.5rem;
  }
}
   
.form-title-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.form-title-with-icon .contact-icon {
  width: 28px;
  height: auto;
}

.contact-icon {
    display: block;
    margin: 10px auto 30px auto;
    width: 38px;
}
  .custom-contact-form button.card-button {
    margin-top: 10px;
    margin-bottom: 20px;
} 
   
 .tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-link {
    background-color: #444;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.tab-link.active {
    background-color: #6F122D;
    color: #fff;
}  
   
   .form-media-wrapper {
    text-align: center;
    margin-bottom: 20px;
}
.contact-direct-item svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
    fill: #6F122D; /* O el color que uses para íconos */
}

.contact-direct-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.contact-direct-item-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 260px;
}

.circle-icon {
  background-color: #7e0f25;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-direct-item-modern a {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  text-decoration: none;
}

.contact-direct-item-modern a:hover {
  text-decoration: underline;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.contact-icon {
    width: 80px;
    height: auto;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.05);
}
.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.custom-contact-form label {
    font-weight: 600;
    color: #1C1C1C;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.custom-contact-form input,
.custom-contact-form textarea {
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    border-color: #D8A95A;
    box-shadow: 0 0 0 3px rgba(216, 169, 90, 0.2);
    outline: none;
}

.custom-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botón */
.custom-contact-form button.card-button {
    background-color: #6F122D;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.custom-contact-form button.card-button:hover {
    background-color: #4e0c1f;
}

/* Mensajes */
.form-success,
.form-error {
    font-family: 'Montserrat', sans-serif;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.form-success {
    background-color: #e6f7ec;
    color: #2d6a4f;
    border-left: 4px solid #2d6a4f;
}

.form-error {
    background-color: #fce8e6;
    color: #a31616;
    border-left: 4px solid #a31616;
}
.fcl-line-divider {
  width: 60px;
  height: 4px;
  margin: 12px auto;
  background: linear-gradient(to right, #7e0f25, #d9a8b0);
  border-radius: 6px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .custom-contact-form button.card-button {
        width: 100%;
        text-align: center;
    }
}
.experience-section {
    padding: 80px 0;
}

.flair-section {
    background-color: #ffffff;
}
.masterclass-section {
    background-color: #f9f9f9;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-grid.reverse-grid .experience-text {
    order: 2;
}
.experience-grid.reverse-grid .experience-media {
    order: 1;
}

.experience-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #6F122D;
    margin-top: -10px;
    margin-bottom: 30px;
}

.experience-text p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.8;
}

.experience-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1C1C1C;
    margin-top: 30px;
    margin-bottom: 15px;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}
.styled-list li {
    font-family: 'Montserrat', sans-serif;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}
.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D8A95A;
    font-weight: bold;
}

.section-header.experiences-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.experience-media img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.primary-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background-color: #6F122D;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.primary-button:hover {
    background-color: #54101f;
}

/* Responsive */
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-grid.reverse-grid .experience-text,
    .experience-grid.reverse-grid .experience-media {
        order: initial;
    }
}

.full-gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}
.full-gallery-section .section-container {
    width: 100%;
    max-width: 1200px;
    padding: 60px 60px; /* más equilibrio horizontal */
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: #fff;
    color: #1C1C1C;
    border: 1px solid #ccc;
    padding: 10px 22px;
    margin: 5px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.filter-btn:hover {
    background: #eee;
}

.filter-btn.active {
    background: #6F122D;
    color: #fff;
    border-color: #6F122D;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    
    gap: 20px;
}

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-full:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.gallery-item-full:hover .item-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    fill: #fff;
}
/* ==========================================================================
   ABOUT US – SECCIÓN MODERNA Y ANIMADA
   ========================================================================== */
   #team-modal {
  max-width: 800px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.team-modal-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-member {
  width: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.team-member h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.95rem;
  color: #ddd;
}
   
.fcl-about-us-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.fcl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.fcl-about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1em;
  color: #333;
}

.fcl-about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fcl-license-box {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.12); /* Transparencia */
  backdrop-filter: blur(16px); /* Efecto de desenfoque */
  -webkit-backdrop-filter: blur(16px); /* Compatibilidad Safari */
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); /* Suave profundidad */
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.25); /* Borde tenue */
}

.fcl-license-icon svg {
  flex-shrink: 0;
  color: #7e0f25;
}

.fcl-license-text h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}

.fcl-license-text p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .fcl-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fcl-license-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.about-us-page {
    padding: 100px 0;
    background: #fff;
    animation: fadeIn 1s ease;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    animation: fadeSlide 1.2s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-intro-image img:hover {
    transform: scale(1.02);
}

.about-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1C1C1C;
    margin-bottom: 20px;
}

.about-intro-text p {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* LICENCIA E INSURANCE */
.licensed-insured-section {
    background-color: #FDF7F1;
    border-left: 6px solid #D8A95A;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    animation: fadeSlide 1.2s ease 0.3s both;
}

.licensed-icon svg {
    width: 60px;
    height: 60px;
    color: #D8A95A;
    flex-shrink: 0;
}

.licensed-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #1C1C1C;
}

.licensed-text p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image {
        order: -1;
        margin-bottom: 20px;
    }

    .licensed-insured-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .licensed-icon svg {
        margin-bottom: 20px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* === CTA antes del footer === */
.pre-footer-cta {
    background: #1C1C1C;
    color: #fff;
    padding: 5rem 1rem;
    text-align: center;
}
.pre-footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.pre-footer-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.85;
}
.pre-footer-cta .fcl-button {
    background-color: #D8A95A;
    color: #1C1C1C;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}
.pre-footer-cta .fcl-button:hover {
    background-color: #fff;
}

/* === Footer con redes sociales === */
.site-info {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #111;
    color: #ccc;
}
.footer-socials {
    margin-bottom: 1rem;
}
.footer-socials a {
    display: inline-block;
    margin: 0 12px;
    color: #ccc;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    color: #D8A95A;
    transform: scale(1.15) translateY(-5px);
}
.footer-socials svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
/* ==========================================================================
   ESTILOS GLOBALES (Para todas las pantallas: PC, Tablet y Móvil)
   ========================================================================== */
/* ==========================================================================
   MODAL DE RESERVA – DISEÑO LLAMATIVO Y MODERNO
   ========================================================================== */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(34,34,34,0.85));
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.booking-modal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    animation: slideUp 0.4s ease;
    border: 1px solid #eee;
}

@keyframes slideUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}
.close-modal:hover {
    color: #1C1C1C;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: #1C1C1C;
    letter-spacing: 1px;
}

.modal-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal-form-wrapper input,
.modal-form-wrapper textarea,
.modal-form-wrapper select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    transition: border 0.3s ease;
}
.modal-form-wrapper input:focus,
.modal-form-wrapper textarea:focus,
.modal-form-wrapper select:focus {
    border-color: #6F122D;
    outline: none;
}

.modal-form-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-form-wrapper .ff-btn-submit {
    background: linear-gradient(45deg, #6F122D, #a6183c);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-form-wrapper .ff-btn-submit:hover {
    background: linear-gradient(45deg, #54101f, #801b33);
}
.experiences-section {
    background-color: #f8f8f8;
}

.logo-scroller-section {
    background-color: #ffffff;
}

.gallery-section {
    background-color: #f3f3f3;
}
.gallery-section {
    padding: 6rem 1rem;
    background-color: #f9f9f9;
}

.section-main-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1C1C1C;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    grid-auto-rows: 240px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.card-button {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #6F122D;
    text-decoration: none;
    border: 2px solid #6F122D;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.card-button:hover {
    background-color: #6F122D;
    color: #fff;
}

/* Responsive: en pantallas pequeñas todas las imágenes ocupan 1 columna */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item.large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}
.experiences-section {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
}

.section-main-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1C1C1C;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.experience-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1C1C1C;
}

.card-content p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-button {
    align-self: start;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #6F122D;
    border: 2px solid #6F122D;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-button:hover {
    background-color: #6F122D;
    color: #fff;
}
/* Pantalla completa y centrado */
/* === Fancybox Slide y Video === */
.fancybox__slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* fondo semi-transparente */
  backdrop-filter: blur(10px); /* efecto cristal */
  -webkit-backdrop-filter: blur(10px); /* soporte iOS */
  border-radius: 16px;
}

/* Video vertical centrado y fullscreen-style */
.fancybox__slide video {
  height: 80vh;
  width: auto;
  max-height: 80vh;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  background-color: #000;
}
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px);
}

/* Fondo oscuro elegante */
.fancybox__container {
  background-color: #000 !important;
}

/* Ocultar elementos innecesarios para estilo limpio */
.fancybox__thumbs,
.fancybox__caption,
.fancybox__nav,
.fancybox__toolbar:not(.has-close-button) {
  display: none !important;
}

/* Mostrar solo botón de cerrar */
.fancybox__toolbar {
  background: none !important;
  position: fixed;
  top: env(safe-area-inset-top, 20px);
  right: env(safe-area-inset-right, 20px);
  z-index: 9999;
  padding: 0;
}

/* Estilo moderno para botón de cerrar */
.fancybox__toolbar .fancybox__button--close {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.fancybox__toolbar .fancybox__button--close:hover {
  background: rgba(255, 255, 255, 0.3);
}
/* Asegura fondo oscuro en todos los niveles posibles */
.fancybox__container,
.fancybox__slide,
.fancybox__backdrop,
.fancybox__content,
.fancybox__content > * {
  background-color: #000 !important;
  background: #000 !important;
}

/* Bloquear scroll del fondo al abrir modal */
body.fancybox-active {
  overflow: hidden;
}

/* === Hero Section Styles (sin cambios estructurales) === */
.fcl-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.fcl-video-bg {
  z-index: 1;
}

.fcl-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
}

.fcl-slogan,
.fcl-subtitle,
.fcl-button,
.fcl-instagram-link {
  font-family: 'Montserrat', sans-serif;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fcl-content-wrapper > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}
.fcl-title { animation-delay: 0.2s; }
.fcl-subtitle { animation-delay: 0.4s; }
.fcl-button { animation-delay: 0.6s; }
.fcl-instagram-link { animation-delay: 0.8s; }

.fcl-button {
  border-radius: 8px; /* <-- esto da los bordes redondeados */
}




/* --- Estilos del Footer --- */
.copyright-bar {
    font-size: 0.65rem;
}
/* Contenedor central para el contenido de las secciones */

.section-container {
    max-width: 1200px; /* Ancho máximo del contenido */
    margin-left: auto;  /* Centra el contenedor */
    margin-right: auto;
    padding-left: 20px;  /* Espaciado para pantallas pequeñas */
    padding-right: 20px;
}


/* ========= SECCIÓN DE CARRUSEL DE VIDEOS ========= */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-scroller-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.scroller-title,
.section-main-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  color: #111;
  font-family: 'Montserrat', sans-serif;
}

.logo-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 1rem 0;
}

.logo-scroller::-webkit-scrollbar {
  display: none;
}

.logo-scroller-inner {
  display: inline-flex;
  gap: 2rem;
  padding: 1rem 0;
  animation: scroll-logos 60s linear infinite;
}

.logo-scroller-inner:hover {
  animation-play-state: paused;
}

.logo-scroller-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.logo-scroller-inner a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.logo-scroller-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

/* Animación para escritorio */
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-scroller-section {
    padding: 2rem 1rem;
  }

  .scroller-title {
    font-size: 1.3rem;
    text-align: left;
    padding-left: 1rem;
  }

  .logo-scroller {
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem;
    scroll-padding: 1rem;
    max-width: 100vw;
    margin: 0 auto;
  }

  .logo-scroller-inner {
    display: contents;
    padding: 0;
    animation: none; /* Detenemos la animación en móviles */
  }

  .logo-scroller-inner a {
    flex: 0 0 65%;
    max-width: 75%;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
  }

  .logo-scroller-inner img {
    height: 100%;
    object-fit: cover;
  }
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ==========================================================================
   ESTILOS PARA EL MENÚ DE ESCRITORIO MODERNO
   ========================================================================== */
@media (min-width: 769px) {
    .custom-input::placeholder {
  color: #999 !important; /* o el color que quieras */
  opacity: 1 !important;
}

    /* --- Estilo general de los enlaces del menú --- */
    .main-navigation .main-nav ul li a {
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 0.9rem;
        padding-left: 20px;
        padding-right: 20px;
        transition: color 0.3s ease;
        position: relative;
        color: #6F122D;
    }

    /* Color al pasar el ratón */
    .main-navigation .main-nav ul li a:hover {
        color: #D8A95A;
    }

    /* --- Animación de línea al pasar el ratón (Hover) --- */
    .main-navigation .main-nav ul li a::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 15px;
        left: 0;
        background-color: #D8A95A;
        transform-origin: bottom right;
        transition: transform 0.3s ease-out;
    }

    .main-navigation .main-nav ul li a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    /* --- Estilo del Botón CTA (Llamada a la Acción) --- */
    .main-navigation .main-nav ul li.menu-button-cta a {
        background-color: #D8A95A;
        color: #1C1C1C;
        border: 2px solid #D8A95A;
        border-radius: 5px;
        padding: 10px 25px !important;
        transition: all 0.3s ease;
    }

    .main-navigation .main-nav ul li.menu-button-cta a:hover {
        background-color: transparent;
        color: #D8A95A;
    }

    /* Quitamos la animación de la línea para el botón CTA */
    .main-navigation .main-nav ul li.menu-button-cta a::after {
        display: none;
    }

}




/* ==========================================================================
   ESTILOS PARA DISPOSITIVOS MÓVILES (768px o menos)
   ========================================================================== */
@media (max-width: 768px) {
    /* --- NUEVO: Diseño Hero en Móvil: Video Fullscreen --- */
    .fcl-hero-container {
        height: 100vh;
        position: relative;
    }
    .fcl-hero-video-col,
    .fcl-hero-content-col {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .fcl-hero-video-col {
        z-index: 1;
    }
    .fcl-hero-content-col {
        z-index: 2;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fcl-title {
        font-size: 3rem;
    }
    .fcl-slogan {
        font-size: 1rem;
    }

    /* --- Estilos para Menú Moderno Fullscreen --- */
    #mobile-menu.toggled {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(28, 28, 28, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #mobile-menu .inside-navigation {
        width: 100%;
    }
    #mobile-menu .main-nav>ul {
       display: flex;
       flex-direction: column;
       align-items: center;
    }
    #mobile-menu .main-nav>ul>li>a {
        color: #FFFFFF;
        font-size: 1.8rem;
        padding: 1rem 0;
        letter-spacing: 1px;
    }
    .menu-toggle, .menu-toggle:hover, .menu-toggle:focus {
       color: #FFFFFF;
    }
    .main-navigation.toggled .menu-toggle:before {
        color: #D8A95A;
    }

    /* --- Visibilidad de Logos en Móvil --- */
    .mobile-menu-logo {
        display: none;
    }
    .main-navigation.toggled .mobile-menu-logo {
        display: block;
    }
    #masthead .site-logo {
        transition: opacity 0.3s ease-in-out;
    }
    body.mobile-menu-open #masthead .site-logo {
        opacity: 0 !important;
        visibility: hidden !important;
    }
    .fcl-fancybox-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}
.fcl-fancybox-close-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

} /* --- FIN DE ESTILOS PARA MÓVILES --- */
/* Unificar estilo de botones de envío en la página de contacto */
.contact-page-wrapper .ff-btn-submit,
.contact-page-wrapper button.ff-btn-submit,
.contact-page-wrapper input.ff-btn-submit[type="submit"] {
  display: inline-block;
  width: auto;                 /* o 100% si lo quieres a todo el ancho */
  padding: 16px 24px;
  border: none !important;
  border-radius: 8px;
  background: linear-gradient(45deg, #6F122D, #a6183c) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: none !important;
  transition: background 0.3s ease, transform 0.15s ease;
}

.contact-page-wrapper .ff-btn-submit:hover {
  background: linear-gradient(45deg, #54101f, #801b33) !important;
  transform: translateY(-1px);
}

/* Por si el tema aplica estilos a .button o a input[type=submit] dentro del form */
.contact-page-wrapper .custom-contact-form .button,
.contact-page-wrapper .custom-contact-form input[type="submit"] {
  all: unset;
}
.contact-page-wrapper .ff-btn-submit {
  width: auto !important;  /* Forzamos a que se ajuste al contenido */
  display: inline-block !important;
}
.contact-page-wrapper .custom-contact-form {
  text-align: center;
}

.contact-page-wrapper .custom-contact-form .ff-btn-submit {
  margin-top: 10px;
}