/* =================================================
   FONTS
================================================= */

@font-face {
  font-family: 'VasttagBrush';
  src: url('../fonts/VasttagBrush.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* =================================================
   RESET / BASE
================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  overflow-x: hidden;
}

.site-hero {
  padding-top: 110px;
}

.site-main {
  padding-top: 130px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px;
}

/* =================================================
   HEADER
================================================= */

.site-header {
  background-color: #498037;
  border-bottom: none;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header__center img {
  max-height: 100px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
}

.site-header__left {
  justify-content: flex-start;
}

.site-header__right {
  justify-content: flex-end;
}

.site-header__left ul,
.site-header__right ul {
  display: flex;
  gap: 132px;
}

.site-header__left a,
.site-header__right a {
  font-family: 'Figtree';
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Flecha en items con submenú */
.site-header__left li:has(> ul) > a::after,
.site-header__right li:has(> ul) > a::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.site-header__left a:hover,
.site-header__right a:hover {
  color: #1a3f16;
  font-size: 20px;
}
.site-header__left li:has(> ul) > a:hover::after,
.site-header__right li:has(> ul) > a:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%231a3f16' d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
}

.site-header__center {
  text-align: center;
}

.site-header__left a.is-active,
.site-header__right a.is-active {
  color: #1a3e15 !important;
}

.site-header__left li:has(> ul) > a.is-active::after,
.site-header__right li:has(> ul) > a.is-active::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%231a3f16' d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
}

/* Submenú dropdown */
.site-header__left li,
.site-header__right li {
  position: relative;
}

.site-header__left ul ul,
.site-header__right ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #498037;
  min-width: 200px;
  flex-direction: column;
  gap: 0;
  z-index: 1001;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  padding: 8px 0;
}

.site-header__left li:hover > ul,
.site-header__right li:hover > ul {
  display: flex;
}

.site-header__left ul ul a,
.site-header__right ul ul a {
  font-size: 16px;
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
}

.site-header__left ul ul a:hover,
.site-header__right ul ul a:hover {
  background-color: #1a3f16;
  color: #ffffff;
  font-size: 16px;

}

.site-header__search {
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-left: 16px;
  transition: opacity 0.2s ease;
}

.site-header__search:hover {
  opacity: 0.7;
}

.site-header-movil__search {
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
  transition: opacity 0.2s ease;
}

.site-header-movil__search:hover {
  opacity: 0.7;
}

/* =================================================
   HEADER MÓVIL
================================================= */

.site-header-movil {
  background-color: #498037;
  padding: 16px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header-movil__nav.abierto {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #498037;
  padding: 100px 20px 20px;
  overflow-y: auto;
  z-index: 999;
}

.site-header-movil__hamburguesa {
  position: relative;
  z-index: 1001;
}

.site-header-movil__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 10px;
}

.site-header-movil__logo img {
  height: 45px;
  width: auto;
  max-width: 150px;
  display: block;
  flex-shrink: 0;
}

.site-header-movil__logo {
  flex-shrink: 0;
  max-width: 150px;
}

.site-header-movil__hamburguesa {
  flex-shrink: 0;
  margin-left: auto;
}

