html
{
  scroll-behavior: smooth;
}
*
{
  box-sizing: border-box;
}
/* Estilos generales */
body {
  margin: 0;
  background-color: #f5f0e8;
  color: #4a3f35;
}

/* Header */
.header {
  background-color: rgba(135, 74, 28, 0.5);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 900;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size: 20px;
}

.nav a:hover {
  color: #d1a76b;
}
.nav a:visited
{
 color: #E9A319;   
}

.btn-order {
  background: #d1a76b;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}
.testimonial-section {
  /* Asegúrate de que no haya un 'width' o 'max-width' aquí que lo limite */
  width: 100%; /* Asegúrate de que ocupe todo el ancho disponible */
  box-sizing: border-box; /* Importante para que padding no agregue al ancho total */
  min-height: 100vh;
  
  padding: 100px 0; /* Padding vertical, no horizontal si quieres que el fondo se extienda */
  
  /* ******** CLAVE PARA EL FONDO COMPLETO ******** */
  background-image:
      /* 1. Superposición de Degradado*/
      linear-gradient(to right, 
          rgba(110, 59, 14, 0.3), 
          rgba(209, 153, 102, 0.2)   
      ),
      /* 2. La imagen de fondo real (granitos de café) */
      url("../img/fondos/fondo1.jpg"); /* <--- ¡VERIFICA ESTA RUTA! */
        
  background-size: cover; /* ¡Esto es crucial! Asegura que la imagen cubra todo */
  background-position: center;
  background-repeat: no-repeat; 
  color: #ffffff;
}
}
.testimonial-section h2 
{
    margin-top: 30px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    font-size: 10rem;

}

.testimonial-section p {
  max-width: 800px; /* Ancho máximo para el párrafo */
  margin: 0 auto;   /* Centra el párrafo horizontalmente */
  padding: 20px;    /* Un poco de padding interno si necesitas espacio dentro del párrafo */
  
  font-size: 35px;
  line-height: 1.7;
  text-align: justify;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);

  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.content-box 
{
  padding: 100px 30px 5px 30px;
}
.content-box h2
{
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

/* Botón hamburguesa */
.hamburguesa {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Ocultar menú por defecto en pantallas pequeñas */
  .nav {
    display: none;
    flex-direction: column;
    background: #5c2c0c;
    position: absolute;
    top: 60px;
    right: 15px;
    padding: 10px;
    border-radius: 50px;
  }

  /* Mostrar el botón hamburguesa */
  .hamburguesa {
    display: block;
  }