:root {
  /* --gf-bg-primary: #00667b; */
   /* --gf-bg-primary-dark: #003a46; */
  --gf-bg-primary:  #4d82bc; 
 
  --gf-bg-primary-dark: #4d82bc;
/* --gf-bg-primary: #003a46;
  --gf-bg-primary-dark: #00667b; */

  --gf-bg-primary-light: #e4f1f3;
  --gf-hovers: #33415C;
  --gf-text-dark: #5a5a5a;
  --gf-text-light: #f5f5f5;
  --gf-text-accent: #c7a875;
  --gf-white: #ffffff;
  --gf-black: #000000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
 font-family: "DM Sans", sans-serif;
}
h1,h2{
    font-family: "Playfair Display", serif;
}
.gf-general__description p, .gf-general__description span{
    font-size: 18px;
    color: var(--gf-text-dark);
    font-weight: 500;
    padding-bottom: 18px;
    line-height: 28px;
}
.gf-general__title {
   font-size: clamp(2.5rem, 2.5rem + 0.6944vw, 3.125rem);
  font-weight: 400;
  color: var(--gf-bg-primary-dark);
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.5px;
font-family: "Playfair Display", serif;
}
.gf-content-section{
    width: 80%;
    max-width: 1080px;
    margin: auto;
    position: relative;
}
/* Header Container */
.gf-header {
    background-color: var( --gf-bg-primary);
    /* border-bottom: 1px solid  var(--gf-white); */
    position: sticky;
    top: 0;
    z-index: 1000;
    /* height: 100px; */
}

.gf-header__container {
    max-width: 1440px;
    margin: 0 auto;
       padding: 0.5rem 2rem 0rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.gf-header__logo {
    /* flex: 1; */
    display: flex;
    justify-content: center;
       width: 220px;
        
}

.gf-header__logo a img{
        width: 100%;
        filter: brightness(0) invert(1);
   
}
.gf-header__center{
    display: flex;
        justify-content: center;
    align-items: center;
    width: 75%;
}

.gf-header .gf-header__center{
    display: block;
}
.gf-header.is-sticky > .gf-header__nav,
.gf-header > .gf-header__nav{
  display: none;
}

.gf-header.is-sticky > .gf-header__nav.mobile.active{
  display: block;
}

/* Right Section */
.gf-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}
.gf-header.is-sticky .gf-header__right{
        flex: none;
}

/* Language Button */
.gf-header__language-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-header__language-icon {
    width: 28px;
    height: 28px;
    color: #f59c00;
    stroke-width: 3;
}

/* CTA Button */
.gf-header__cta {
    background-color: var(--gf-white);
    color: var(--gf-bg-primary-dark);
    border: none;
    padding: 12px 50px 12px 50px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
	text-transform:uppercase;
	letter-spacing:1px;
	display: flex;
}
.gf-header__cta svg{
	margin-right: 8px;
}

.gf-header__cta:hover {
    background-color: var(--gf-hovers);
    color: var(--gf-white);
     transform: translateY(-2px);
    /* transform: scale(1.05); */
}

/* Navigation */
.gf-header__nav {
    background-color: var(--gf-bg-primary);
    padding: 0 2rem;
}

.gf-header__nav-list {
    text-transform: uppercase;
    max-width: 1440px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: center;
    gap:20px;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.gf-header__nav-list li{
  border:none;
}
.gf-header__nav-link {
    color: var(--gf-white);
    text-decoration: none;
   font-size: clamp(1rem, 1rem + 0.1389vw, 1.125rem);
    transition: color 0.3s ease;
    white-space: nowrap;
    text-transform: capitalize;
}

.gf-header__nav-link:hover {
    color: #d4af9a;
}

/* Menu Toggle (Mobile) */
.gf-header__menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.gf-header__menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #d4af9a;
    transition: all 0.3s ease;
}


/* Mobile Responsive */
@media (max-width: 992px) {
	
	.gf-header__logo{
		width:170px;
	}
    .gf-header.is-sticky .gf-header__right .gf-header__cta,
    .gf-header.is-sticky .gf-header__center,
	.gf-header .gf-header__center{
        display: none;
    }
    .gf-header__menu-toggle {
        display: flex;
    }

    .gf-header__container {
        padding: 1rem 1rem;
    }

    .gf-header__logo h1 {
        font-size: 1.5rem;
    }

    .gf-header__right {
        gap: 1rem;
    }

    .gf-header__cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
		display:none;
    }

    .gf-header__nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 2rem;
    }

    .gf-header__nav.active {
        max-height: 400px;
        padding: 1rem 2rem;
    }

    .gf-header__nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

    .gf-header__menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 8px);
    }

    .gf-header__menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .gf-header__menu-toggle.active span:nth-child(3) {
       transform: rotate(-45deg) translate(2px, -10px);
    }
	.gf-header__nav.mobile.active{
		display: block;
	}
}





@media (min-width:993px) and (max-width:1023px){
    .gf-header__nav-list{
        gap: 0 20px;
    }
}


/* Oculta el texto original de los enlaces */
.gf-language__nav-list a span,
.gf-language__nav-list a {
    position: relative;
    color: transparent !important;   /* ocultamos texto */
}

