body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #FFFCFA;
  box-sizing: border-box;
}
/* .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background-color: #FFFCFA;
  height: 150px;
}
.header .logo {
  width: 156.76px;
  height: 75px;
}
.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: 10px;
}
.header nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #776354;
  font-size: 20px;
  font-weight: 500;
}
.header .language {
  position: relative;
  margin-right: 15px;
}
.header .language .dropdown {
  display: inline-block;
}
.header .language .dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFCFA;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  white-space: nowrap;
  border-radius: 5px;
  padding: 5px;  Added padding to reduce the size of the background 
  width: 165px;  Set the width of the dropdown
}
.header .language .dropdown-content a {
  color: #776354;
  padding: 12px 4px; /* Reduced padding to decrease margin between flags 
  text-decoration: none;
  display: inline-block;
  margin: 0 3px; /* Added margin to the left and right of each element 
}
.header .language .dropdown-content a:hover {
  background-color: #ddd;
}
.header .language .dropdown:hover .dropdown-content {
  display: block;
}
.header .contact {
  background-color: #776354;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  height: 65px;
  width: 262px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.content {
  flex: 1;
}
.footer {
  background-color: #776354;
  color: #fff;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 335px;
  font-family: 'Roboto', sans-serif;
}
.footer .logo {
  background-color: #776354;
  border: 1px solid #fff;
  width: 203.62px;
  height: 91.59px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.footer .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer .column {
  margin: 0 20px;
  flex: 1 1 200px;
  margin-left: 70px; 
}
.footer .column h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 500;
}
.footer .column p {
  margin: 5px 0;
  font-size: 20px;
}
.copyright {
  background-color: #AB834D;
  color: #fff;
  text-align: left;
  padding: 10px 0;
  font-size: 14px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-left: 70px; 
  box-sizing: border-box; 
}
.copyright p {
  margin: 0;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis; 
}

@media (max-width: 1920px) {
  .header {
      padding: 10px 40px;
  }
  .header nav a {
      font-size: 18px;
  }
  .header .contact {
      font-size: 18px;
      width: 240px;
  }
  .footer .column h3 {
      font-size: 22px;
  }
  .footer .column p {
      font-size: 18px;
  }
}

@media (max-width: 1440px) {
  .header {
      padding: 10px 30px;
  }
  .header nav a {
      font-size: 16px;
  }
  .header .contact {
      font-size: 16px;
      width: 220px;
  }
  .footer .column h3 {
      font-size: 20px;
  }
  .footer .column p {
      font-size: 16px;
  }
}

@media (max-width: 1366px) {
  .header {
      padding: 10px 20px;
  }
  .header nav a {
      font-size: 15px;
  }
  .header .contact {
      font-size: 15px;
      width: 200px;
  }
  .footer .column h3 {
      font-size: 18px;
  }
  .footer .column p {
      font-size: 15px;
  }
}

@media (max-width: 720px) {
  .header {
      flex-direction: column;
      height: auto;
      padding: 20px;
  }
  .header nav {
      flex-direction: column;
      align-items: flex-start;
  }
  .header nav a {
      margin: 10px 0;
  }
  .header .contact {
      width: 100%;
      margin-top: 10px;
  }
  .footer .columns {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .footer .column {
      margin: 10px 0;
      margin-left: 0; 
  }
  .footer .logo {
      margin-bottom: 20px;
  }
  .copyright {
      padding-left: 20px; 
  }
}

@media (max-width: 375px) {
  .header {
      padding: 10px;
  }
  .header nav a {
      font-size: 14px;
  }
  .header .contact {
      font-size: 14px;
      width: 180px;
  }
  .footer .column h3 {
      font-size: 16px;
  }
  .footer .column p {
      font-size: 14px;
  }
}

@media (max-width: 360px) {
  .header {
      padding: 5px;
  }
  .header nav a {
      font-size: 12px;
  }
  .header .contact {
      font-size: 12px;
      width: 160px;
  }
  .footer .column h3 {
      font-size: 14px;
  }
  .footer .column p {
      font-size: 12px;
  }
} */

.hero-section {
  background-image: url('/img/NUESTRAS PALMAS PORTADA.jpg');
  /* URL de la imagen de fondo */
  background-size: cover;
  /* Asegura que la imagen cubra todo el contenedor */
  background-position: center;
  /* Centra la imagen */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */
  color: white;
  padding: 150px 0;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Capa oscura encima de la imagen */
}

.hero-section .content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #fff;
}

h2 {
  color: #6d4c41;
}

p, h5 {
  color: #6d4c41;
}

.hero-section .btn {
  font-size: 1.25rem;
  padding: 10px 30px;
}

.section-title {
  text-align: center;
  margin: 50px 0;
  font-size: 2rem;
  font-weight: 700;
}

/* .features .feature {
  text-align: center;
  padding: 0;
  width: 410px;;
  height: auto;
  margin: 10px auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
} */

.features .svg-container {
  width: 165px;
  height: 165px;
  position: relative;
  margin: 0 auto;
}

.features .svg-container svg {
  width: 100%;
  height: 100%;
}

.features .svg-container img {
  z-index: 1;
  width: auto;
  height: auto;
}




.products .product-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.products .product-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
}

.products .product-card p {
  font-size: 0.875rem;
  color: #6c757d;
}

.products .product-card .btn {
  margin-top: 10px;
}

.ft{

}


    @media (min-width: 1200px) and (max-width: 1280px) {
        .ft {
            font-size: 1.5vh;
            margin-bottom: 10px;
        }
        
    }

