:root {
  --accent-color: #000;
  --bs-gray-100: #f3f3f3;
  --bs-gray-200: #e7e5e2;
  --bs-primary: #787d62;
  --bs-secondary: #F6F5F2;
  --bs-primary-rgb: 120, 125, 98;
  --bs-body-bg-rgb: 246, 245, 242;
  --bs-light: #fff;
  --bs-dark: #000;
  --navbar-color-color: #131814;
  --swiper-theme-color: #e6b980 !important;
  --swiper-pagination-color: #e6b980 !important;

}

@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

:root {
  --body-font: "Josefin Slab", serif;
  --heading-font: "Cinzel", sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;

  font-optical-sizing: auto;
  font-style: normal;
}

@keyframes circle-in-center {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(125%);
  }
}

[transition-style="in:circle:center"] {
  animation: 20s cubic-bezier(.25, 1, .30, 1) circle-in-center both;
}


body {
  background-color: #00020f;
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--accent-color);
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
}
.contenedor-main01{
  margin: 0;
  padding: 0 20%;
  width: 100%;
}

ul.inner-list li {
  font-size: 1.2em;
}

strong {
  font-weight: bold;
}

a {
  color: var(--bs-dark);
  text-decoration: none;
  transition: 0.3s color ease-out;
}

a:hover {
  text-decoration: none;
  color: var(--bs-primary);
}

.form-control:focus,
.accordion-button:focus {
  box-shadow: none;
}

/*------------ Background Color -----------*/
.bg-secondary {
  background: var(--bs-secondary) !important;
}

.bg-dark {
  background: var(--bs-dark) !important;
}

.bg-light {
  background: var(--bs-light) !important;
}

.bg-gray-1 {
  background-color: var(--bs-gray-100) !important;
}



/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}

.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}

.padding-large {
  padding-top: 5em;
  padding-bottom: 2em;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}

.margin-medium {
  margin-top: 5em;
  margin-bottom: 5em;
}

.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}

