  /* --- SECCIÓN SODAS --- */
        .sodas-section {
            background-color: #00b4df;
            padding: 60px 0 120px 0;
            position: relative;
        }

        /* Logos Postobón y Colombiana */
        .logos-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .soda-logo {
            max-width: 250px;
            height: auto;
            margin-right: 30px;
        }

        /* Tarjetas de Producto */
        .soda-card {
            border-radius: 25px;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
            /* Animación para la tarjeta completa */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            /* Cambia el cursor para indicar que es interactiva */
        }

        /* EFECTO HOVER EN LA TARJETA */
        .soda-card:hover {
            transform: translateY(-8px);
            /* Eleva la tarjeta */
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
            /* Sombra más fuerte */
        }

        .soda-card.manzana {
            background-color: #e53e83;
        }

        .soda-card.uva {
            background-color: #925ebb;
        }

        .soda-card.colombiana {
            background-color: #f7b500;
        }

        .soda-card-top {
            background-color: #ffffff;
            margin: 4px 4px 0 4px;
            border-radius: 21px 21px 8px 8px;
            padding: 40px 20px;
            text-align: center;
            flex-grow: 1;
            overflow: hidden;
            /* Importante para que la imagen no se salga al hacer zoom */
        }

        .soda-card-top img {
            height: 280px;
            object-fit: contain;
            /* Animación para la botella */
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* EFECTO HOVER EN LA BOTELLA (Se activa al pasar sobre la tarjeta) */
        .soda-card:hover .soda-card-top img {
            transform: scale(1.1);
            /* Efecto de zoom */
        }

        .soda-card-bottom {
            padding: 15px 20px 20px 20px;
            color: white;
            border-radius: 0 0 25px 25px;
        }

        .soda-card-bottom h5 {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 2px;
        }

        .soda-card-bottom p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Ola decorativa / Transición de agua */
        .water-wave-transition {
            width: 100%;
            height: 80px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230d83c9" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,208C384,203,480,181,576,170.7C672,160,768,160,864,170.7C960,181,1056,203,1152,208C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            position: absolute;
            bottom: -1px;
            left: 0;
            z-index: 2;
        }

        /* --- FOOTER / CONTACTO --- */
        .footer-section {
            background-color: #0d83c9;
            color: white;
            padding: 50px 0 40px 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .btn-contact {
            background-color: #00b4df;
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 30px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-top: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 2px solid #00b4df;
            transition: all 0.3s ease;
        }

        .btn-contact:hover {
            background-color: transparent;
            color: #00b4df;
            border: 2px solid #00b4df;
            transform: scale(1.05);
        }

       .footer-bottom {
            margin-top: 40px;
            font-size: 0.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo {
            color: #0d83c9;
            font-size: 1rem;
            padding: 2px 8px;
            border-radius: 2px;
            margin-right: 10px;
        }


        @media (max-width:480px) {
        .soda-logo{
            margin: auto;
        }


        .soda-card-bottom{

            text-align: center;
        }

        }