/* Mostramos el texto nuevo con ::after */
 .gf-language__nav-list .wpml-ls-item-es > .sub-menu a::after,
 .gf-language__nav-list .wpml-ls-item-ca > .sub-menu a::after,
 .gf-language__nav-list .wpml-ls-item-en > .sub-menu a::after {
    position: absolute;
    left: 50px;       /* mueve el texto para que no solape la bandera */
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
	opacity:0;

}
.gf-language__nav-list .wpml-ls-item-es > .sub-menu.open  a::after,
.gf-language__nav-list .wpml-ls-item-ca > .sub-menu.open a::after,
.gf-language__nav-list .wpml-ls-item-en > .sub-menu.open  a::after {
	opacity:1 !important;
}

/* Texto personalizado por idioma */
.gf-language__nav-list .wpml-ls-item-es > a::after {
    content: "ESP";
}
.gf-language__nav-list .wpml-ls-item-ca > a::after {
    content: "CAT";
}
.gf-language__nav-list .wpml-ls-item-en > a::after {
    content: "ENG";
}

/* Estilo general de las pastillas */
.gf-language__nav-list .sub-menu li a {
  display: flex;
    align-items: center;
    gap: 0px;
    background: #000;
    padding: 8px 14px;
    border-radius: 25px;
    margin-bottom: 6px;
    width: 100px;
}

/* Bandera redonda */
.gf-language__nav-list .sub-menu li a img,
.gf-language__nav-list > li.menu-item-has-children > a img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Idioma activo (arriba) redondo */
.gf-language__nav-list > li{
	position: relative;
}
.gf-language__nav-list > li.menu-item-has-children:not(.wpml-ls-current-language) > a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    padding: 8px 14px;
    border-radius: 999px; /* redondo total */
}
.gf-language__nav-list > li.menu-item-has-children.wpml-ls-current-language > a span {
	display: none;
}

/* Submenú oculto/visible */
.gf-language__nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 8px 0;
    margin: 0;
    list-style: none;
}
.gf-language__nav-list .sub-menu.open {
    display: block;
}

/* Banner Section */
.gf-banner {
  position: relative;
  width: 100%;
  /* height: 500px; */
  height: 85vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1517457373614-b7152f800fd1?w=1200&h=600&fit=crop") center / cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gf-banner__container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.gf-banner__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gf-banner__title {
 font-size: clamp(3.875rem, 3.875rem + 0.6944vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 8px;
  color: #e8d5c0;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gf-banner__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  
}

.gf-banner__description {
font-size: clamp(1.5rem, 1.5rem + 0.5556vw, 2rem);
  font-weight: 400;
  color: #e8d5c0;

  margin: 0;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.gf-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  /* padding: 14px 40px; */
  padding: 12px 50px 12px 50px;
  background-color: var(--gf-white);
  color: var(--gf-bg-primary-dark);
  border: none;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
	text-transform: uppercase;
	
}
.gf-banner__button > div{
	display: flex;
    flex-direction: column;
}

.gf-banner__button:hover {
    background-color: var(--gf-hovers);
    color: var(--gf-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
     transform: translateY(-2px);
     text-decoration: none;
}

.gf-banner__button:active {
  transform: translateY(-1px);
}

.gf-banner__button-icon,
.gf-spaces__button-icon{
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 767px) {
	.gf-form{
		    padding: 0px;
	}
	.gf-spaces__button{
		justify-content: center;
    align-items: center;
    text-align: center;
	}
  .gf-banner {

    background-attachment: scroll;
  }





  .gf-banner__button {
    padding: 12px 32px;

  }
	.gf-banner__description {
	font-size: 20px;}

}

@media (max-width: 480px) {

.gf-banner__description {
	font-size: 20px;}



  .gf-banner__button {
    padding: 10px 24px;
    gap: 8px;
  }

  .gf-banner__button-icon {
    width: 18px;
    height: 18px;
  }
}

/* Welcome Info Section */
.gf-infowelcome {
  background-color: var( --gf-text-light);
  padding: 80px 0px;
}

.gf-infowelcome__container {

  display: flex;
  gap: 60px;
  align-items: center;
}

.gf-infowelcome__content {
  flex: 1;
  min-width: 0;
}

/* .gf-infowelcome__title {
  font-size: 50px;
  font-weight: 400;
  color: var(--gf-bg-primary-dark);
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: "Roboto", serif;
} */

/* .gf-infowelcome__text p{
  font-size: 16px;
  line-height: 1.8;
  color: var(--gf-text-dark);
  margin-bottom: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
} */


.gf-infowelcome__text:last-of-type {
  margin-bottom: 0;
}

.gf-infowelcome__image-wrapper {
  flex: 1;
  min-width: 0;
}

.gf-infowelcome__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 767px) {


  .gf-infowelcome__container {
    flex-direction: column;
    gap: 40px;
  }

  .gf-infowelcome__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .gf-infowelcome__text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {


  .gf-infowelcome__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .gf-infowelcome__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .gf-infowelcome__image {
    border-radius: 12px;
  }
}


/* Address Section Styles */
.gf-address {
  background-color: var(--gf-white);
  padding: 80px 0px;
}

.gf-address__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contenido de información */
.gf-address__content {
  padding-right: 40px;
}
.gf-address__content-left{
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.gf-address__title {
  font-family: "Roboto", "Georgia", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--gf-bg-primary-dark);
  margin: 0 0 40px 0;
  line-height: 1.2;
}

/* Bloque de información */
.gf-address__info-block {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
  flex-direction: column;
}



.gf-address__info-text {
  margin: 0;
}

.gf-address__label {
  font-size: 18px;
  font-weight: 600;
 color: var(--gf-bg-primary);
  margin: 0 0 8px 0;
}

.gf-address__text {
  font-size: 18px;
    color: var(--gf-text-dark);
  margin: 4px 0;
  line-height: 1.6;
}

/* Enlace a Google Maps */
.gf-address__maps-link {
  display: inline-block;
  color: #4a90e2;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}

.gf-address__maps-link:hover {
  color: #2e5bb8;
  text-decoration: underline;
}

/* Subtítulo de horarios */
.gf-address__subtitle {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--gf-bg-primary-dark);
  margin: 0px 0 20px 0;
}

/* Bloque de horarios */

.gf-address__hours-block{
        display: grid;
    grid-template-columns: 1fr;
}
.gf-address__hours-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gf-bg-primary);
  margin: 0 0 12px 0;
}

