/*
Theme Name: TAK THAI Restaurant
Description: Plantilla personalizada para el restaurante TAK THAI basada en el diseño original. Incluye secciones dinámicas para hero, about, chef, gallery y contacto.
Author: AI Assistant
Version: 1.0
Text Domain: tak-thai
*/

/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Tipografías AvenirNextCyr */
@font-face {
  font-family: "AvenirNextCyr-Thin";
  src: url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.eot");
  src: url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.svg#AvenirNextCyr-Thin")format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNextCyr-Bold";
  /* Usa aquí la variante Bold del mismo proveedor; el hash/URLs pueden ajustarse si cambias de hosting */
  src: url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.eot");
  src: url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/276e1ec6ab619a1f89557661476c09b8.svg#AvenirNextCyr-Bold")format("svg");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

header {
  width: 100%;
  position: fixed;
  top: 0; left: 0; z-index: 1000;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
}

header .logo {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 2px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.lang-toggle {
  background: #111;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 6px 20px;
  cursor: pointer;
  font-size: 1em;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.lang-toggle:hover {
  background: #ff0099;
  color: #fff;
  border-color: #ff0099;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

header nav a:hover {
  color: #ff0099; /* color de acento */
}

/* Carrusel HERO mejorado */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.hero .carousel {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0; left: 0;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s linear;
  filter: brightness(0.7);
  pointer-events: none;
  background: #000;
}
@media (max-width: 900px) {
  .carousel-image {
    width: 100vw;
    height: 35vh;
    max-height: 35vh;
  }
  .hero .carousel {
    height: 35vh;
    min-height: 35vh;
  }
  .hero {
    min-height: 35vh;
  }
}
.carousel-image.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(24,24,24,0.42);
  border: none;
  color: #fff;
  font-size: 2.7em;
  padding: 0 17px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background .2s;
  opacity: 0.7;
}

.carousel-btn.left {
  left: 20px;
}
.carousel-btn.right {
  right: 20px;
}
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 12;
}
.carousel-dots .dot {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-dots .dot.active {
  background: #fff;
  border-color: #ff0099;
}
.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
}
.logo-hero {
  max-width: 400px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}
.logo-hero-centered {
  max-width: 400px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}
.hero-content h1 {
  font-size: 3em;
  text-shadow: 0 4px 16px #000a;
  color: #faf4e3;
}
.hero-buttons {
  margin-top: 20px;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 32px;
  border: 2px solid #fff;
  color: #fff;
  background: rgba(0,0,0,0.2);
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-buttons .btn:hover {
  background: #ff0099;
  color: #fff;
  border-color: #ff0099;
}

/* Promo media */
/* VIDEO LANDING FULL HEIGHT - mismo tamaño que hero */
.promo-media {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  background: #222;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.promo-media video,
.promo-media .youtube-container,
.promo-media .youtube-container iframe {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.promo-media .youtube-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.promo-media .video-placeholder {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.promo-media .video-overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}
.promo-media .play-btn {
  pointer-events: auto;
  font-size: 3.5em;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 18px #000a;
}
.promo-media .play-btn:hover {
  background: #ff0099;
}
@media (max-width: 600px) {
  .promo-media, .promo-media video, .promo-media .video-overlay {
    height: 95vh !important;
    min-height: 95vh !important;
  }
}

/* Sobre nosotros: mismo tamaño que hero */
.about {
  position: relative;
  background: #faf4e3;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  text-align: center;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.about .icon img {
  width: 20%;
  min-width: 40px;
  margin-bottom: 2rem;
}
.about p {
  max-width: 420px;
  margin: 0 auto;
  font-size: 1.18em;
  color: #938f85;
  line-height: 1.34;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .about {
    height: 95vh;
    min-height: 95vh;
  }
  .about p {
    font-size: 1em;
    max-width: 86vw;
    line-height: 1.30;
  }
}
@media (max-width: 600px) {
  .about {
    height: 95vh;
    min-height: 95vh;
    padding: 0;
  }
  .about p {
    max-width: 98vw;
    padding: 12px;
    font-size: 0.95em;
    width: 300px;
  }
  .about .icon img {
    width: 16vw;
    min-width: 26px;
    margin: 3rem;
  }
}

/* Chef */
.chef {
  background: #111;
  color: #fff;
  padding: 48px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.chef img {
  width: 350px; height: auto;
  border-radius: 12px;
  margin: 0 24px;
  box-shadow: 0 0 24px #000a;
}

.chef-info {
  max-width: 520px;
  text-align: left;
}

/* Galería de platos */
/* GALERÍA de platos */
.gallery {
  position: relative;
  background: #000 !important;
  height: 80vh;
  min-height: 70vh;
  max-height: 90vh;
  padding: 24px 0;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  z-index: 1;
  clear: both;
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: min(1200px, 100%);
  height: 100%;
  gap: 0px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  grid-auto-flow: row;
  place-items: stretch;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  background: #000;
  display: block;
}
@media (max-width: 900px) {
  .gallery {
    height: 95vh;
    min-height: 95vh;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    height: 95vh;
    max-height: 95vh;
  }
  .gallery-grid img {
    object-fit: cover;
    object-position: center;
  }
}
/* Galería - grid correcto en mobile */
@media (max-width: 600px) {
  .gallery {
    height: 95vh;
    min-height: 95vh;
    max-height: 95vh;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    height: 95vh;
    min-height: 95vh;
    max-height: 95vh;
    width: 100vw;
    position: relative;
    z-index: 1;
    gap: 0;
    display: grid;
  }
  .gallery-grid img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    position: relative;
    display: block;
    background: #000;
  }
}



/* Contacto & Mapa */
/* CONTACTO: mismo tamaño que hero */
.contacto {
  position: relative;
  display: flex;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
  z-index: 2;
  clear: both;
  overflow: hidden;
}
.mapa {
  flex: 1 1 50%;
  overflow: hidden;
  height: 100vh;
  position: relative;
  background: #111;
  margin: 0;
  z-index: 1;
}
.mapa iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(1) brightness(0.25) contrast(1.15) invert(0.02) sepia(0.5) hue-rotate(-20deg);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.contact-info-box {
  flex: 1 1 50%;
  background: #ff22a9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #000;
  padding: 44px 24px 44px 24px;
  position: relative;
  z-index: 1;
}
.logo-contacto {
  font-weight: bold;
  font-size: 3.5em;
  letter-spacing: 1.5px;
  line-height: 90%;
  color: #fff4d1;
  margin-bottom: 20px;
}
.contact-info-box h3 {
  font-size: 2em;
  font-weight: bold;
  margin: 10px 0 16px 0;
  letter-spacing: 1px;
}
.contact-info-box p {
  font-size: 1.13em;
  color: #2a0020;
  margin: 6px 0;
}
.contact-info-box strong {
  font-size: 1.1em;
  color: #000;
  display: block;
  margin-top: 26px;
}
@media (max-width: 900px) {
  .contacto {
    flex-direction: column;
    height: 95vh;
    min-height: 95vh;
  }
  .mapa, .contact-info-box {
    height: 47.5vh;
    width: 100vw;
  }
  .contact-info-box { font-size: 0.95em; padding: 24px 8px; }
  .logo-contacto { font-size: 2em; }
}
@media (max-width: 600px) {
  .contacto {
    height: 123vh;
    min-height: 95vh;
    position: relative;
    z-index: 2;
    margin-top: 0;
    clear: both;
  }
  .mapa, .contact-info-box {
    height: 47.5vh;
    position: relative;
    z-index: 1;
  }
}

/* CHEF SLIDER - mismo tamaño que hero */
.chef-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.chef-carousel {
  position: absolute;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
}
.chef-carousel-image {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s linear;
  filter: brightness(0.55);
}
.chef-carousel-image.chef-img-22 {
  /* desplazar el encuadre hacia abajo para ver mejor el plato / vaso */
  object-position: center 78%;
}
.chef-carousel-image.chef-img-33 {
  /* aún más abajo para mostrar la hoja entrando al vaso */
  object-position: center 84%;
}


.carousel .copa {
  object-position: center 12%;
}


@media (max-width: 600px) {
  .chef-carousel-image.chef-img-22 {
    object-position: center 72%;
  }
  .chef-carousel-image.chef-img-33 {
    object-position: center 82%;
  }
}
.chef-carousel-image.active {
  opacity: 1;
}
.chef-content {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  padding-top: 120px;
}
.chef-content h2 {
  font-family: "AvenirNextCyr-Bold", "AvenirNextCyr-Thin", 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.3em;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.chef-content p {
  font-family: "AvenirNextCyr-Thin", 'Segoe UI', Arial, sans-serif;
  font-size: 1.08em;
  color: #e1dfdb;
  font-weight: 300;
  line-height: 1.35;
  max-width: 680px;
  margin: 0 auto;
  text-shadow: 0 2px 10px #111a;
}
.chef-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 12;
}
.chef-carousel-dots .dot {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.23);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.chef-carousel-dots .dot.active {
  background: #fff;
  border-color: #ff0099;
}
@media (max-width: 900px) {
  .chef-carousel, .chef-slider, .chef-carousel-image { height: 60vh !important; min-height: 380px !important; }
  .chef-content { padding-top: 40px; }
  .chef-content h2 { font-size: 1.1em; }
  .chef-carousel-dots { bottom: 16px; }
}

@media (max-width: 900px) {
  .chef-slider, .chef-carousel, .chef-carousel-image {
    height: 95vh !important;
    min-height: 95vh !important;
  }
  .chef-content { padding-top: 40px; }
  .chef-content h2 { font-size: 1.1em; }
  .chef-carousel-dots { bottom: 16px; }
}
@media (max-width: 600px) {
  .chef-slider, .chef-carousel, .chef-carousel-image {
    height: 95vh !important;
    min-height: 95vh !important;
    max-height: 100vh !important;
  }
  .chef-content {
    padding-top: 30px;
    max-width: 95vw;
  }
  .chef-content h2 {
    font-size: 1.14em;
    padding: 0 2vw;
  }
  .chef-content p {
    font-size: 0.98em;
    padding: 0 12px;
    max-width: 97vw;
    line-height: 1.26;
  }
}

/* Dots estilo "material" suave, blur y desenfoque */
.carousel-dots .dot, .chef-carousel-dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 7px;
  border: none;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 2px 8px 0 rgba(32,16,0,0.14);
  transition: background 0.18s, box-shadow 0.18s;
  filter: blur(0.2px) contrast(0.93) brightness(1);
}
.carousel-dots .dot.active, .chef-carousel-dots .dot.active {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(32,16,0,0.22);
}
@media (max-width: 600px) {
  .carousel-dots, .chef-carousel-dots {
    gap: 1px !important;
    bottom: 10px !important;
  }
  .carousel-dots .dot, .chef-carousel-dots .dot {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    border-width: 2.5px;
  }
}

@media (max-width: 900px) {
  .hero, .hero .carousel {
    height: 93vh !important;
    min-height: 93vh !important;
    max-height: 100vh !important;
  }
  .carousel-image {
    height: 93vh !important;
    min-height: 93vh !important;
    max-height: 100vh !important;
    object-fit: cover !important;
    object-position: center 35% !important;
  }
}
@media (max-width: 600px) {
  .hero, .hero .carousel {
    height: 95vh !important;
    min-height: 95vh !important;
    max-height: 100vh !important;
  }
  .carousel-image {
    height: 97vh !important;
    min-height: 95vh !important;
    max-height: 100vh !important;
    width: 100vw !important;
    object-fit: cover !important;
    object-position: center 42% !important;
  }
  .logo-hero {
    max-width: 280px;
    width: 100px;

  }
  .logo-hero-centered {
    max-width: 400px;
    width: 70%;

  }
  .hero-content h1 {
    margin-top: 3vh;
    font-size: 2.5em;
  }
  .hero-buttons {
    margin-top: 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    display: block;
    margin: 0;
    width: auto;
    min-width: 200px;
  }
}

/* Animaciones de entrada para secciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.section-animate {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-animate.fade-in {
  opacity: 1;
  animation: fadeIn 0.8s ease-out forwards;
}

.promo-media.section-animate,
.chef-slider.section-animate,
.gallery.section-animate {
  animation: fadeIn 1s ease-out forwards;
}

.about.section-animate {
  animation-delay: 0.1s;
}

.chef-slider.section-animate {
  animation-delay: 0.2s;
}

.gallery.section-animate {
  animation-delay: 0.1s;
}

.contacto.section-animate {
  animation-delay: 0.1s;
}

.footer.section-animate {
  animation-delay: 0.1s;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-buttons-es,
  .footer-buttons-en {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .hero-btns-es, .hero-btns-en {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Footer Styles */
.footer {
  background: #000;
  color: #faf4e3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding: 48px 28px 28px 28px;
  font-family: "AvenirNextCyr-Thin", Arial, sans-serif;
}
.footer-col {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
  gap: 16px;
}
.footer-logo {
  align-items: flex-start;
  justify-content: flex-start;
    margin-top: -4rem;
}
.footer-logo-text {
  font-family: "AvenirNextCyr-Bold", Arial, sans-serif;
  font-size: 2.2em;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  color: #faf4e3;
}
.footer-links h4, .footer-more h4 {
  font-family: "AvenirNextCyr-Bold", Arial, sans-serif;
  font-size: 1.16em;
  margin: 0 0 8px;
  color: #faf4e3;
  font-weight: 700;
}
.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 4px;
}
.footer-links a,
.footer-more a:not(.btn-footer) {
  color: #faf4e3;
  text-decoration: none;
  transition: color .2s;
  font-weight: 300;
  font-size: 1em;
}
.footer-links a:hover,
.footer-more a:not(.btn-footer):hover {
  text-decoration: underline;
  color: #fff;
}
.reclamo-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.reclamo-box img {
  width: 50px;
  height: auto;
}
.footer-social {
  margin-top: 8px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #faf4e3;
  border-radius: 50%;
  transition: all 0.2s;
}
.social-icon:hover {
  background: #faf4e3;
}
.social-icon:hover svg {
  stroke: #000;
}
.footer-more .footer-buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-more .btn-footer {
  border: 1px solid #faf4e3;
  color: #faf4e3;
  background: none;
  padding: 7px 18px;
  border-radius: 25px;
  font-size: 0.95em;
  text-decoration: none;
  transition: background .2s, color .2s;
  font-family: "AvenirNextCyr-Thin", Arial, sans-serif;
  font-weight: 300;
}
.footer-more .btn-footer:hover {
  background: #faf4e3;
  color: #000;
}
.footer-bottom {
  text-align: center;
  background: #000;
  color: #bbb;
  padding: 16px 6px 24px 6px;
  font-size: 0.9em;
  font-family: "AvenirNextCyr-Thin", Arial, sans-serif;
}
.footer-bottom p {
  margin: 4px 0;
}
.footer-dev {
  margin-top: 8px;
}
.mesa-logo {
  font-weight: bold;
  color: #faf4e3;
}
@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    padding: 32px 16px;
  }
  .footer-col {
    width: 100%;
    min-width: 0;
    align-items: center;
  }
  .footer-logo {
    align-items: center;
    justify-content: center;
  }
  .footer-logo-text {
    text-align: center;
  }
  .reclamo-box {
    justify-content: center;
  }
  .footer-more .footer-buttons {
    justify-content: center;
  }
}