* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto condensed', sans-serif;
}

body {
    background-color: aliceblue;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0px;
}

.itemCard {
    display: flex;
    flex-direction: column;
    margin: 30px 0px;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 1px 1px 5px rgba(131, 131, 131, 0.11);
}

.headerCard {
    position: relative;
}

.headerCard img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.icon {
    position: absolute;
    left: 0px;
    top: 0px;
}
.icon img{
    width: 30%;
}
.brp-code {
    position: absolute;
    right: 10px;
    top: 10px;
    background: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
}
.brp-code p{
    margin: 0px;
    font-weight: bold;
}
.brp-code span{
    font-weight: normal;
}
.headerCard .scroll-container {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    padding: 10px;
    background-color: #00000097;
    scrollbar-width: thin;
    scrollbar-color: #e6e6e6 transparent;
    border-radius: 10px;
}
.headerCard .scroll-container::-webkit-scrollbar {
    display: none;
}
.headerCard .scroll-content {
    display: flex;
    gap: 10px;
}
.headerCard .scroll-content a img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    scroll-snap-align: start;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}
.headerCard .scroll-content a img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.card-price {
    background-color: #f4f4f4;
    padding: 10px;
    text-align: center;
}
.promo{
    text-align: center;
}
.promo h3{
    background-color: #ed1c27;
    padding: 10px 0px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    transform: rotate(-1deg);
}
.promo h4{
    padding: 10px 0px;
    font-weight: bold;
    font-size: 30px;
}
.info1 p, .precio p {
    margin: 0;
    font-size: 18px;
}
.info1 h5, .precio h5 {
    font-weight: bold;
    font-size: 20px;
    margin-top: 0px;
}
.info1{
    color: #9F9F9F;
}

.cuerpoCard {
    text-align: center;
    padding: 10px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.cuerpoCard h1 {
    color: #ed1c27;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 10px;
}
.cuerpoCard h2 {
    font-size: 16px;
    color: #000;
    margin: 0px 0px 10px 0px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.cuerpoCard h3 {
    margin: 15px 0px;
    font-size: 14px;
}
.cuerpoCard h3 span {
    background-color: #f3f3f3;
    padding: 5px 20px;
    border-radius: 20px;
}
.color span{
    background-color: #f3f3f3;
    padding: 5px 0px;
    border-radius: 30px;
}
.masInfo {
    text-align: left;
    max-height: 170px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
    margin-bottom:30px;
}
.masInfo h5{
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}
.masInfo p{
    margin-bottom: 20px;
}
.cuerpoCard .boton {
    margin-top: auto;
}
.boton {
    margin-top: 15px;
}

.btn {
    font-size: 16px;
    padding: 8px;
    border-radius: 5px;
}

.socialMedia {
    background-color: #f4f4f4;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.socialMedia h6 {
    color: #202020;
    font-weight: bold;
    font-size: 16px;
}

.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.redes-sociales img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

.redes-sociales img:hover {
    transform: scale(1.2);
}

.boton {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.btnMaps{
    background-color: #ed1c27;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    margin-top: 20px;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}
.btnMaps:hover{
    background-color: #bb141c;
    text-decoration: none;
    transform: scale(1.1,1.1);
}

.btnMaps .icono {
    width: 20%;
}
.btnMaps .icono img {
    width: 50%;
}
.btnMaps .text {
    width: 60%;
    text-align: left;
}
.btnMaps .text p {
    padding: 0px;
    margin: 0px;
    color: white;
}

.btn-dark {
    background-color: #676767;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
}

.btn-dark:hover {
    background-color: #bb141c;
    color: white;
}