@media only screen and (max-width: 768px) {

  .margin-small,
  .margin-medium,
  .margin-large {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* ======================================================================== */
/* ================================ HEADER ================================ */
/* ======================================================================== */

/* ============================= ANIMACIONES ============================== */
@keyframes fadeInIzq {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDer {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =============================== PORTADA ================================ */

.contenedor-header {
  background-image: url("../img/PORTADA-02.jpg");
  width: 100%;
  height: 100vh;
  top: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0px 16px 16px 7px rgba(0, 0, 0, 0.1);
  
}

.agave-izq {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: auto;
  opacity: 0;
  animation: fadeInIzq 2s forwards;
  max-width: 600px;
}

.agave-der {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: auto;
  opacity: 0;
  animation: fadeInDer 2s forwards;
  max-width: 600px;
}

.navbar-container {
    width: 100%;
    background-color: #06142d; /* azul oscuro tequila */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border-bottom: solid 3px #917d59;
    box-shadow: 0px 12px 11px 0px rgba(0,0,0,0.5);

}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo img {
    height: 20px;
    max-height: 100%;
}

/* ==== NAV LINKS ==== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease-in-out;
}
.nav-links {
  margin-bottom: 0px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
    margin-bottom: 0px;
}

.nav-links li a:hover {
    color: #9c790e; /* dorado tequila */
}

/* ==== HAMBURGER MENU ==== */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-icon span {
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==== TOGGLE HIDDEN CHECKBOX ==== */
#menu-toggle {
    display: none;
}


/*==========================================*/
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .contenedor-header{
    background-image: url("../img/PORTADA-02-vert.jpg");
    width: 100%;
    height: 100vh;
    top: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 16px 16px 7px rgba(0, 0, 0, 0.1);
  }


  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #06142d81;
    backdrop-filter: blur(2px);
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px; /* lo suficiente para mostrar todos los items */
  }
}
/*==============================================*/

/* ==== RESPONSIVE RULES ==== */
@media (max-width: 768px) {
  .contenedor-main01{
      margin: 0;
      padding: 0 5%;
      width: 100%;
    }
    .nav-links {
        flex-direction: column;
        background-color: #001f3f84;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        text-align: center;
        padding: 1rem 0;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .menu-icon {
        display: flex;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }
}
.contenedor-texto-header {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;     /* Centrado vertical */
    justify-content: flex-start; /* Cargado a la izquierda */
    padding-left: 10%;       /* Ajusta el desplazamiento lateral */
    position: absolute;      /* Para permitir posicionamiento sobre la imagen de fondo */
    top: 0;
    left: 0;
    z-index: 1;
}

.contenedor-texto-header-item {
  width: 50%;
  height: 100px;
  color: #fff;
  display: flex;
  flex-direction: column;

  justify-content: center;
  text-align: LEFT;
}

.contenedor-texto-header-item img {
  width: 350px;
}

.contenedor-texto-header-item h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 20px;
}

.contenedor-texto-header-item p {
  font-weight: 500;
  font-size: 15px;
  font-weight: 300;
}

.boton-inicio {
  background-color: transparent;
  border: solid 3px #917d59;
  padding: 5px 20px;
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  transition: .2s;
}

.boton-inicio:hover {
  cursor: pointer;
  background-color: #917d59;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contenedor-header {
    position: relative;
    height: 100vh;
  }

  .navbar {
    padding: 30px;
    z-index: 2;
  }

  .logo img {
    height: auto;
    width: 80%;
    margin-top: 0px;
  }

  .nav-links {
    flex-direction: column;
    gap: 5px;
  }

  .nav-links li {
    display: block;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .contenedor-texto-header {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-55%, -45%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;

  }

  .contenedor-texto-header-item {
    width: 85%;
    margin: 10px auto;
    
  }

  .contenedor-texto-header-item img {
    width: 150px;
    margin-top: 50px;
  }

  .contenedor-texto-header-item h2 {
    font-size: 30px;
  }

  .contenedor-texto-header-item p {
    font-size: 15px;
    margin-top: 10px;
    line-height: 18px;

  }

  .boton-inicio a{
    padding: 0px 15px;
    font-size: 16px;
    margin: auto;
  }

  .agave-izq,
  .agave-der {
    width: 40%;
    bottom: 10px;
    position: absolute;
  }
}

/* ======================================================================== */
/* ============================== BIENVENIDA ============================== */
/* ======================================================================== */

.container-fluid {
  max-width: 1540px;
  width: 100%;
}

.banner-content {
  width: 45%;
  padding: 40px;
}

.banner-content h1 {
  font-size: 50px;
  color: #ffffff !important;

}

.banner-content p {
  color: #ffffff;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
}

.banner-item-welcome {
  background-image: url(../img/banner001.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
  width: 100%;
  border-radius: 10px;
}

.banner-item {
  background-image: url(../img/banner002.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
    width: 100%;
  border-radius: 10px;
}


.swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
  border-color: transparent;
  transition: border-color 0.3s ease-out;
}

.swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50px;
  border: 1px solid #e6b980;
  transform: scale(1);
  transition: transform 0.3s ease-out;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px !important;
}

.swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.swiper-pagination span.swiper-pagination-bullet:hover:after {
  transform: scale(2);
}

.video-container {
  width: 100%;
  margin: 60px auto;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border-radius: 10px;

}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media only screen and (max-width: 1200px) {
    .banner-content h1 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff !important;

  }

 

  .banner-content h1.display-1 {
    font-size: 3rem;
  }

  .banner-content p {
    width: 90%;
  }
  .banner-item-welcome {
    background-image: url(../img/banner001-vert.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 900px;

    width: 100%;
    border-radius: 10px;
  }
  .banner-item {
    background-image: url(../img/banner002-vert.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 900px;

    width: 100%;
    border-radius: 10px;
  }
  .banner-content {
    width: 100%;
    padding: 40px;
  }
  .banner-content h1{
    margin-top: 20px;
  }
  .banner-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }


}

@media only screen and (max-width: 768px) {
  .banner-content h1.display-1 {
    padding: 0;
    margin-top: -50px;
    font-size: 2.5em;
    margin-left: 5px;
  }

  .banner-content p {
    width: 95%;

    font-weight: 500;
    font-size: 17px;
    margin-left: 5px;
  }

  .banner-item-welcome {
    background-position: left;
  }



}

/* ======================================================================== */
/* ================================ ICONOS ================================ */
/* ======================================================================== */

.icon-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.icon-box-icon img {
  width: 150px;
  align-self: center;
  margin-bottom: 10px;
}

.icon-box-icon.pe-3 .pb-3 {
  border-radius: 50%;
}

.icon-box .icon-box-content {
  width: 70%;
}

.icon-box .icon-box-content h3 {
  color: #ffffff !important;
  font-weight: 600;
  text-align: center;
}

.icon-box .icon-box-content p {
  text-align: center  ;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  line-height: 17px;
}

.icon-box-content h3.card-title {
  font-size: 1.5em;
}

/* ======================================================================== */
/* =============================== NOSOTROS =============================== */
/* ======================================================================== */

.jarallax {
  position: relative;
  z-index: 0;
  min-height: 550px;
}

.jarallax>.jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.jarallax-img {
  position: relative;
  z-index: 0;
}

.jarallax img.jarallax-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto !important;
  z-index: -100;
}

