/* Minified style.css */
:root{
    --bg:#f5f5f5;
    --card:#ffffff;
    --text:#222;
    --accent:#c7a17a;
    --muted:#6b6b6b;
    --header:#3a2e2e;
    --glass:rgba(255,255,255,0.06);
  --cafe-oscuro: #3B2A1A;
  --cafe-suave: #D4A857;
  --verde-hoja: #4A7B3F;

  --cafe-oscuro: #4b2e1e;
  --cafe-medio: #7a4a2e;
  --crema: #f6efe8;
  --crema-sombra: #e9dfd4;
  


}
    
[data-theme="dark"]{
        --bg:#0f1112;
        --card:#101214;
        --text:#e6e6e6;
        --muted:#9aa0a6;
        --accent:#d9b88a;
        --header:#0b0a0a;
        --glass:rgba(255,255,255,0.03)
    }
        
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial
}
p{
    font-family: Rubik-Bold;
}
h1 h2 h3 h4{
    font-family:TribunecCP;
}    
html{
    height: 100%;
    background:var(--bg);color:var(--text)
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

        /* Header */
        header {
            background: linear-gradient(135deg, #3e2723 5%, #3e2723 100%);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        /* Navigation */
      


nav a{
    position:relative;
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    padding:8px 6px;
    transition:transform .22s,color .18s
}
nav a::after{
    content:'';
    position:absolute;
    height:3px;
    width:0;left:0;
    bottom:-6px;
    background:var(--accent);
    transition:width .25s cubic-bezier(.2,.9,.2,1);
    border-radius:4px
}
nav a:hover{
    transform:translateY(-3px)
}
nav a:hover::after{
    width:100%
}        

        /* Hamburger Menu Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Menu activo - Animación de hamburguesa a X */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .brand h1 {
                font-size: 1.3rem;
            }

            nav {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.95rem;
                padding: 0.4rem 0.8rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .header-container {
                position: relative;
            }

            .brand h1 {
                font-size: 1.1rem;
            }

            .brand img {
                width: 40px;
                height: 40px;
            }

            /* Mostrar botón hamburguesa */
            .menu-toggle {
                display: flex;
            }

            /* Navigation móvil */
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: linear-gradient(135deg, #6f4e37 0%, #3e2723 100%);
                flex-direction: column;
                justify-content: flex-start;
                padding: 5rem 2rem 2rem 2rem;
                gap: 0;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.3);
            }

            nav.active {
                right: 0;
            }

            nav a {
                width: 100%;
                padding: 1rem;
                text-align: left;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav a:hover {
                background: rgba(255, 255, 255, 0.15);
                transform: translateX(5px);
            }
        }

        @media (max-width: 480px) {
            .brand h1 {
                font-size: 0.95rem;
            }

            .brand img {
                width: 35px;
                height: 35px;
            }

            nav {
                width: 250px;
            }

            nav a {
                font-size: 1rem;
                padding: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .brand h1 {
                font-size: 0.85rem;
            }

            .brand img {
                width: 30px;
                height: 30px;
            }
        }

        /* Overlay para cerrar menú */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Demo content */
        .demo-content {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-section {
            min-height: 400px;
            background: #f5f5f5;
            margin: 2rem 0;
            padding: 2rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .demo-section h2 {
            color: #6f4e37;
            font-size: 2rem;
        }
.hero{
    min-height:68vh;
    background: url('imagen/portada.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    color:white;
}

.hero h2 {
            background: rgba(0,0,0,0.5);
            padding: 20px 40px;
            border-radius: 10px;
            font-size: 2.5rem;
}
.hero p {
            background: rgba(0,0,0,0.5);
            padding: 20px 40px;
            border-radius: 10px;
            font-size: 1.05rem;
}

.hero-inner{
    max-width:1200px;
    margin:0 auto;
    padding:72px 32px;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:28px;
    align-items:center;
}
.hero-copy h2{
    font-size:2.1rem;
    margin-bottom:12px
}
.hero-copy p{
    color:white;
    margin-bottom:18px
}
.hero-cta{
    display:flex;
    gap:12px
}
.controls{
    display:flex;
    gap:12px;
    align-items:center
}
.btn{
    background:var(--accent);padding:8px 12px;
    border-radius:10px;
    color:white;
    font-weight:700;
    cursor:pointer;
    border:none
}
.icon-btn{
    background:transparent;
    border:1px solid rgba(0,0,0,0.06);
    padding:8px;
    border-radius:10px;
    cursor:pointer;
    color: white;
}

    .mobile-nav{
        position:fixed;
        right:-100%;
        top:0;
        height:100vh;
        width:320px;
        background:var(--card);box-shadow:-20px 40px 80px rgba(2,6,23,0.2);
        padding:30px;
        transition:right .35s cubic-bezier(.2,.9,.2,1);z-index:80
}
.mobile-nav.open{
    right:0
}
.mobile-nav a{
    display:block;
    padding:12px 0;
    font-weight:700;
    color:var(--text)
}
.hero{
    min-height:68vh;
    background:linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.12)), url('imagen/portada.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    color:white;
}

.hero h2 {
            background: rgba(0,0,0,0.5);
            padding: 20px 40px;
            border-radius: 10px;
            font-size: 2.5rem;
}

.hero-inner{
    max-width:1200px;
    margin:0 auto;
    padding:72px 32px;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:28px;
    align-items:center;
}
.hero-copy h2{
    font-size:2.1rem;
    margin-bottom:12px
}
.hero-copy p{
    color:white;
    margin-bottom:18px
}
.hero-cta{
    display:flex;
    gap:12px
}
.card-hero{
    background:linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
    padding:18px;
    border-radius:14px;
    box-shadow:0 8px 30px rgba(3,6,12,0.25);
    backdrop-filter:blur(6px)}.fade-up{opacity:0;transform:translateY(10px);
    animation:fadeUp .7s forwards;animation-delay:.12s
}
@keyframes fadeUp{
    to{opacity:1;transform:none}
}
.pulse{
    animation:pulse 2.6s infinite
}
@keyframes pulse{
    0%{transform:scale(1)}50%{transform:scale(1.02)}100%{transform:scale(1)}
}
.info{
    display:flex;
    flex-wrap:wrap;
    gap:28px;max-width:1200px;
    margin:40px auto;
    padding:0 24px;
    align-items:center
}
.info .img-wrap{
    flex:1 1 420px
}
.info img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:16px;
    transition:transform .34s,filter .34s;
    box-shadow:0 10px 30px rgba(2,6,23,0.15)
}
.info img:hover{
    transform:translateY(-8px) rotate(-0.5deg);
    filter:brightness(1.03)
}
.info .text{
    flex:1 1 380px
}
.shop{
    background: url('imagen/portada.png');
    padding:50px 24px
}
.shop-grid{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;
    max-width:1200px;
    margin:0 auto
}
.product-card{
    background:var(--card);padding:18px;
    border-radius:14px;
    box-shadow:0 8px 24px rgba(2,6,23,0.06);
    transition:transform .28s,box-shadow .28s;
    display:flex;
    flex-direction:column;
    gap:12px
}
.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 48px rgba(2,6,23,0.12)
}
.product-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:10px
}
.price{
    font-weight:800;
    color:var(--accent)
}
.product-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:8px
}
.galeria{
    max-width:1200px;
    margin:48px auto;
    padding:0 24px
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:14px
}
.grid img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:12px;
    transition:transform .28s,box-shadow .28s
}
.grid img:hover{
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 14px 30px rgba(2,6,23,0.12)
}
.lightbox{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.8);
    opacity:0;
    visibility:hidden;
    transition:opacity .25s,visibility .25s;
    z-index:120
}
.lightbox img{
    max-width:90%;
    max-height:80vh;
    border-radius:8px;
    box-shadow:0 18px 60px rgba(0,0,0,0.6)
}
.lightbox.open{
    opacity:1;
    visibility:visible
}
.lightbox-close{
    position:absolute;
    top:20px;
    right:20px
}
.blog{
    max-width:1200px;
    margin:48px auto;
    padding:0 24px;
}
.posts{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
    border-radius:14px;
    overflow:hidden;
    cursor:pointer;
    position:relative;
}

