#cabecera {
                background-image: url("/img/fondo2.jpg");;
                background-size: cover;
                background-position: center;
                padding: 20px;
                color: white;
                text-align: center;
                width: 100vw;
                box-sizing: border-box;
                background-color: #4CAF50;
            }
            #logo {
                width: 300px;
                height: 300px;
            }
            #nav-logo {
                width: 30px;
            }

            .oferta{
                font-size: 70;
                font-family: fantasy;
                color: rgb(206, 146, 205);
                
            }

            .productos{
                font-size: xx-large;
                color: rgb(135, 151, 189);
            }

            .button_slide {
              background-color: white;
              border: 2px solid rgb(206, 146, 205);
              border-radius: 0px;
              padding: 18px 36px;
              display: inline-block;
              font-size: 14px;
              letter-spacing: 1px;
              cursor: pointer;
              box-shadow: inset 0 0 0 0 rgb(245, 200, 244);
              -webkit-transition: ease-out 0.4s;
              -moz-transition: ease-out 0.4s;
              transition: ease-out 0.4s;
            }

            .slide_inside:hover {
            box-shadow: inset 0 0 0 50px rgb(245, 200, 244);
            }

            .card {
                display: flex;
                flex-direction: column;
            }

            .card-body {
                flex-grow: 1;
            }

            .card-img-top {
                width: 100%;
                height: 200px;
                object-fit: cover;
            }
            .pagination {
                justify-content: center;
            }
            footer {
                background-color: #4CAF50;
                color: white;
                text-align: center;
                padding: 10px 0;
            }
            .social-icon {
                margin: 0 5px;
                color: white;
            }
            .banner-box {
                position: fixed;
                top: 20%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 80%;
                max-width: 500px;
                box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
                padding: 20px;
                text-align: center;
                background-color: white;
                z-index: 1000;
                background-color: #4CAF50;
            }
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            }

             .producto-link {
                color: #333;
                text-decoration: none;
                font-weight: 500;
                font-size: 1.1rem;
                transition: color 0.3s ease;
            }

            .producto-link:hover {
                color: #28a745; 
            }
            .card-link {
              text-decoration: none;
              color: inherit;
            }

            .card-hover {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                color: black;
            }

            .card-hover:hover {
                transform: scale(1.03);
                box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
            }

            .card-title-link {
                font-weight: 600;
                font-size: 1.2rem;
                color: #333;
                text-decoration: none;
            }

            .card-title-link:hover {
                color: #28a745; 
            }

.video-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 1;
}

.video-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center; 
  justify-content: center;
  background: rgba(0, 0, 0, 0.3); 
}

.video-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .video-section {
    height: 300px;
  }
  .video-text h1 {
    font-size: 1.8rem;
    padding: 0 15px;
  }
}

 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
        
        :root {
            --verde-oscuro: #1B5E20;
            --verde-claro: #4CAF50;
            --blanco: #f5f5f5;
            --sombra: rgba(0, 0, 0, 0.1);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--verde-claro), var(--verde-oscuro));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
            animation: grow 2s ease-in-out;
        }
        
        .container {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .container.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--verde-claro);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--verde-claro);
        }
        
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--verde-claro);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--verde-claro) transparent transparent;
        }
        
        .right::after {
            left: -16px;
        }
        
        .content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 10px 20px var(--sombra);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .content h2 {
            color: var(--verde-oscuro);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .content p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid var(--verde-claro);
            box-shadow: 0 5px 15px var(--sombra);
            transition: all 0.3s ease;
        }
        
        .video-container:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--verde-oscuro);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 2;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes grow {
            from { height: 0; }
            to { height: 100%; }
        }
        
        @media screen and (max-width: 1800px) {
            .timeline::after {
                left: 31px;
            }
            
            .container {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .container::before {
                left: 60px;
                border: medium solid var(--verde-claro);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--verde-claro) transparent transparent;
            }
            
            .left::after, .right::after {
                left: 15px;
            }
            
            .right {
                left: 0%;
            }
            
            .video-container {
                height: 180px;
            }
        }
        
        .foot {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: var(--verde-oscuro);
            font-style: italic;
            animation: fadeIn 2s ease-in-out;
        }
        
        .foot p {
            margin-bottom: 10px;
        }
        


        