.display-header h2 {
  font-size: 60px;
  color: #2E4F69 !important;
  font-weight: 700;
}

.display-header p {
  color: #000;
  font-size: 18px;
  text-align: justify;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .jarallax {
    min-height: 280px;
  }

  .display-header {
    width: 100%;
  }

  .detail {
    padding: 0;
  }
}

/* ======================================================================== */
/* ================================ FRASES ================================ */
/* ======================================================================== */

#frases .swiper-pagination {
  display: none;
}

.review-item blockquote {
  font-weight: 400;
  line-height: 1.8;
}

.review-content .swiper-arrow {
  top: 50%;
  bottom: 0;
  z-index: 2;
  border: 1px solid #e6b980;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: 0.4s ease-in-out;
}

.review-content .swiper-arrow:hover {
  border: 1px solid #e6b980;
}

.review-content .swiper-arrow.swiper-arrow-prev {
  left: -80px;
}

.review-content .swiper-arrow.swiper-arrow-next {
  right: -80px;
}

.swiper-wrapper {
  margin-top: 70px;
  color: #fff;
}

.swiper-icon img {
  width: 30px;
  filter: invert(78%) sepia(21%) saturate(1385%) hue-rotate(1deg) brightness(91%) contrast(85%);
}

.author-detail .name {
  font-size: 20px;
  font-weight: 300;
  color: #000;
}

.SPLB-carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  
}

.SPLB-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.SPLB-carousel-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  box-sizing: border-box;
}

.SPLB-carousel-item img {
  max-width: 330px;
  height: auto;
}

.SPLB-carousel-content {
  max-width: 600px;
}

.SPLB-carousel-content h2 {
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 800;
}
.SPLB-carousel-content h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 20px;
  color: #fff;
  
}
.SPLB-carousel-content h4 {
  color: #fff;
  margin-bottom: 20px;
}

.SPLB-carousel-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  width: 80%;
}

.SPLB-carousel-content button{
  background-color: #917d59;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  border: none;
}

.SPLB-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: #917d59;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  z-index: 1;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.SPLB-prev {
  left: 10px;
}

.SPLB-next {
  right: 10px;
}

.bg-alas{
  background-image: url(../img/BG-ALAS.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  z-index: 999;
}


@media only screen and (max-width: 901px) {
  #frases .swiper-pagination {
    display: block;
    bottom: -30px;
  }

  .swiper-wrapper {
    margin-top: 20px;
  }

  .review-content .swiper-arrow {
    display: none !important;
  }
}

/* ======================================================================== */
/* ============================== PRODUCTOS =============================== */
/* ======================================================================== */
.card-productos{
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: row;
}
.card-productos img{
  width: 100px;
}
.card-productos h3{

}