.post img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block
}
.post .meta{
    padding:14px;
    background:var(--card)}.post .meta p{color:var(--muted)}.contacto{max-width:900px;
        margin:48px auto;
        padding:24px;
        border-radius:14px;
        background:linear-gradient(180deg,var(--card),var(--card));
        box-shadow:0 8px 30px rgba(2,6,23,0.06)
    }
.contact-list{
    display:flex;
    flex-wrap:wrap;
    gap:16px
}
.contact-item{
    flex:1 1 220px;
    display:flex;
    gap:12px;
    align-items:center;
    font-size: 1.3rem;
}
.cart-drawer{
    position:fixed;
    right:-420px;
    top:0;height:100vh;
    width:380px;
    background:var(--card);box-shadow:-40px 40px 100px rgba(0,0,0,0.3);
    padding:24px;
    transition:right .3s;
    z-index:130
}
.cart-drawer.open{
    right:0
}
.cart-items{
    max-height:60vh;
    overflow:auto;
    margin-top:12px
}
.cart-item{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:10px 0;
    border-bottom:1px solid rgba(0,0,0,0.04)
}
.cart-footer{
    position:absolute;
    bottom:24px;
    left:24px;
    right:24px;
    display:flex;
    justify-content:space-between;
    align-items:center
}
.cart-count{
    background:var(--accent);
    color:white;
    border-radius:999px;
    padding:2px 8px;
    margin-left:6px;
    font-weight:700
}

