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;
}

/* Hero section */
.hero {
  background-image: url("../img/fondos/fondo1.jpg"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 5%;
  color: white;
  text-shadow: 1px 1px 5px black;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FAD59A;
}
.hero p
{
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size: 40px;
  padding: 10px;
}

.btn {
  background: #d1a76b;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
}
.Nuestros
{
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
}
.don-bosco
{
  margin-left: 30px;
}
/* ======= CATEGORÍAS ======= */
.categories-section {
    padding: 80px 5%;
    background-image: url("../img/fondos/fondo4.jpg");
    text-align: center;
    font-size: 25px;
    
    /* MODIFICACIONES CLAVE: */
    width: 100vw; /* 100% del ancho del viewport */
    height: 100vh; /* 100% de la altura del viewport */
    
    background-size: cover; 
    background-repeat: no-repeat;
    /* (Opcional) Usar 'fixed' para que no se mueva con el scroll */
    background-attachment: fixed;
    
    
}
.categories-section h2
{
  color: #FAD59A;
  font-size: 70px;
}
.categories-section p
{
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  color: white;
}

.category-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 80px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 400px;
  height: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  color: white;

}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.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 */
    height: 100%;
  box-sizing: border-box; /* Importante para que padding no agregue al ancho total */
  
  min-height: 500px;
  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.5), 
          rgba(209, 153, 102, 0.5)   
      ),
      /* 2. La imagen de fondo real (granitos de café) */
      url("../img/fondos/fondo3.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 {

    font-size: 50px;
    margin-bottom: 25px;

}

.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: 30px;
  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 h2
{
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover .overlay {
  opacity: 1;
}
.overlay
{
  font-size: 20px;
}

.overlay a {
  margin-top: 10px;
  background: #cfa77a;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
/* Promo */
.promo {
  background: #FAD59A;
  color: #A86523;
  text-align: center;
  padding: 60px 20px;
    font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size
}

/* Footer */
.footer {
  background: rgba(168, 101, 35, 0.8);
  color: #FFE9C7;
  text-align: center;
  padding: 20px;
    font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size
  margin-top: 30px;
}
.menu {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* 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;
  }