.swiper-slide{
  width: 100%;
}
.titulo-product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.titulo-product img {
  width: 500px;
  margin: auto;
}

.product-image {
  position: relative;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-title {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
}

.product-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.text-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow-y: auto;
  padding: 40px;
}

.text-box .text-content {
  padding: 0;
  text-align: center;
  color: #000;
  font-weight: 500;
}



.product-image:hover .text-box {
  opacity: 1;
}

.boton-comprar {
  background-color: transparent;
  transform: scale(1.05);
  color: #000000;
  border: solid 3px #e6b980;
  padding: 5px 20px;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 900;
  border-radius: 20px;
  transition: .2s;
}

.boton-comprar:hover {
  cursor: pointer;
  background-color: #e6b980;
  border: solid 3px #e6b980;
  color: #000000;
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .SPLB-carousel-item {
    width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0px;
    box-sizing: border-box;
    max-width: 450px;
    min-width: 350px;
  }
  .SPLB-carousel-content{
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .SPLB-carousel-content h2 {
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
  }
  .SPLB-carousel-item img{
    width: 200px;
  }
  .contacto-info{
    font-size: 15px;
  }
 

  .text-box .text-content p {
    margin: 7;
  }

  .product-image {
    width: 95%;
    height: 600px;
    margin: 0 auto;
  }

}

@media (max-width: 768px) {

  .titulo-product img {
    width: 250px;
    margin-bottom: 40px;
    filter: invert(25%) sepia(10%) saturate(2548%) hue-rotate(165deg) brightness(98%) contrast(86%);
  }

  .product-image {
    width: 95%;
    height: 600px;
    margin: 0 auto;
  }

}

/* ======================================================================== */
/* =============================== CONTACTO ================================= */
/* ======================================================================== */
.contacto-info{
  color: #fff;
}
.contacto-info h6{
 font-size: 40px;
 margin-bottom: 40px;
}


.contacto {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin: 50px 0 80px 0;
  /* background-color: #edecec; */
}

.contenedor04 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contenido-contacto {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.titulo-contacto .info {
  color: #fff;

}

.datos-contacto {
  width: 100%;
  margin-left: -50px;
  padding: 20px;
  justify-content: center;
  text-align: center;
}

.datos-contacto h2 {
  font-size: 60px;
  color: #917d59 !important;
  font-weight: 700;
}

.social-contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  color: #fff;
}

.social-contacto a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 45px;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
}

.social-contacto .facebook {
  background-color: #1877f2;
}