.test-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px
}

.faq{
    max-width:900px;
    margin:48px auto;
    padding:0 24px
}
.faq-item{
    background:var(--card);
    padding:12px 16px;
    border-radius:10px;
    margin-bottom:10px;
    cursor:pointer
}
footer{
    margin-top:0px;
    padding:28px 24px;
    background:var(--header);
    color:white;
    text-align:center
}
@media(
    max-width:1200px
    )
{
.hero-inner{
    grid-template-columns:1fr}
}
@media(max-width:900px)
{.hero-inner{padding:40px 20px}.hero{min-height:56vh}.info img{height:300px}}
@media(max-width:480px){header{padding:12px 16px}.brand h1{font-size:0.95rem}}

/*testimonio*/
.carousel-container {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:url('imagen/testimonio2.png'); 
}

.carousel-content {
  width: 90%;
  max-width: 800px;
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 20px;
}

.slide h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.slide p {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .slide h2 {
    font-size: 1.4rem;
  }
  .slide p {
    font-size: 1rem;
  }
}
    /* Botones sociales / vídeo */
    .social-bar {
      margin: 50px 0;
      text-align: center;
    }
    .social-bar a {
      margin: 0 10px;
      font-size: 32px;
      color: #5b3b1f;
      transition: color 0.3s, transform 0.3s;
    }
    .social-bar a:hover {
      color: #6355e2;
      transform: scale(1.2);
    }

.parrafo2 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
}
/* Compra carrito*/
.compra-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}



/* TEXTO */

.texto-compra {
  font-size: 24px;
  font-weight: bold;
  color: #ffffffe0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #ffffff;
}

/*coontacto*/
.contact-section {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #704d2581, #bd8338c0, #704d2581);
  background-size: 300% 300%;
  animation: fluidBg 12s ease infinite;
  color: black;
}

@keyframes fluidBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.contact-subtitle {
  opacity: 0.8;
  margin-bottom: 40px;
  font-size: 1.4rem;
}

