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

        #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;
            border: 2px solid black;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            background-color: white;
            z-index: 1000;
        }

        .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 {
            margin-bottom: 3rem;
        }

        .producto img {
            max-width: 100%;
            border-radius: 1rem;
        }

        .producto h3 {
            font-weight: bold;
        }

        .producto p {
            color: black;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
        }

        .nutricional {
            background: #ffffff;
            border-radius: 10px;
            max-width: 400px;
            margin: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 25px;
        }

        .nutricional h2 {
            font-size: 24px;
            margin-bottom: 20px;
            border-bottom: 2px solid #ccc;
            padding-bottom: 10px;
        }

        .nutricional .porcion {
            font-weight: bold;
            margin-bottom: 15px;
        }

        .nutricional table {
            width: 100%;
            border-collapse: collapse;
        }

        .nutricional th {
            text-align: left;
            font-weight: bold;
            font-size: 16px;
            padding: 8px 0;
        }
        
        .nutricional td {
            padding: 6px 0;
            font-size: 15px;
        }

        .nutricional td:first-child {
            text-align: left;
        }

        .nutricional td:last-child {
            text-align: right;
        }

        .nutricional .sub {
            padding-left: 15px;
            font-size: 14px;
            color: #555;
        }

        .separator {
            border-top: 1px solid #ccc;
            margin: 12px 0;
        }

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

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

        .btn-ordenar {
            width: 150px;         
            height: 42px;       
            border: 2px solid #555;
            text-align: center;
            background-color: transparent;
            color: black;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-ordenar:hover,.btn-ordenar:active {
            background-color: #28a745; 
            color: white;
        }