.social-contacto .instagram {
  background-image: linear-gradient(to bottom, #7a288a, #e2553f, #e74c3c, #ff9900, #f7dc6f);
}

.social-contacto .whatsapp {
  background-color: #25D366;
}

.social-contacto .whatsapp:hover {
  background-color: #128C7E;
}

/* ==================== FORMULARIO ==================== */
.form {
  width: 100%;
  margin-left: -50px;
  padding: 20px;
  justify-content: center;
  text-align: center;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  /* max-height: 600px; */
  margin: 0 auto;
  background-color: #00103d8e;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);

  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.label {
  display: block;
  font-size: 17px;
  font-weight: bold;
  color: #fcf1cd;
  margin-bottom: 8px;

}

.input,
textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #917d59;
  border-radius: 8px;
  font-size: 19px;
  color: #fff;
  box-sizing: border-box;
  background-color: #06142d;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.input:focus,
textarea:focus {
  border: 1px solid #917d59;
  box-shadow: 0 0 5px rgba(230, 185, 128, 0.5);
}

textarea {
  min-height: 80px;
}

.btn {
  background-color: transparent;
  border: solid 3px #917d59;
  padding: 5px 20px;
  margin-top: 20px;
  color: #8b572a;
  font-size: 18px;
  font-weight: 900;
  border-radius: 20px;
  transition: .2s;
  text-align: center;
  width: 30%;
  margin: 0 auto;
}

.btn:hover {
  cursor: pointer;
  color: #fff;
  background-color: #917d59;
  transform: scale(1.05);
}

.contact-form::before {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background-color: #e6b980;
  margin: 0 auto 20px auto;
  border-radius: 10px;
}
.cont-nosotros{
  display: flex;
  width: 100%;
  height: 500px;
  flex-direction: row;
  padding: 12px;
  margin-top: 50px;
  background-image: url(../img/foto01.png);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}
.cont-nosotros img{
  width: 40%;
  border-radius: 10px;
}
.cont-nosotros-info{
  display: flex;
  flex-direction: column;
  color: #fff;
  justify-content: center;
  width: 50%;
  margin-left: 50%;
}
.cont-nosotros-info h5{
  font-size: 50px;
}
.cont-nosotros-info p{
  font-size: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
   .cont-nosotros{
    background-image: url(../img/foto01-vert.png);
    height: 100%;
    padding: 12px;
  }
  .cont-nosotros-info{
    margin-left: 0%;
    margin-bottom: 50%;
    text-align: center;
    width: 100%;
    min-height: 700px;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;

  }

  .contenedor04 {
    width: 90%;
    margin-top: 100px;
  }

  .contenido-contacto {
    flex-direction: column;
    align-items: center;
  }

  .datos-contacto,
  .form {
    width: 100%;
    margin: 0;
    padding: 80px 5px 5px 5px;
  }

  .titulo-contacto img {
    width: 200px;
  }

  .contact-form {
    width: 80%;
  }

  .btn {
    width: 50%;
  }
}

/* ===== */
@media (max-width: 768px) {
  .contenedor04 {
    margin-top: 50px;
  }

  .titulo-ubicacion {
    font-size: 30px;
    line-height: 28px;
  }

  .titulo-contacto img {
    width: 150px;
  }

  .social-contacto a {
    margin: 0 10px;
    width: 40px;
    font-size: 18px;
  }

  .form {
    width: 90%;
  }

  .contact-form {
    width: 90%;
    padding: 20px;
  }

  .btn {
    width: 60%;
  }

  .input,
  textarea {
    font-size: 12px;
    padding: 10px;
  }
  .contacto-info h6{
    font-size: 20px;
  }
}

/* ===== */
@media (max-width: 480px) {

  .contacto {
    margin: 0 auto;
  }

  .contenedor04 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .titulo-ubicacion {
    font-size: 24px;
    line-height: 22px;
  }

  .form {
    padding: 10px 5px 5px 5px;
  }

  .contact-form {
    width: 95%;
  }

  .social-contacto a {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .btn {
    width: 80%;
    font-size: 16px;
  }

  .input,
  textarea {
    font-size: 10px;
    padding: 8px;
  }
}


/*=============================================================================*/
.cont-novedades{
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
}

.cont-novedades img{
  width: 400px;
}

/* ======================================================================== */
/* =============================== FOOTER ================================= */
/* ======================================================================== */





footer {
  background-color: #06142d;
  border-top: solid 3px #917d59;
  /* Cambia a cualquier color de fondo que desees */
  width: 100%;
  padding: 50px 0;
  margin-top: 30px;
  box-shadow: 0px -12px -11px 0px rgba(0,0,0,0.5);
  /* Espaciado superior e inferior */
}

.footer-cont {
  display: flex;
  justify-content: space-between;
  /* Distribuye los elementos de manera equitativa */
  align-items: center;
  /* Centra verticalmente el contenido */
  width: 70%;
  margin: 0 auto;
  /* Centra el contenedor en el centro de la pantalla */
}

.footer-cont div {
  display: flex;
  align-items: center;
}

.footer-cont .logo-footer {
  height: 40px;
  /* Ajusta según el tamaño que desees para el logo */
}

.footer-term {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0px 30px
}

.footer-term h6 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-top: 5px;

}

.footer-term p {
  font-size: 14px;
  color: #ccc;
  /* Cambia el color del texto */
  margin-top: 0px;
}

footer i {
  font-size: 24px;
  margin-left: 15px;
  color: #fff;
  /* Cambia al color de los íconos que prefieras */
  cursor: pointer;
}

footer i:hover {
  color: #3396ff;
  /* Cambia a otro color cuando el icono sea hover (opcional) */
}

.cont-marcas {
  display: flex;
  flex-direction: row;
  width: 80%;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  margin-top: 30px;
  border-top: solid 1px #3e3e3e;
}


.marcas-desarrollo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;

}

.marcas-desarrollo p {
  color: #3e3e3e;
  font-size: 12px;
  font-weight: 600;
}

.marcas-desarrollo img {
  height: 40px;
  opacity: .4;
  transition: .3s;
}

.marcas-desarrollo img:hover {
  opacity: 1;
}



@media (max-width: 768px) {

  footer {
    background-color: #101010;
    /* Cambia a cualquier color de fondo que desees */
    width: 100%;
    padding: 50px 0;
    /* Espaciado superior e inferior */
  }

  .footer-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribuye los elementos de manera equitativa */
    align-items: center;
    /* Centra verticalmente el contenido */
    width: 90%;
    margin: 0 auto;
    /* Centra el contenedor en el centro de la pantalla */
  }

  .footer-cont div {
    display: flex;
    align-items: center;
  }

  .footer-cont .logo-footer {
    height: 50px;
    /* Ajusta según el tamaño que desees para el logo */
  }

  .footer-term {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0px 30px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-term h6 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-top: 5px;

  }

  .footer-term p {
    font-size: 14px;
    color: #ccc;
    /* Cambia el color del texto */
    margin-top: 0px;
  }

  footer i {
    font-size: 24px;
    margin-left: 15px;
    margin-top: 20px;
    color: #fff;
    /* Cambia al color de los íconos que prefieras */
    cursor: pointer;
  }

  footer i:hover {
    color: #3396ff;
    /* Cambia a otro color cuando el icono sea hover (opcional) */
  }

  .cont-marcas {
    flex-direction: column;
  }

  .marcas-desarrollo img {
    max-width: 160px;
  }

}