.contact-box {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: #7b6b3fb6;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.contact-info {
  flex: 1;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.contact-info p {
  margin-bottom: 12px;
  opacity: 0.9;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #f1e0d1;
}

.contact-form button {
  background: #d4a857;
  color: #2b1d12;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f2c572;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-box {
    flex-direction: column;
    padding: 30px;
  }
}
/* Botón subir */
.btn-arriba {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #e78f41;
  color: white;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
/* Redes sociales */
.redes-sociales {
  background: #3b2a1a83;
  padding: 40px;
  text-align: center;
  color: white;
  border-radius: 10px;
  margin: 15px;
}

.iconos-redes a {
  display: inline-block;
  background: var(--cafe-suave);
  color: var(--cafe-oscuro);
  padding: 10px 20px;
  margin: 5px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: .3s;
}

.iconos-redes a:hover {
  background: #f2d188;
}
/* WhatsApp botón */
.btn-whatsapp {
  position:fixed;
  bottom: 10px;
  right: 20px;
  width: 45px;
}
.btn-whatsapp img {
  width: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
    /*Lista*/
 
    .lista-paralela {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    .item {
        background: rgb(250, 243, 230);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: flex;
        gap: 12px;
        align-items: flex-start;
        transition: transform 0.2s;
        border-left: 6px solid #c5760d;
    }

    .item:hover {
        transform: scale(1.04);
    }

    .item::before {
        content: "✔";
        color: #0ead09;
        font-weight: bold;
        font-size: 1.3em;
        margin-top: 2px;
    }
.section1 {
            padding: 10px 20px;
            text-align: center;
}
/*Header opcion2*/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #3e2723 5%, #3e2723 100%);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        /* Brand */
        .brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

.brand img {
    height:140px;
    width:140px;
    border-radius:20px;
    object-fit:cover;
        }

        .brand h1 {
            font-size: 1.5rem;
            font-weight: 700;
            white-space: nowrap;
        }

        /* Navigation */
        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            white-space: nowrap;
        }

        nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Hamburger Menu Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Menu activo - Animación de hamburguesa a X */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .brand h1 {
                font-size: 1.3rem;
            }

            nav {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.95rem;
                padding: 0.4rem 0.8rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .header-container {
                position: relative;
            }

            .brand h1 {
                font-size: 1.1rem;
            }

            .brand img {
                width: 40px;
                height: 40px;
            }

            /* Mostrar botón hamburguesa */
            .menu-toggle {
                display: flex;
            }

            /* Navigation móvil */
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: linear-gradient(135deg, #6f4e37 0%, #3e2723 100%);
                flex-direction: column;
                justify-content: flex-start;
                padding: 5rem 2rem 2rem 2rem;
                gap: 0;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.3);
            }

            nav.active {
                right: 0;
            }

            nav a {
                width: 100%;
                padding: 1rem;
                text-align: left;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav a:hover {
                background: rgba(255, 255, 255, 0.15);
                transform: translateX(5px);
            }
        }

        @media (max-width: 480px) {
            .brand h1 {
                font-size: 0.95rem;
            }

            .brand img {
                width: 35px;
                height: 35px;
            }

            nav {
                width: 250px;
            }

            nav a {
                font-size: 1rem;
                padding: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .brand h1 {
                font-size: 0.85rem;
            }

            .brand img {
                width: 30px;
                height: 30px;
            }
        }

        /* Overlay para cerrar menú */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Demo content */
        .demo-content {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-section {
            min-height: 400px;
            background: #f5f5f5;
            margin: 2rem 0;
            padding: 2rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .demo-section h2 {
            color: #6f4e37;
            font-size: 2rem;
        }

        /*Lo que dice*/
/* CONTENEDOR */
.titulo-cafe-wrapper {
    position: relative;
    margin:4px 0px;
    padding: 20px;
    height: 30px;
}

/* TEXTO 3D */
.titulo-3d {
   font-size: 2.2rem;
    font-weight: 900;
    color: #4c2a14;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    z-index: 3;
    animation: aparecer 2s ease forwards;

}

/* ANIMACIÓN DE APARICIÓN */
@keyframes aparecer {
    0% { opacity: 0; transform: translateY(30px) scale(0.9); }
    100%{ opacity:1; transform:translateY(0) scale(1); }
}

/* FONDO DE GRANOS */
/* CONTENEDOR PRINCIPAL */
.granos-animados {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    overflow: hidden;
    z-index: 10;
    filter: blur(1.5px);
    pointer-events: none;
}

/* CAPA DE GRANOS */
.granos-animados::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: url("imagen/granoflotante.avif");
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.9;
    animation: granosScroll 18s linear infinite;
}

/* ANIMACIÓN INFINITA SIN TIRONES */
@keyframes granosScroll {
    from { background-position: 0 0; }
    to { background-position: 300px 600px; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .granos-animados {
        opacity: 0.25;
        filter: blur(1px);
    }
}


/* Reveal base */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Desde la izquierda */
.reveal-left {
  transform: translateX(-40px);
}

/* Desde la derecha */
.reveal-right {
  transform: translateX(40px);
}

/* Cuando aparece */
.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #2e1a11;
    color: white;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slide-up 0.6s ease;
    z-index: 9999;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

#cookie-banner a {
    color: #ffddaa;
    text-decoration: underline;
}

#cookie-banner button {
    background: #ffb764;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

#cookie-banner button:hover {
    background: #ff9f3d;
}

@keyframes slide-up {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
 .features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.feature {
  flex: 1;
  text-align: center;
  padding: 20px;

}

.feature img {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 12px;

}

.feature p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

.feature strong {
  font-weight: 600;
}

.divider {
  width: 3px;
  height: 180px;
  background-color: #9c6d27ab;
}
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }

  .divider {
    width: 80%;
    height: 1px;
    margin: 20px 0;
  }
}

/*ilustracion*/
.img-move-right {
  width: 300px;
  transition: transform 0.5s ease;
}

.img-move-right:hover {
  transform: translateX(25px);
}
.img-move-right1 {
  width: 300px;
  transition: transform 0.5s ease;
}

.img-move-right1:hover {
  transform: translateY(25px);
}

/* OLAS (BASE CORRECTA) */
.ola {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.ola svg {
  width: 200%;
  height: 220px;
  display: block;
}

/* OLA CREMA */
.ola-crema {
  top: 0;
}

.ola-crema svg {
  animation: ola-crema-move 18s linear infinite;
}

.ola-crema path {
  fill: var(--crema);
  filter: drop-shadow(0 10px 10px var(--crema-sombra));
  opacity: 0.95;
}

/* OLA CAFÉ */
.ola-cafe {
  bottom: 0;
  transform: rotate(18000deg);
}

.ola-cafe svg {
  animation: ola-cafe-move 22s linear infinite;
}

.ola-cafe path {
  fill: var(--cafe-medio);
}

/* ANIMACIONES CONTINUAS REALES */
@keyframes ola-crema-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes ola-cafe-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-ola-cafe {
    height: 80vh;
  }

  .hero-contenido h1 {
    font-size: 2.2rem;
  }
}
/*Servicio*/
.servicios-cafe {
  position: relative;
  background: var(--cafe-suave);
  padding: 120px 20px;
  overflow: hidden;
}

.contenedor-servicios {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}


.servicios-cafe .intro {
  max-width: 600px;
  margin: 0 auto 60px;
  color: #5f4635;
  font-size: 1.1rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.servicio {
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgb(202, 109, 22);
  transition: transform 0.4s ease;
}

.servicio:hover {
  transform: translateY(-10px);
}

.servicio h3 {
  color: #000000;
  margin: 20px 0 10px;
  text-transform: uppercase;
}

.servicio p {
  color: #000000;
  font-size: 0.95rem;
}

.icono-cafe {
  width: 80px;
  height: 80px;
  stroke: var(--cafe-medio);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*icono video servicio*/
.icono-video {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #f6efe8; /* crema */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icono-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
