@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rouge+Script&family=Style+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

@font-face {
  font-family: "UrbanBrush";
  src: url("../fonts/Urban Brush.ttf");
}


body {
  font-family: "Open Sans", sans-serif;
  color: #0c0c0c;
  background-image: url(../images/backgorundr.png);
  background-attachment: fixed;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1 {
  font-family: "UrbanBrush", serif;
  /*'Style Script', cursive; 'Rouge Script', cursive; 'Dancing Script', cursive;*/
  text-transform: uppercase;
  color: #ffbe33;
}


.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.heading_container h2 span {
  color: #8f2926ff;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;

}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8f2926ff;
}

.bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page .hero_area .bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right top;
  object-position: right top;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

/*Seccion del logo*/
.navbar-brand {
  font-family: 'Dancing Script', cursive;
  padding-left: 3%;
}

.navbar-brand span {
  font-size: 32px;
  color: #ffffff;
}

/*Seccion del Menu*/
.custom_nav-container {
  margin: 0px;
  padding: 0px;
  /*background-image: url(../images/backgroundb.png);*/
}

.custom_nav-container .navbar-nav {
  padding-left: 0%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #8f2926ff;
  font-family: 'UrbanBrush';
  font-size: 42px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ffbe33;
  /* red;*/
}

.custom_nav-container .nav_search-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: #ffffff;
  /* margin: 0 10px;*/
}

.custom_nav-container .nav_search-btn:hover {
  color: #ffbe33;
  /* red;*/
}

.custom_nav-container .dropdown-item:hover {
  background-color: #ffbe33;
  color: #8f2926ff;
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user_option a {
  margin: 0 10px;
}

.user_option .user_link {
  color: #ffffff;
}

.user_option .user_link:hover {
  color: #ffbe33;
  /* red;*/
}

.user_option .cart_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user_option .cart_link svg {
  width: 17px;
  height: auto;
  fill: #ffffff;
  margin-bottom: 2px;
}

.user_option .cart_link:hover svg {
  fill: #8f2926ff;
}

.user_option .order_online {
  display: inline-block;
  padding: 8px 30px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.user_option .order_online:hover {
  background-color: red;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #8f2926ff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #8f2926ff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
  margin-bottom: 25px;
}

.slider_section .detail-box h1 {
  font-size: 5.5rem;
  /* font-weight: bolder;*/
  margin-bottom: 15px;
}

.slider_section .detail-box p {
  font-family: "Abril Fatface", serif;
  font-size: 36px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #8f2926ff;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
}

.slider_section .detail-box a:hover {
  background-color: darkred;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #8f2926ff;
}

.offer_section {
  position: relative;
  padding-top: 45px;
}

.offer_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
  border-radius: 5px;
  padding: 20px 15px;
  background-color: darkred;
  color: #ffffff;
}

.offer_section .box .img-box {
  width: 175px;
  min-width: 175px;
  height: 175px;
  margin-right: 15px;
  position: relative;
  -webkit-transition: all 0.1 0.5s;
  transition: all 0.1 0.5s;
  border-radius: 100%;
  border: 5px solid darkred;
  overflow: hidden;
}

.offer_section .box .img-box img {
  width: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.offer_section .box .detail-box h5 {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  margin: 0;
}

.offer_section .box .detail-box h6 {
  font-family: 'Dancing Script', cursive;
  margin: 10px 0;
}

.offer_section .box .detail-box h6 span {
  font-size: 2.5rem;
  font-weight: bold;
}

.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  background-color: darkred;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.offer_section .box .detail-box a:hover {
  background-color: red;
}

.offer_section .box .detail-box a svg {
  width: 20px;
  height: auto;
  margin-left: 5px;
  fill: #ffffff;
}

.offer_section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.food_section .filters_menu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 25px;
}

.food_section .filters_menu li.active {
  background-color: darkred;
  color: #ffffff;
}

.food_section .box {
  position: relative;
  margin-top: 25px;
  background-color: darkred;
  border-radius: 10px;
  color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f1f2f3 25px, #222831 25px);
}

.food_section .box .img-box {
  background: #f1f2f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 215px;
  border-radius: 0 0 0 45px;
  margin: -1px;
  padding: 25px;
}

.food_section .box .img-box img {
  max-width: 100%;
  max-height: 145px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.food_section .box .detail-box {
  padding: 25px;
}

.food_section .box .detail-box h5 {
  font-weight: 600;
}

.food_section .box .detail-box p {
  font-size: 15px;
}

.food_section .box .detail-box h6 {
  margin-top: 10px;
}

.food_section .box .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: red;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}

.food_section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.food_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: red;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.food_section .btn-box a:hover {
  background-color: red;
}

/*inicia la seccion About*/
.about_section {
  color: #ffffff;
  margin-top: 5px;
  padding: 0%;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
  padding-top: 20%;
}

.about_section .detail-box {
  margin-top: 0px;
  padding-top: 0px;
}


/*para centrar las estrellas con el texto*/
.about_section h4.centrar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.about_section h4.centrar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}