.gf-address__hours-text {
  font-size: 18px;
   color: var(--gf-text-dark);
  margin: 0;
  line-height: 1.6;
}

/* Mapa */
.gf-address__map-block {
  width: 100%;
  height: 500px;
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
}
.gf-address__map-block iframe{
  width: 100%;
  height: 100%;
}

.gf-address__map {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gf-address, .gf-contact-content {
    padding: 60px 30px !important;
  }
	

  .gf-address__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gf-address__content {
    padding-right: 0;
  }

  .gf-address__map-block {
    height: 400px;
  }

  .gf-address__title {
    font-size: 42px;
  }

  .gf-address__subtitle {
    font-size: 28px;
  }
}

@media (max-width: 767px) {


  .gf-address__container {
    gap: 30px;
  }

  .gf-address__title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .gf-address__subtitle {
    font-size: 24px;
    margin-top: 30px;
  }

  .gf-address__map-block {
    height: 300px;
  }

  .gf-address__info-block {
    gap: 15px;
  }

  .gf-address__icon-location {
    font-size: 24px;
  }

 
}

@media (max-width: 480px) {

  .gf-address__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .gf-address__subtitle {
    font-size: 20px;
    margin-top: 20px;
  }

  .gf-address__map-block {
    height: 250px;
  }

 
}





.gf-menus-container {
  width: 100%;
  padding: 60px 0px;
  background-color: var(--gf-bg-color);
}

.gf-menus-content {
  display: flex;
  gap: 60px;
  align-items: center;
}
.gf-menus-content > .gf-menus-button{
    display: none;
}

.gf-menus-image-wrapper {
  flex: 0 0 45%;
	height: 350px;
}

.gf-menus-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	height:100%;
	object-fit: cover;
}

.gf-menus-text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gf-menus-title {
  font-size: 50px;
  font-weight: 400;
  color: var(--gf-bg-primary-dark);
  line-height: 1.2;
  font-family: "Roboto", serif;
  letter-spacing: -0.5px;
}

.gf-menus-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* .gf-menus-paragraph p {
  font-size: 16px;
  line-height: 1.6;
 color: var(--gf-text-dark);
  font-weight: 400;
  margin-bottom: 24px;
} */

.gf-menus-button, .gf-spaces__button {
  align-self: flex-start;
  padding: 12px 50px 12px 50px;
  background-color: var(--gf-bg-primary-dark);
  color: var(--gf-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--gf-button-bg);
  cursor: pointer;
  margin: 0 auto;
	text-transform:uppercase;
}
.gf-spaces__button{
	    display: flex;
    width: fit-content;
    margin: 10px 0 0 0;
    gap: 8px;
}

.gf-menus-button:hover, .gf-spaces__button:hover {
  background-color: var(--gf-hovers);
  color: var(--gf-white);
  transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 767px) {
    .gf-menus-text-section{
        order: -1;
    }
    .gf-menus-content > .gf-menus-button{
    display: block;
            margin: 0 auto;
            margin-bottom: 20px;
}
    

  .gf-menus-content {
    flex-direction: column;
    gap: 40px;
  }

  .gf-menus-image-wrapper {
    flex: none;
	  height: fit-content;
  }

  .gf-menus-text-section {
    flex: 1 1 100%;
  }

  .gf-menus-title {
    font-size: 36px;
  }

  .gf-menus-paragraph {
    font-size: 15px;
  }
	.gf-menus-image{
		    box-shadow: 0px 0px 20px rgb(0 0 0 / 0%);
		    object-fit: contain;
		border-radius: 24px;
	}
}

@media (max-width: 480px) {


  .gf-menus-title {
    font-size: 28px;
  }

  .gf-menus-paragraph {
    font-size: 14px;
    line-height: 1.5;
  }

  .gf-menus-button {
    padding: 12px 32px;

  }
}



.gf-imagenfull-container {
  width: 100%;
  overflow: hidden;
  background-color: #f5f1ed;
}

.gf-imagenfull-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.gf-imagenfull-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.gf-spaces-container {
  width: 100%;
  background: linear-gradient(135deg, var(--gf-text-light) 0%, var(--gf-bg-primary-light) 100%);
  padding: 80px 0px;
}



.gf-spaces-title {
  font-family: "Roboto", "Garamond", serif;
  font-size: 50px;
  color: var(--gf-bg-primary-dark);
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  width: 65%;
}

.gf-spaces-description {
  max-width: 65%;
  margin-bottom: 50px;
}