/* ====================== Pantalla de verificación ====================== */
.verificacion {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000207;
  background: linear-gradient(342deg, rgba(0, 2, 7, 1) 0%, rgba(10, 46, 74, 1) 46%, rgba(11, 47, 74, 1) 58%, rgba(0, 2, 7, 1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.verificacion img {
  width: 450px;
  margin-bottom: 30px;
}

.verificacion h1 {
  color: #f8d26e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.verificacion .msg-texto {
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
}

.msg-texto-pregunta {
  margin-bottom: 5px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.input-mes {
  padding: 10px;
  margin: 10px;
  width: 70px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-align: center;
  outline: none;
}

.input-año {
  padding: 10px;
  margin: 10px;
  width: 90px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-align: center;
  outline: none;
}

.button-confirmar {
  padding: 5px 20px;
  font-size: 1rem;
  background-color: #f8d26e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #3f3e3e;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 20px;
  transition: .3s;
}

button:hover {
  background-color: #d3a75c;
}

.desicion {
  font-size: 20px;
}

.salir {
  padding: 10px 25px;
  font-size: 1rem;
  background-color: #f8d26e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  margin-top: 30px;
}

.salir:hover {
  background-color: #d3a75c;
}

/* Mensaje de error */
#error-message {
  color: white;
  font-size: 1.6rem;
  margin-top: 10px;
  display: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .verificacion {
    padding: 20px;
  }

  .verificacion img {
    width: 300px;
    margin-bottom: 50px;
  }

  .verificacion h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .verificacion .msg-texto {
    font-size: 1rem;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .input-mes,
  .input-año {
    width: 60px;
    padding: 8px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .button-confirmar {
    padding: 2px 5px;
    font-size: 0.9rem;
    margin-top: 20px;
  }

  #error-message {
    font-size: 1.2rem;
    text-align: center;
  }
}

/* ====================== WhatsApp ====================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #25D366;
  text-align: center;
  font-size: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #128C7E;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}