.about_section .detail-box h4 {
  font-family: "UrbanBrush", serif;
  color: #ffbe33;
  font-size: 65px;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: rgb(192, 12, 6);
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #ffbe33;
  color: #8f2926ff;
}

/*Fin de la seccion About*/

.book_section {
  position: relative;
  background-color: white;
  background-image: url(../images/tablas.png);
}

.book_section .heading_container {
  margin-bottom: 25px;
}

.book_section h2 {
  font-family: "UrbanBrush";
  font-size: 48px;
  color: #8f2926ff;
}

.book_section .form_container {
  background-color: #8f2926ff;
  border-top: 25px solid #8f2926ff;
  border-left: 25px solid #8f2926ff;
  border-right: 25px solid #8f2926ff;
  border-bottom: 8px solid #8f2926ff;
}

.book_section .form_container .form-control {
  width: 100%;
  border: #8f2926ff;
  height: 50px;
  margin-bottom: 10px;
  padding-left: 25px;
  border: 1px solid #ffbe33;
  outline: none;
  color: #000000;
  border-radius: 0px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.book_section .form_container .form-control::-webkit-input-placeholder {
  color: #999;
}

.book_section .form_container .form-control:-ms-input-placeholder {
  color: #999;
}

.book_section .form_container .form-control::-ms-input-placeholder {
  color: #999;
}

.book_section .form_container .form-control::placeholder {
  color: #999;
}

.book_section .form_container .nice-select .current {
  font-size: 16px;
}

.book_section .form_container button {
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.book_section .form_container button:hover {
  background-color: #f0ae21;
  color: #8f2926ff;
}

.book_section .map_container {
  width: 100%;
  height: 345px;
  border: 1px solid #ccc;
  border-radius: 0px;
  overflow: hidden;
}

.book_section .map_container #googleMap {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 15px;
}

.client_section .box .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 115px;
  position: relative;
  margin-top: 30px;
}

.client_section .box .img-box img {
  border-radius: 100%;
  border: 5px solid darkred;
  position: relative;
}

.client_section .box .img-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: red;
  -webkit-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
}

.client_section .box .detail-box {
  background-color: #222831;
  color: #ffffff;
  padding: 25px 25px 15px 25px;
  border-radius: 5px;
}

.client_section .box .detail-box h6 {
  font-weight: 600;
  font-size: 18px;
  margin: 15px 0 5px 0;
}

.client_section .box .detail-box p {
  margin-bottom: 0;
  font-size: 15px;
  margin-bottom: 10px;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
  padding: 0 15px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  background-color: indianred;
  color: #ffffff;
  outline: none;
  bottom: 0px;
  font-size: 24px;
  margin: 0 5px;
  border-radius: 100%;
}

/* client section end */

/*Seccion de Contacto*/
.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container .form-group {
  margin-bottom: 25px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
  background-color: transparent;
  border: 1px solid #ccc;
  outline: none;
  color: #000000;
  border-radius: 5px;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #222222;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::placeholder {
  color: #222222;
}

.contact_section .form_container input.message-box {
  height: 120px;
  border-radius: 5px;
}

.contact_section .form_container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: #8f2926ff;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: #ffbe33;
}

/* footer section*/
.footer_section {
  background-image: url(../images/backgroundb.png);
  color: #8f2926ff;
  padding: 75px 0 40px 0;
  text-align: center;
}


.footer_section h4 {
  color: #8f2926ff;
  font-size: 54px;
  font-family: "UrbanBrush";
}

.footer_section h4,
.footer_section .footer-logo {

  margin-bottom: 20px;

}

.footer_section p {
  color: #8f2926ff;
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

/*para centrar las estrellas con el texto*/
.footer_section h4.centrar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.footer_section h4.centrar img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #8f2926ff;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: #ffbe33;
}



.footer_section .footer-logo {
  display: block;
  font-size: 44px;
  line-height: 1;
  color: #8f2926ff;
  font-family: "UrbanBrush";
}

.footer_section .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #8f2926ff;
  border-radius: 100%;
  margin: 0 2.5px;
  font-size: 36px;
}

.footer_section .footer_social a:hover {
  color: #8f2926ff;
  background-color: #ffbe33;
}


.footer_section .footer-hora .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}


.footer_section .footer-hora .contact_link_box a {
  margin: 5px 0;
  color: #8f2926ff;
}

.footer_section .footer-hora .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer-hora .contact_link_box a:hover {
  color: #ffbe33;
}


/*Imagen*/
.footer_section .footer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}



.footer_section .footer-info {
  text-align: center;
  margin-top: 25px;
}

.footer_section .footer-info p {
  color: #8f2926ff;
  margin: 0;
}

.footer_section .footer-info p a {
  color: #8f2926ff;
}

/*# sourceMappingURL=style.css.map */

/* ============================================================
   HERO — drop shadow en imagenes del carousel
   ============================================================ */

.slider_section .detail-box img {
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.3));
  will-change: transform;
}

