#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; 
            }