.site-header-movil__hamburguesa {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.site-header-movil__hamburguesa span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Menú desplegable */
.site-header-movil__nav {
  display: none;
  flex-direction: column;
  padding: 16px 0 8px;
}

.site-header-movil__nav.abierto {
  display: flex;
}

.site-header-movil__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header-movil__nav a {
  font-family: 'Figtree';
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 4px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.site-header-movil__nav a:hover {
  color: #1a3f16;
}

/* Submenú móvil */
.site-header-movil__nav ul ul {
  padding-left: 16px;
}

.site-header-movil__nav ul ul a {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 4px;
}

/* Animación hamburguesa → X */
.site-header-movil__hamburguesa.activo span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header-movil__hamburguesa.activo span:nth-child(2) {
  opacity: 0;
}
.site-header-movil__hamburguesa.activo span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =================================================
   RESPONSIVE — DOS HEADERS
================================================= */

@media screen and (min-width: 765px) {
  .no-web { display: none !important; }
}

@media screen and (max-width: 764px) {
  .no-movil { display: none !important; }
}


  /* ===============================
      TÍTULOS PÁGINA ESTÁTICA
===================================*/

.pagina-estatica__titulo {
  font-family: 'Figtree', sans-serif;
  font-size: 34px;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  font-weight: 900;
  color: #1a3f16;
  text-align: center;
  margin-top: 45px;
}

/* =================================================
   HOME HERO SLIDER
================================================= */
.home-hero {
  width: 100%;
  overflow: hidden;
}

.home-hero .swiper-slide {
  width: 100%;
}

.home-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.home-hero .swiper-button-prev,
.home-hero .swiper-button-next {
  color: #ffffff;
}

.home-hero .swiper-pagination-bullet-active {
  background: #ffffff;
}

/* =================================================
   FOOTER
================================================= */

.site-footer {
  background: url('../images/footer-bg.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 60px 0 20px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 0, 0.45);
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Figtree';
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

}
.footer-col a {
  font-family: 'Figtree';
  font-size: 18px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  line-height: 20px;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Enlaces segunda y tercer columna */

#block-aires-theme-footer-legal ul,
#block-aires-theme-footer-corporativo ul {
  margin-left: 20px;
}
#block-aires-theme-footer-legal-menu,
#block-aires-theme-footer-corporativo-menu {
  font-size: 20px;
  font-weight: 600;
}


/* =================================================
   FOOTER NEWSLETTER
================================================= */

.footer-col--newsletter h4 {
  font-family: 'Figtree';
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.footer-col--newsletter label {
  font-family: 'Figtree';
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.footer-col--newsletter input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 15px;
  padding: 6px 0;
  margin-bottom: 12px;
  outline: none;
}

.footer-col--newsletter input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer-col--newsletter p {
  font-family: 'Figtree';
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-col--newsletter button {
  display: block;
  width: 100%;
  padding: 12px;
  border: 2px solid #ffffff;
  border-radius: 40px;
  background: transparent;
  color: #ffffff;
  font-family: 'Figtree';
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-col--newsletter button:hover {
  background: rgba(255,255,255,0.15);
}

/* =================================================
   FOOTER LOGO
================================================= */

.footer-logo {
  max-width: 230px;
  height: auto;
}

/* =================================================
   FOOTER SOCIAL
================================================= */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-social a img {
  width: 40px;
  height: 40px;
}

.site-footer-movil__social a img {
  width: 40px;
  height: 40px;
}

/* =================================================
   FOOTER BOTTOM
================================================= */

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-family: 'Figtree';
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}

/* =================================================
   HERO BANNER
================================================= */

.site-hero {
  width: 100%;
  margin-top: -1px;
}

.site-hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

.site-hero .block {
  margin: 0;
  padding: 0;
}

.site-hero figure,
.site-hero .field {
  margin: 0;
  padding: 0;
}



/* =================================================
   HOME INTRO
================================================= */

.home-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.home-hero {margin-bottom: 40px;}
.home-pilar {margin-top: 40px;}

.intro-left {
  position: relative;
}

.blob-orange {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 600px;
  z-index: 0;
}

.title-brush {
  position: relative;
  z-index: 2;
  font-family: 'VasttagBrush', cursive;
  font-size: 72px;
  line-height: 1.1;
  color: #2f6b2f;
}

.title-brush span {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  margin-top: 8px;
  color: #2f6b2f;
}

.intro-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.intro-right img {
  max-width: 100%;
  height: auto;
}

/* =================================================
   BREADCRUMB
================================================= */

.breadcrumb-nav {
  padding: 16px 0;
  font-family: 'Figtree',sans-serif;
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  font-weight: 100;
}

.breadcrumb-nav ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-nav li::after {
  content: '›';
  margin-left: 8px;
  color: #999;
}

.breadcrumb-nav li:last-child::after {
  display: none;
}

.breadcrumb-nav a {
  color: #498037;
  text-decoration: none;
  font-weight: 300;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav li:last-child {
  color: #333;
  font-weight: 100;
}

/* =================================================
        ENCUÉNTRANOS EN TU TIENDA FAVORITA
================================================= */

.tiendas-favoritas {
  padding: 60px 0;
  text-align: center;
}

.tiendas-favoritas__titulo {
  font-family: 'Figtree', sans-serif;
  font-size: 28px;
  color: #2f6b2f;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  font-weight: 300;
}

.tiendas-favoritas__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.tiendas-favoritas__logos img {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.tiendas-favoritas__logos a:hover img {
  transform: scale(1.1);
}

.tiendas-favoritas__logos img {
  width: 193px;
}

/* =================================================
   BOTÓN BROCHAZO
================================================= */

.recetas-mas {
  text-align: center;
  padding: 40px 0 60px;
}

.btn-mas-recetas {
  display: inline-block;
  text-decoration: none;
  position: relative;
}

.btn-mas-recetas__wrap {
  display: inline-block;
  position: relative;
  width: 400px;
  height: auto;
}

.btn-mas-recetas__svg,
.btn-mas-recetas__svg-hover {
  width: 400px;
  height: auto;
  display: block;
}

.btn-mas-recetas__svg-hover {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease;
}

.btn-mas-recetas:hover .btn-mas-recetas__svg-hover {
  clip-path: inset(0 0% 0 0);
}

/* =================================================
   COOKIES BANNER
================================================= */

#sliding-popup {
  background-color: #1a3f16 !important;
}

#sliding-popup .popup-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#sliding-popup .popup-content #popup-text {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0;
}

#sliding-popup .popup-content #popup-text a {
  color: #ffffff;
  text-decoration: underline;
}

#sliding-popup .popup-content #popup-buttons button.agree-button {
    background-color: #bcbd48 !important;
    color: #ffffff !important;
    font-family: 'Figtree', sans-serif !important;
    font-weight: 300 !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

#sliding-popup .popup-content #popup-buttons button.decline-button {
    background-color: #488037 !important;
    color: #ffffff !important;
    font-family: 'Figtree', sans-serif !important;
    font-weight: 300 !important;
    padding: 10px 24px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    border: 0px;
}

.decline-button.eu-cookie-compliance-default-button.button.button--small.button--primary {
  background: #dc0031;}

.eu-cookie-compliance-message h2 {font-size: 26px !important; font-weight: 300 !important;}

.eu-cookie-compliance-message p {
  font-size: 14px !important;
  display: inline;
  font-weight: 300 !important;
}

/* Ocultar mensajes de actualización admin */
.messages--warning[role="alert"], .messages-list__item.messages.messages--error {
  display: none !important;
}

  /* =================================================
   BUSCADOR HEADER
================================================= */

.site-search {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 16px;
}

.site-search__toggle {
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.site-search__toggle:hover {
  opacity: 0.8;
}

.site-search__form {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 40px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 8px 16px;
  width: 280px;
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
}

.site-search__form.active {
  visibility: visible;
  opacity: 1;
}

.site-search__input {
  border: none;
  outline: none;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: #333;
  width: 100%;
  background: transparent;
}

.site-search__btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #498037;
  display: flex;
  align-items: center;
  padding: 0;
}


/* =================================================
   BUSCADOR
================================================= */

.site-header__right {
  flex-direction: column;
  align-items: flex-end;
}

.site-header__left {
  flex-direction: column;
  align-items: flex;
}

.buscar-cerrar {
  position: fixed;
  top: 24px;
  right: 24px;
  color: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  transition: background 0.2s ease;
  z-index: 999;
}

.buscar-cerrar:hover {
  background: #e0e0e0;
}

nav#block-aires-theme-secondary-menu {
    margin-right: 20px;
}
 

.buscar-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buscar-hero {
  text-align: center;
  padding: 60px 20px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.buscar-titulo {
  font-family: 'Figtree', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 32px;
}

.buscar-page .search-form .form-actions {
  display: flex;
  align-items: center;
} 

/* Ocultar elementos innecesarios */
.buscar-page .search-advanced,
.buscar-page .search-help-link,
.buscar-page details,
.buscar-page label[for="edit-keys"] {
  display: none;
}

.buscar-page .search-results--empty {
  display: none;
}

/* Wrapper del input + botón */
.buscar-page .search-form {
  display: flex;
  align-items: center;
  border: 2px solid #498037;
  border-radius: 50px;
  overflow: hidden;
  padding: 4px 4px 4px 20px;
  background: #fff;
}

.buscar-page .search-form .form-item-keys {
  flex: 1;
  margin: 0;
}

.buscar-page .search-form input[type="search"],
.buscar-page .search-form input[type="text"] {
  width: 100%;
  border: none;
  outline: none;
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  color: #2d2d2d;
  background: transparent;
  padding: 10px 0;
}

.buscar-page .search-form .form-actions {
  margin: 0;
}

.buscar-page .search-form .form-submit {
  background-color: #498037;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.buscar-page .search-form .form-submit:hover {
  background-color: #3a6a2c;
}

/* Resultados */
.buscar-page .search-results {
  text-align: left;
  margin-top: 32px;
}

.buscar-page .search-result {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.buscar-page .search-result h3 a {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  color: #498037;
  text-decoration: none;
}

.buscar-page .search-result h3 a:hover {
  text-decoration: underline;
}

.site-header__search,
{
  display: none;
} 

/* =================================================
   TABLA AVISO DE PRIVACIDAD
================================================= */

article.pagina-estatica table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

article.pagina-estatica table td,
article.pagina-estatica table th {
  border: 1px solid #ccc;
  padding: 12px;
  vertical-align: top;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

article.pagina-estatica table tr:first-child td {
  font-weight: 700;
  background-color: #f5f5f5;
}

/* =================================================
   FOOTER MOBILE
================================================= */

.site-footer-movil {
  background: url('../images/footer-bg.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 40px 20px 20px;
  position: relative;
}

.site-footer-movil::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 0, 0.45);
  z-index: 0;
}

.site-footer-movil > * {
  position: relative;
  z-index: 1;
}

.site-footer-movil__logo {
  text-align: center;
  margin-bottom: 32px;
}

.site-footer-movil__logo img {
  max-width: 160px;
  height: auto;
  margin: auto;
}

.site-footer-movil__menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.site-footer-movil__grupo h4,
.site-footer-movil__grupo h2 {
  font-family: 'Figtree';
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.site-footer-movil__grupo a {
  font-family: 'Figtree';
  font-size: 15px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}

.site-footer-movil__newsletter {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px;
  margin-bottom: 28px;
}

.site-footer-movil__newsletter h3 {
  font-family: 'Figtree';
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.site-footer-movil__newsletter p {
  font-family: 'Figtree';
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.site-footer-movil__form label {
  font-family: 'Figtree';
  font-weight: 700;
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}

.site-footer-movil__form input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 15px;
  padding: 6px 0;
  margin-bottom: 16px;
  outline: none;
}

.site-footer-movil__form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.site-footer-movil__form button {
  display: block;
  width: 100%;
  padding: 14px;
  border: 2px solid #ffffff;
  border-radius: 40px;
  background: transparent;
  color: #ffffff;
  font-family: 'Figtree';
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.site-footer-movil__form button:hover {
  background: rgba(255,255,255,0.15);
}

.site-footer-movil__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.site-footer-movil__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.site-footer-movil__bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-family: 'Figtree';
  font-size: 14px;
  color: #ffffff;
}



/*=====================
      AJUSTES 
====================*/


@media screen and (max-width: 764px) {
   .tiendas-favoritas__logos{gap: 10px;} 
   .tiendas-favoritas__logos img {margin-bottom: 20px;}
   .site-main {padding-top: 100px;}

    body {overflow-x: hidden;}


  article.pagina-estatica {
    padding: 25px;
  }
  .site-header-movil__container {
    width: 100%;
    box-sizing: border-box;
  }

  .site-header-movil {
    width: 100%;
    box-sizing: border-box;
    height: 99px;
  }
  article.pagina-estatica a {
  word-break: break-all;
 }

     .breadcrumb-nav {
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 8px 20px !important;
        font-size: 16px !important;
        margin-top: 10px !important;
        margin-bottom: 15px !important;
    }

.nosotros-adn {
    background-image: url('/themes/custom/aires_theme/images/bg_adn_m1.jpg') !important;
    background-position: center center !important;
    min-height: 500px !important;
  }

  .nosotros-adn__compromiso-subtitulo {font-size: 18px;}

  .nosotros-adn__col {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    align-items: start;
  }

  .nosotros-adn__icono {
    grid-row: 1 / 3;
    width: 100px;
  }

  .nosotros-adn__col-titulo {
    grid-column: 2;
  }

  .nosotros-adn__col-texto {
    grid-column: 2;
  }

  .nosotros-adn__icono img {
    width: 100px;
    height: 100px;
  }

  .nosotros-adn__col-titulo {
    text-align: left;
  }

  .nosotros-adn__col {
    gap: 0 20px;
    margin-bottom: 32px;
  }

  .nosotros-adn__col-titulo--brush {font-size: 72px; margin-top: -10px;}
  .nosotros-adn__col-titulo--normal {font-size: 32px; letter-spacing: 0px;}
  .nosotros-adn__col-texto {font-size: 18px; line-height: 18px; margin-top: -30px; font-weight: bold;}
  .nosotros-adn__compromiso-titulo {font-size: 1.7rem;}
  .nosotros-adn__texto {font-size: 20px;}
  .nosotros-adn__titulo {margin: auto;}
  .nosotros-adn__titulo--brush {font-size: 64px;}
  .nosotros-adn__titulo--bold {font-size: 30px;}
  .nosotros-adn__hero-grid {padding: 24px;}
  .nosotros-adn__compromiso {padding: 0px;}
  .nosotros-adn__hero-contenido {padding-top: 250px;}

  .home-pilar__boton {
    max-width: 90% !important;
    display: block;
    margin: 0 auto;
  }

  .home-pilar__boton-bg {
    width: 70% !important;
    height: auto !important;
  }

  .home-pilar__texto,
  .home-pilar__titulo-wrapper,
  .home-pilar__titulo-texto,
  .home-pilar__titulo-script,
  .home-pilar__titulo-bold,
  .home-pilar__boton {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .home-pilar__boton-bg {
    width: 100% !important;
  }

  .home-hero {margin-bottom: 0px;}
  .home-slogan {padding: 10px 24px;}
  .home-slogan__script {font-size: 55px; margin-top: -20px;}
  .home-slogan__bold {margin-top: -30px;}
  .home-slogan__blob img {margin-top: 20px;}
  .home-slogan__izquierda {margin-bottom: 10px;}
  .home-slogan__cert img {width: 80px; height: 80px;}
  .home-slogan__derecha {gap: 16px;}
  .recetas-mas {padding: 0px;}
  .btn-mas-recetas__wrap {width: 350px;}
  .site-header-movil__search {margin-left: 80px;}

}

.home-page .producto-recetas {
  overflow: hidden;
}
.home-page .producto-recetas-swiper {
  overflow: visible;
  padding: 0 60px;
}

/* ================================
   HOME — Recetas destacadas ajustes
   ================================ */
#home-recetas .receta-card__imagen { margin: auto; }
#home-recetas .receta-card__info { margin-top: 20px; }
#home-recetas .section-title { font-weight: 900; letter-spacing: -1px; }
#home-recetas { margin-top: 40px; }
#home-recetas .recetas-mas { text-align: center; padding: 20px 0 60px; }

@media screen and (max-width: 764px) {
  #home-recetas .producto-recetas-swiper { width: 400px; padding: 0 20px; }
  #home-recetas .recetas-mas { margin-bottom: 50px; }
}