.slider_section .detail-box {
  overflow: hidden;
}

/* ============================================================
   NAVBAR — siempre fijo sobre el hero (estilo Pasteko)
   ============================================================ */

nav.custom_nav-container {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /* transparente al inicio — hero visible detrás */
  background-color: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition:
    background-color 0.45s ease,
    backdrop-filter  0.45s ease,
    box-shadow       0.45s ease;
}

/* al hacer scroll: frosted glass completo */
nav.custom_nav-container.nav-sticky {
  background-color: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(143, 41, 38, 0.20),
    0 6px 28px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   SUCURSALES SECTION
   ============================================================ */

.sucursales_section {
  background-color: #7a1e1b;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,190,51,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,190,51,0.06) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* linea dorada decorativa superior */
.sucursales_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffbe33, #ffbe33, transparent);
}

.sucursales_section .heading_container {
  align-items: center;
  text-align: center;
}

.sucursales_section .heading_container h2 {
  color: #ffffff;
  font-size: 2.6rem;
  font-family: "UrbanBrush", serif;
  letter-spacing: 1px;
}

.sucursales_section .heading_container h2 span {
  color: #ffbe33;
}

.sucursales_section .heading_container p {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-top: 6px;
}

/* separador dorado bajo el titulo */
.sucursales_section .heading_container::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ffbe33;
  margin: 18px auto 0;
}

.suc-card {
  text-align: center;
  padding: 42px 20px 36px;
  border: 1px solid rgba(255, 190, 51, 0.2);
  border-radius: 16px;
  margin: 12px 5px;
  transition: all 0.35s ease;
  cursor: default;
  background-color: rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

/* brillo dorado en hover */
.suc-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,190,51,0.08), transparent);
  transition: left 0.5s ease;
}

.suc-card:hover::after {
  left: 120%;
}

.suc-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: #ffbe33;
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,190,51,0.3);
}

.suc-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #ffbe33, #e6a820);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: #ffffff;
  transition: all 0.35s;
  box-shadow: 0 4px 15px rgba(255, 190, 51, 0.35);
}

.suc-card:hover .suc-icon {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  color: #8f2926;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.suc-card h5 {
  color: #ffffff;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0 0 6px;
}

.suc-card .suc-estado {
  color: rgba(255, 190, 51, 0.8);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  z-index: 9998;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.55);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  background-color: #1eb857;
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.65);
}

/* ============================================================
   ABOUT — animaciones de imágenes (scroll + clic)
   ============================================================ */

/* Estado inicial: ocultas antes de entrar en viewport */
.img-box img.about-img {
  opacity: 0;
  transform: translateX(-40px);
  cursor: pointer;
  will-change: transform, opacity;
}

.detail-box .centrar img.about-star {
  opacity: 0;
  transform: rotate(-180deg) scale(0.3);
  cursor: pointer;
  display: inline-block;
  will-change: transform, opacity;
}

/* Al entrar en viewport: slide-in + luego flotación continua */
.img-box img.about-img.animate-in {
  animation:
    aboutSlideIn  0.75s cubic-bezier(0.22, 1, 0.36, 1) both,
    aboutFloat    4.5s ease-in-out 0.75s infinite;
}

/* Al entrar: spin desde –180° + luego balanceo suave */
.detail-box .centrar img.about-star.animate-in {
  animation:
    starSpinIn    0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    starRock      3.5s ease-in-out 0.65s infinite;
}

/* Clic en mascota: rebote */
.img-box img.about-img.bounce-click {
  animation: aboutBounce 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
}

/* Clic en estrella: spin rápido */
.detail-box .centrar img.about-star.spin-click {
  animation: starSpin360 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both !important;
}

/* ---- keyframes ---- */
@keyframes aboutSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  40%       { transform: translateY(-9px) rotate(-1.5deg); }
  70%       { transform: translateY(-4px) rotate(1deg); }
}

@keyframes starSpinIn {
  from { opacity: 0; transform: rotate(-180deg) scale(0.3); }
  to   { opacity: 1; transform: rotate(0deg)    scale(1); }
}

@keyframes starRock {
  0%, 100% { transform: rotate(0deg)   scale(1); }
  35%       { transform: rotate(18deg)  scale(1.08); }
  65%       { transform: rotate(-10deg) scale(1.04); }
}

@keyframes aboutBounce {
  0%   { transform: translateY(0)     scale(1); }
  20%  { transform: translateY(-16px) scale(1.05); }
  45%  { transform: translateY(-7px)  scale(1.02); }
  65%  { transform: translateY(-12px) scale(1.04); }
  80%  { transform: translateY(-3px)  scale(1.01); }
  100% { transform: translateY(0)     scale(1); }
}

@keyframes starSpin360 {
  from { transform: rotate(0deg)   scale(1); }
  50%  { transform: rotate(200deg) scale(1.3); }
  to   { transform: rotate(360deg) scale(1); }
}

/* ============================================================
   ANIMACIONES
   ============================================================ */

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}