/* Ajustes del store-card */
.store-card {
    border: 1px solid #eee;
    border-radius: 8px;
    position: relative;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 300px; /* Altura mínima */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 5.0rem;
}

@media (max-width: 768px) {
    /* Centrado del título */
    .store-card {
        margin-right: 0; /* Eliminar el margen derecho */
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-name {
        padding-top: 25px;
        text-align: center;
    }

    .text-secondary {
        align-items: center;      
    }

    /* Ajustes para la grid en móvil */
    .row.g-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Ajustes para las columnas en móvil */
    .col-sm-6.col-md-4 {
        width: 100%;
        max-width: 300px; /* O el ancho que prefieras */
    }

    /* Centrado de los info-cards */
    .info-card {
        margin: 0 auto;
    }

    /* Centrado de los iconos de redes sociales */
    .social-icons {
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        align-items: center;  
    }

    /* Centrado de la descripción */
    h4, .description-text {
        text-align: center;
    }
}

/* Ajustes del badge */
.store-card .badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 25%);
    z-index: 10;
}

/* Nombre de la marca */
.brand-name {
    font-size: 1.0rem;
    font-weight: bold;
}

/* Ajuste del contenedor info-card */
.info-card {
    text-align: left;
    max-width: 250px; 
}

/* Contenedor para ícono y texto */
.info-card .icon-text {
    display: flex; /* Flexbox para ícono y texto */
    align-items: center; /* Alineación vertical */
    gap: 1.5rem; /* Espacio entre ícono y texto */
    margin-bottom: 0.2rem; /* Separación con el botón */
}

/* Íconos alineados */
.info-card .icon {
    font-size: 1.0rem; /* Tamaño del ícono */
    color: #666;
    flex-shrink: 0; /* Evita que el ícono se reduzca */
}

/* Texto */
.info-card h6 {
    margin: 0; /* Quitar márgenes innecesarios */
    font-size: 1rem;
    color: #6c757d;
}

.btn-dark {
    background-color: #003049;
    border-color: #003049;
}

.btn-dark:hover {
    background-color: #002038;
    border-color: #002038;
}

.order-dino {
    margin-top: 10px;
    background-color: #28a745;
    border-color: #28a745;
}

.order-dino:hover {
    margin-top: 10px;
    background-color: #28a745;
    border-color: #28a745;
}

.order-restaurant {
    margin-top: 10px;
    background-color: #ffc107;
    border-color: #ffc107;
    color: black;
}

.order-restaurant:hover {
    margin-top: 10px;
    background-color: #ffc107;
    border-color: #ffc107;
    color: black;
}
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #003049;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

/*.social-icons .tiktok {
    background-color: #000;
}

.social-icons .facebook {
    background-color: #1877f2;
}

.social-icons .instagram {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}*/


/*CARRUSEL*/

/* .carrusel-container {
    display: flex;
    justify-content: space-between;
}
.carrusel {
    flex: 1;
    margin: 0 5px;
}
.header-block {
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    border-radius: 5px;
}
.header-block.valid {
    background-color: #003049;
    color: white;
}
.header-block.invalid {
    background-color: #6c757d;
    color: white;
}

@media (max-width: 768px) {
    .carrusel-container {
        flex-direction: column;
    }

    .carrusel {
        margin: 10px 0; 
        flex: none;
    }
} */

.carrusel-container {
    display: grid;
    gap: 20px; 
    justify-items: center;
}

.carrusel {
    width: 100%;
    text-align: center;
}

.header-block {
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    border-radius: 5px;
}

.header-block.valid {
    background-color: #003049;
    color: white;
}

.header-block.invalid {
    background-color: #6c757d;
    color: white;
}

/* Pantallas medianas (>=768px): 2 columnas */
@media (min-width: 768px) {
    .carrusel-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    }
}