.gf-spaces-paragraph p {
  font-size: 1.1rem;
  color: var(--gf-text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  margin-bottom: 24px;
}

.gf-spaces-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.gf-spaces-card {
  position: relative;
  /* background: white; */
  border-radius: 20px;
  /* overflow: hidden; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gf-spaces-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

.gf-spaces-card:hover .gf-spaces-card-header{
	background: var(--gf-hovers);
}
.gf-spaces-card-header {
  position: absolute;
  top: 0;
  width: 90%;
  left: 50%;
  transform: translate(-50%);
  z-index: 99;
  border-radius: 10px 10px 10px 10px;
background: linear-gradient(135deg, var(--gf-bg-primary) 0%, var(--gf-bg-primary-dark) 100%);

  padding: 15px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gf-white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gf-spaces-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.gf-spaces-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.gf-spaces-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 8px;
}


.gf-spaces-card:hover .gf-spaces-image {
  transform: scale(1.05);
}

.gf-spaces-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: white;
}

.gf-spaces-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gf-bg-primary-light);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.gf-spaces-dot.active {
  background-color: var(--gf-bg-primary-dark);
  transform: scale(1.2);
}

.gf-spaces-dot:hover {
  background-color: var(--gf-bg-primary);
}

/* Responsive */
@media (max-width: 767px) {
    .gf-spaces-carousel{
        height: 250px;
    }
 

  .gf-spaces-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .gf-spaces-paragraph {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .gf-spaces-cards {
    gap: 30px;
  }
}

@media (max-width: 480px) {
 

  .gf-spaces-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .gf-spaces-paragraph {
    font-size: 0.95rem;
  }

  .gf-spaces-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Contenedor principal */
.gf-contact-container {
  width: 100%;
  /* background-color: #f5f1ed;
  padding: 60px 20px; */
}

.gf-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  /* border-radius: 8px; */
  overflow: hidden;
      background-color: var(--gf-text-light);
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
}

/* Sección de imagen */
.gf-contact-image {
  width: 100%;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  background-color: #1a3a4a;
}

.gf-contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gf-contact-content-right{
      max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

/* Sección de contenido */
.gf-contact-content {
  background-color: var(--gf-text-light);
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gf-contact-title {
  font-size: 50px;
  font-weight: 400;
  color: var(--gf-bg-primary-dark);
  margin-bottom: 50px;
  font-family: "Roboto", "Garamond", serif;
  letter-spacing: 1px;
}

.gf-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gf-contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.gf-contact-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gf-bg-primary);
  letter-spacing: 1px;
  min-width: 150px;
  text-transform: uppercase;
}

.gf-contact-link {
  font-size: 17px;
      color: var(--gf-text-dark);
  /* color: var(--gf-bg-primary); */
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: 500;
}

.gf-contact-link:hover {
  color: var(--gf-bg-primary);
  text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .gf-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .gf-contact-image {
    min-height: 350px;
  }

 

  .gf-contact-title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .gf-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {


  .gf-contact-image {
    min-height: 280px;
  }


  .gf-contact-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .gf-contact-label {

    min-width: auto;
  }


 
}



/* Footer Styles */
.gf-footer {
  background-color: var(--gf-bg-primary);
  padding: 60px 40px;
}

.gf-footer__container {
     max-width: 1440px;
    margin: 0 auto;
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr 1fr;
}

/* Logo Section */
.gf-footer__logo-section {
  flex: 0 0 auto;
}

.gf-footer__logo-section a {
     width: 220px;
         display: block;
}
.gf-footer__logo-section a img{
        width: 100%;
        filter: brightness(0) invert(1);
   
}

.gf-footer__copyright {
  font-size: 18px;
   color: var(--gf-white);
  line-height: 1.6;
}

/* Links Wrapper */
.gf-footer__links-wrapper {
  display: flex;
  gap: 100px;
  flex: 1;
}

.gf-footer__column {
  flex: 1;
}

.gf-footer__list {
  list-style: none;
}

.gf-footer__list li {
  margin-bottom: 16px;
  padding: 0px;
  border:none;
}

.gf-footer__list li:last-child {
  margin-bottom: 0;
}

.gf-footer__list a {
   color: var(--gf-white);
  text-decoration: none;
  font-size: 18px;
  position: relative;
  padding-left: 16px;
  transition: color 0.3s ease;
}

.gf-footer__list a::before {
  content: "▸";
  position: absolute;
  left: 0;
    color: var(--gf-white);
  transition: color 0.3s ease;
}

.gf-footer__list a:hover {
  color: var(--gf-hovers);
}

.gf-footer__list a:hover::before {
  color: #f5f1e8;
}

/* Responsive Design */
@media (max-width: 767px) {
    .gf-footer__container{
            grid-template-columns: 1fr;
    }
  .gf-footer {
    padding: 40px 20px;
  }

  .gf-footer__container {
    flex-direction: column;
    gap: 40px;
  }

  .gf-footer__links-wrapper {
    gap: 40px;
  }

  .gf-footer__logo {
    font-size: 24px;
  }

	.gf-footer__links-wrapper,
	.gf-footer__links-wrapper{
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
  .gf-footer {
    padding: 30px 15px;
  }

  .gf-footer__container {
    gap: 30px;
  }

  .gf-footer__links-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .gf-footer__logo {
    font-size: 20px;
  }

  


}



.menu-wrapper {
  font-family: 'Roboto', sans-serif;
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.menu-section {
  margin-bottom: 3rem;
}

.menu-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid #ddd;
  letter-spacing: .5px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: .7rem 0;
  border-bottom: 1px dashed #ddd;
  font-size: 1.05rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-weight: 400;
  max-width: 75%;
  line-height: 1.4;
}

.menu-item-price {
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-section small {
  font-size: .85rem;
  font-weight: 300;
  color: #666;
}

/* Secciones */
.gf-menu-section {
    margin-bottom: 80px;
    text-align: center;
}

/* Título principal */
.gf-menu-title {
    font-size: 36px;
    font-weight: 400;
    color: #4d82bc;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

/* Subtítulo principal */
.gf-menu-subtitle {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Subsección */
.gf-menu-subsection {
    margin-bottom: 50px;
}

/* Subtítulo de subsección */
.gf-menu-subtitle-main {
    font-size: 18px;
    color: #4d82bc;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Descripción general */
.gf-menu-description {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 20px;
    font-style: italic;
}

/* Item del menú */
.gf-menu-item {
    margin-bottom: 28px;
    padding: 0 20px;
}

/* Nombre del plato */
.gf-menu-dish-name {
    font-size: 14px;
    font-weight: 500;
    color: #4d82bc;
    margin-bottom: 5px;
}

/* Precio del plato */
.gf-menu-dish-price {
    font-size: 13px;
    color: #4d82bc;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Descripción del plato */
.gf-menu-dish-description {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive */
@media (max-width: 767px) {
    .gf-menu-container {
        padding: 40px 20px;
    }

    .gf-menu-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .gf-menu-item {
        padding: 0 10px;
    }

    .gf-menu-dish-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gf-menu-container {
        padding: 30px 15px;
    }

    .gf-menu-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .gf-menu-dish-name {
        font-size: 12px;
    }

    .gf-menu-dish-price {
        font-size: 12px;
    }

    .gf-menu-dish-description {
        font-size: 11px;
    }
}

/* Página de menú (Gutenberg) */
.page-template-template-menu .menu-hero {
    background: linear-gradient(135deg, var(--gf-bg-primary) 0%, #345d8e 100%);
    color: var(--gf-white);
    padding: 90px 20px 70px;
    text-align: center;
}

.page-template-template-menu .menu-hero__container {
    max-width: 980px;
    margin: 0 auto;
}

.page-template-template-menu .menu-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 10px;
}

.page-template-template-menu .menu-hero__title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.page-template-template-menu .menu-hero__excerpt {
    font-size: 16px;
    opacity: 0.9;
}

.page-template-template-menu .menu-content {
    background: #eef3f7;
    padding: 60px 20px 90px;
}

.page-template-template-menu .menu-content__container {
    max-width: 1200px;
    margin: 0 auto;
    /* background: var(--gf-white);
    border-radius: 20px;
    padding: 48px 46px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3e9f0; */
}

.page-template-template-menu .gf-menu-container {
    max-width: 980px;
    margin: 0 auto;
}

.page-template-template-menu .gf-menu-container > * + * {
    margin-top: 22px;
}

.page-template-template-menu .gf-menu-container h1,
.page-template-template-menu .gf-menu-container h2,
.page-template-template-menu .gf-menu-container h3 {
    text-align: center;
    color: #0b2538;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.page-template-template-menu .gf-menu-container h1 {
    font-size: 34px;
}

.page-template-template-menu .gf-menu-container h2 {
    font-size: 26px;
}

.page-template-template-menu .gf-menu-container h3 {
    font-size: 20px;
    color: #1f6f88;
}

.page-template-template-menu .gf-menu-container p {
    margin: 0 0 10px;
    color: #2d3b42;
    font-size: 15px;
    line-height: 1.65;
}

.page-template-template-menu .gf-menu-container strong {
    color: #1f6f88;
}

.page-template-template-menu .gf-menu-container .wp-block-separator,
.page-template-template-menu .gf-menu-container hr {
    margin: 34px auto;
    width: 140px;
    border: none;
    border-top: 2px solid #1f6f88;
    opacity: 0.35;
}

.page-template-template-menu .gf-menu-container .wp-block-columns {
    gap: 28px;
}

.page-template-template-menu .gf-menu-container .wp-block-column {
    background: #f9fbff;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.page-template-template-menu .gf-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-template-template-menu .gf-menu-container li {
    margin-bottom: 12px;
    line-height: 1.55;
}

.page-template-template-menu .gf-menu-container em {
    color: #4a5a64;
}

@media (max-width: 900px) {
    .page-template-template-menu .menu-hero {
        padding: 70px 16px 50px;
    }

    .page-template-template-menu .menu-hero__title {
        font-size: 30px;
    }

    .page-template-template-menu .menu-content__container {
        padding: 36px 28px;
    }
}

@media (max-width: 640px) {
    .page-template-template-menu .menu-content {
        padding: 42px 16px 60px;
    }

    .page-template-template-menu .menu-content__container {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .page-template-template-menu .menu-hero__title {
        font-size: 26px;
    }

    .page-template-template-menu .gf-menu-container h1 {
        font-size: 26px;
    }

    .page-template-template-menu .gf-menu-container h2 {
        font-size: 22px;
    }

    .page-template-template-menu .gf-menu-container p {
        font-size: 14px;
    }

    .page-template-template-menu .gf-menu-container .wp-block-column {
        padding: 18px 16px;
    }
}

/* Página Legal / Privacidad */
.gf-hero-small {
    background: linear-gradient(135deg, var(--gf-bg-primary) 0%, #345d8e 100%);
    color: var(--gf-white);
    padding: 90px 20px 70px;
    text-align: center;
}

.gf-hero-small__container {
    max-width: 980px;
    margin: 0 auto;
}

.gf-hero-small__eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 10px;
}

.gf-hero-small__title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.gf-hero-small__excerpt {
    font-size: 18px;
    opacity: 0.9;
}

.gf-legal-content {
    background: #eef3f7;
    padding: 60px 20px 90px;
}

.gf-legal-content__container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--gf-white);
    border-radius: 18px;
    padding: 40px 48px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3e9f0;
}

.gf-legal-content__container > * + * {
    margin-top: 22px;
}

.gf-legal-content h1,
.gf-legal-content h2,
.gf-legal-content h3,
.gf-legal-content h4,
.gf-legal-content h5,
.gf-legal-content h6 {
    color: #0f2b3f;
    font-weight: 700;
    line-height: 1.3;
}

.gf-legal-content h2 {
    font-size: 24px;
    border-bottom: 2px solid var(--gf-bg-primary);
    padding-bottom: 8px;
    margin-bottom: 14px;
}

.gf-legal-content h3 {
    font-size: 20px;
}

.gf-legal-content p,
.gf-legal-content li {
    color: #35434a;
    font-size: 15px;
    line-height: 1.8;
}

.gf-legal-content a {
    color: var(--gf-bg-primary);
    font-weight: 600;
    text-decoration: underline;
}

.gf-legal-content ul,
.gf-legal-content ol {
    padding-left: 18px;
    margin: 0 0 14px 0;
}

.gf-legal-content li + li {
    margin-top: 6px;
}

.gf-legal-content blockquote {
    border-left: 4px solid var(--gf-bg-primary);
    padding-left: 16px;
    color: #1f2f38;
    background: #f6f9fb;
}

.gf-legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: 14px;
}

.gf-legal-content th,
.gf-legal-content td {
    border: 1px solid #d7e1ea;
    padding: 10px 12px;
    text-align: left;
}

.gf-legal-content th {
    background: #f0f5fb;
    font-weight: 700;
    color: #102a3d;
}

.gf-legal-content__container .wp-block-separator {
    border: none;
    border-top: 2px solid #e0e7ef;
    margin: 28px 0;
    width: 100%;
    opacity: 1;
}

@media (max-width: 900px) {
    .gf-hero-small {
        padding: 70px 16px 50px;
    }

    .gf-hero-small__title {
        font-size: 30px;
    }

    .gf-legal-content__container {
        padding: 32px 26px;
    }
}

@media (max-width: 600px) {
    .gf-hero-small__title {
        font-size: 26px;
    }

    .gf-legal-content__container {
        padding: 26px 18px;
        border-radius: 14px;
    }

    .gf-legal-content h2 {
        font-size: 20px;
    }

    .gf-legal-content h3 {
        font-size: 18px;
    }

    .gf-legal-content p,
    .gf-legal-content li {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Páginas por defecto / reservas */
.page-default {
    background: #eef3f7;
    padding: 70px 20px 100px;
}

.page-default__container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--gf-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3e9f0;
}

.page-default__header {
    text-align: center;
    margin-bottom: 32px;
}

.page-default__title {
    font-size: 34px;
    color: #0b2538;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.page-default__excerpt {
    color: #4a5a64;
    margin-top: 10px;
    font-size: 15px;
}

.page-default__content {
    color: #2d3b42;
    font-size: 15px;
    line-height: 1.7;
}

/* Estilo formulario reservas (rtb) */
.page-default .rtb-booking-form {
    background: #f8fbff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.05);
}

.page-default .rtb-booking-form legend {
    font-size: 18px;
    font-weight: 700;
    color: #0b2538;
    margin-bottom: 18px;
}

.page-default .rtb-booking-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.page-default .rtb-booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2f38;
}

.page-default .rtb-booking-form input,
.page-default .rtb-booking-form select,
.page-default .rtb-booking-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d3dde7;
    background: #fff;
    font-size: 14px;
    color: #1f2f38;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-default .rtb-booking-form input:focus,
.page-default .rtb-booking-form select:focus,
.page-default .rtb-booking-form textarea:focus {
    outline: none;
    border-color: var(--gf-bg-primary);
    box-shadow: 0 0 0 3px rgba(77, 130, 188, 0.2);
}

.page-default .rtb-booking-form .rtb-text,
.page-default .rtb-booking-form .rtb-select,
.page-default .rtb-booking-form .rtb-textarea {
    margin-bottom: 18px;
}

.page-default .rtb-booking-form .add-message a {
    color: var(--gf-bg-primary);
    font-weight: 600;
    text-decoration: underline;
}

.page-default .rtb-booking-form .rtb-form-submit button {
    background: var(--gf-bg-primary);
    color: var(--gf-white);
    border: none;
    border-radius: 25px;
    padding: 12px 22px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-default .rtb-booking-form .rtb-form-submit button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.page-default .rtb-booking-form .rtb-form-submit {
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .page-default {
        padding: 50px 16px 70px;
    }

    .page-default__container {
        padding: 36px 24px;
    }

    .page-default__title {
        font-size: 28px;
    }

    .page-default .rtb-booking-form {
        padding: 22px;
    }
}

/* Menús para grupos */
.gf-group-menus-hero,
.gf-group-menus-module .group-menus-hero {
    background: linear-gradient(135deg, var(--gf-bg-primary) 0%, #345d8e 100%);
    color: var(--gf-white);
    text-align: center;
    padding: 90px 20px 70px;
}

.gf-group-menus-hero__container,
.gf-group-menus-module .group-menus-hero__container {
    max-width: 960px;
    margin: 0 auto;
}

.gf-group-menus-hero__eyebrow,
.gf-group-menus-module .group-menus-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 10px;
}

.gf-group-menus-hero__title,
.gf-group-menus-module .group-menus-hero__title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.gf-group-menus-hero__subtitle,
.gf-group-menus-module .group-menus-hero__subtitle {
    font-size: 16px;
    opacity: 0.92;
}

.gf-group-menus,
.gf-group-menus-module .group-menus {
    background: #eef3f7;
    padding: 70px 20px 100px;
}

.gf-group-menus__container,
.gf-group-menus-module .group-menus__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.gf-group-menu-card,
.gf-group-menus-module .group-menu-card {
    background: var(--gf-white);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
    border: 1px solid #e3e9f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gf-group-menu-card__image img,
.gf-group-menus-module .group-menu-card__image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 4px;
    border: 3px solid var(--gf-bg-primary);
    background: #f7fbff;
}

.gf-group-menu-card__title,
.gf-group-menus-module .group-menu-card__title {
    font-weight: 700;
    color: var( --gf-bg-primary);
    font-size: 16px;
    letter-spacing: 0.4px;
}

.gf-group-menu-card__price,
.gf-group-menus-module .group-menu-card__price {
    color: #000000;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.6px;
}

.gf-group-menu-card__description,
.gf-group-menus-module .group-menu-card__description {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    color: var(--gf-text-dark);
    font-size: 16px;
    line-height: 1.65;
    display: grid;
    gap: 8px;
}
.gf-group-menu-card__description{
  padding: 0 20px;
}

.gf-group-menus-module .gf-group-menus__download {
    background: #e6e8eb;
    padding: 34px 16px;
    text-align: center;
}

.gf-group-menus-module .gf-group-menus__download-link {
    color:  var(--gf-text-dark);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.gf-group-menus-module .gf-group-menus__download-link:hover {
    color: var(--gf-bg-primary);
}

/* Carta (010) */
.gf-carta {
    background: linear-gradient(180deg, #f6f8fb 0%, #eef3f7 100%);
    padding: 70px 20px 90px;
}

.gf-carta__intro {
    max-width: 900px;
    margin: 0 auto 36px;
    text-align: center;
}

.gf-carta__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gf-bg-primary);
    margin-bottom: 10px;
}

.gf-carta__subtitle {
    color: var(--gf-text-dark);
    font-size: 18px;
}

.gf-carta__grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.gf-carta__card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 14px;
    height: 120px;
    cursor: pointer;
    padding: 0;
    background: #0b2538;
    color: var(--gf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gf-carta__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(0,0,0,0.14);
}

.gf-carta__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.25));
    mix-blend-mode: multiply;
}

.gf-carta__card-text {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.gf-carta__panels {
    max-width: 900px;
    margin: 38px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gf-carta__panel {
    background: var(--gf-white);
    border-radius: 12px;
    border: 1px solid #e1e8f0;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.gf-carta__panel summary {
    list-style: none;
}

.gf-carta__panel[open] summary {
    border-bottom: 1px solid #e1e8f0;
}

.gf-carta__panel-title {
  background: #345d8e; 
    /* background: linear-gradient(90deg, #0b2538 0%, var(--gf-bg-primary) 100%); */
    color: var(--gf-white);
    padding: 14px 16px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}
.gf-carta__category-title {
  background: var(--gf-bg-primary); 
    /* background: linear-gradient(90deg, #0b2538 0%, var(--gf-bg-primary) 100%); */
    color: var(--gf-white);
    padding: 10px 16px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin: 0 16px;
    border-radius: 12px;
}

.gf-carta__panel summary::-webkit-details-marker {
    display: none;
}

.gf-carta__panel-lead {
    margin: 14px 16px;
    color: #4a5a64;
    font-size: 17px;
    line-height: 1.5;
}


/* .gf-carta__category-title{
    font-size: 17px;
    font-weight: 700;
    color: #0b2538;
    margin-bottom: 10px;
     padding: 16px 16px 0;
} */
.gf-carta__items {
    list-style: none;
    margin: 0;
    padding: 0 20px 16px;
    display: grid;
    gap: 10px;
}

.gf-carta__items li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eef3f7;
}

.gf-carta__items li:last-child {
    border-bottom: none;
}

.gf-carta__items span {
    color: #1f2f38;
    font-size: 16px;
    line-height: 1.5;
}

.gf-carta__items strong {
    color: #1f6f88;
    font-size: 16px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.gf-carta__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 43, 63, 0.08);
    color: #0f2b3f;
    transition: transform 0.2s ease, background 0.2s ease;
    border: none;
}

.gf-carta__more:hover {
    transform: translateY(-1px);
    background: rgba(77, 130, 188, 0.18);
}

.gf-carta__modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gf-carta__modal.is-active {
    display: flex;
}

.gf-carta__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.gf-carta__modal-body {
    position: relative;
    max-width: 820px;
    width: 90%;
    background: var(--gf-white);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    z-index: 1;
}

.gf-carta__modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 24px;
    text-decoration: none;
    color: #1f2f38;
    border: none;
    background: transparent;
}

.gf-carta__modal-media img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 100%;
    min-height: 260px;
}

.gf-carta__modal-placeholder {
    width: 100%;
    min-height: 260px;
    display: grid;
    place-items: center;
    background: #f2f5f8;
    border-radius: 12px;
    color: #7b8790;
    font-weight: 600;
}

.gf-carta__modal-info {
    display: grid;
    gap: 10px;
    align-content: start;
}

.gf-carta__modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #0b2538;
    margin: 0;
}

.gf-carta__modal-subtitle {
    font-size: 14px;
    color: #4a5a64;
    margin: 0;
}

.gf-carta__modal-price {
    font-size: 18px;
    color: #1f6f88;
    font-weight: 800;
    margin: 0;
}

.gf-carta__modal-desc {
    font-size: 14px;
    color: #2d3b42;
    line-height: 1.6;
    margin: 0;
}

.gf-carta__modal-allergens {
    display: grid;
    gap: 6px;
}

.gf-carta__modal-allergens-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f2f38;
}

.gf-modal-open {
    position: fixed;
    width: 100%;
}

/* Formulario reserva (011) */
.gf-form {
    padding: 80px 0px 100px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gf-column-hour{
	    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.select-hour{
	display: flex;
    gap: 10px;
}
.select-hour select option:nth-child(1){
	opacity:0;
}
.gf-form__card {
    backdrop-filter: blur(3px);

}
select[name="minuto"] option[value=""] {
    display: none;
}

.gf-form-title {
   text-align: center;
       /* font-family: "Roboto", "Garamond", serif;
    font-size: 50px;
    color: var(--gf-bg-primary-dark);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px; */
}

.gf-form-description p {
  text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 0px;
}

.gf-form-contentform form {
    display: grid;
    gap: 14px;
        width: 500px;
    margin: 0 auto;

}

.gf-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 10px;
}
.gf-form-grid label{
      font-weight: 600;
    color: var(--gf-bg-primary);
   
}
.wpcf7-checkbox span{
  margin-left: 0;
}
.gf-form-grid p {
    margin: 0;
}
.select-hour .wpcf7-form-control-wrap{
	flex:1;
}

.wpcf7-submit {
    background: #6b4a39;
    color: #fff !important;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
}

.gf-form-contentform input:not([type="submit"]):not([type="checkbox"]),
.gf-form-contentform textarea,
.gf-form-contentform select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d3dde7;
    background: #fff;
    font-size: 14px;
    color: #1f2f38;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gf-form-contentform input:focus,
.gf-form-contentform textarea:focus,
.gf-form-contentform select:focus {
    outline: none;
    border-color: var(--gf-bg-primary);
    box-shadow: 0 0 0 3px rgba(77, 130, 188, 0.2);
}

.gf-form-contentform .wpcf7-submit {
    background: var(--gf-bg-primary);
    color: var(--gf-white);
        width: auto;
    /* font-family: DM Sans; */
    font-size: 19px;
    height: auto;
    line-height: normal;
    text-align: center;

    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    border-radius: 50px;
    text-shadow: none;
    padding: 12px 50px 12px 50px;
    box-sizing: border-box;
    box-shadow: 0 1px 1px #eeeeee;
    margin: 10px;
    margin-left: 0;
    margin-right: 0;
    vertical-align: middle;
	letter-spacing: 1px;
}

.gf-form-contentform .wpcf7-submit:hover {
    transform: translateY(-1px);
  background: var(--gf-hovers);
}

.gf-form-contentform .wpcf7-checkbox,
.gf-form-contentform .wpcf7-acceptance {
    font-size: 16px;
    color: #2d3b42;
}

.gf-form-contentform .wpcf7-not-valid-tip {
    color: #b00020;
    font-size: 12px;
	position: absolute;
}

.gf-form-contentform .wpcf7-response-output {
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d3dde7;
    background: #f8fbff;
    color: #2d3b42;
}

@media (max-width: 767px) {
   

    .gf-form__card {
        padding: 30px 0px;
    }

	.gf-form-contentform .wpcf7-submit, .gf-menus-button{
		width:100%;
	}
	.gf-spaces-card-header{
		font-size:18px;
	}
}
.gf-allergens-icons{
  width: 15px;
      display: flex;
    gap: 5px;
}
.gf-allergens-icons img{
  width:100%;

}
@media (max-width: 767px) {
	.gf-banner__title {
    font-size: 50px;
	}
	.gf-spaces-description {
    max-width: 100%;
    margin-bottom: 50px;
}
	.gf-form-contentform form{
		width:100%;
	}
	.gf-form-grid{
		grid-template-columns: 1fr;
	}
    .gf-carta__card {
        height: 110px;
    }

    .gf-carta__card-text {
        font-size: 18px;
    }

    .gf-carta__panel-title {
        font-size: 15px;
    }

    .gf-carta__items {
        gap: 8px;
    }

    .gf-carta__modal-body {
        grid-template-columns: 1fr;
        width: 94%;
    }
}



@media (max-width: 767px) {
    .gf-group-menus-hero,
    .gf-group-menus-module .group-menus-hero {
        padding: 70px 16px 50px;
    }

    .gf-group-menus-hero__title,
    .gf-group-menus-module .group-menus-hero__title {
        font-size: 28px;
    }

    .gf-group-menus-hero__subtitle,
    .gf-group-menus-module .group-menus-hero__subtitle {
        font-size: 15px;
    }

    .gf-group-menu-card,
    .gf-group-menus-module .group-menu-card {
        padding: 22px 16px;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gf-address__content-left{
max-width: 500px;
  }
}

.gf-language__nav-list .wpml-ls-current-language > a::after{
	display: none;
}
.gf-language__nav-list .wpml-ls-current-language ul li > a::after{
	display: block;
}