#businessHeader {
    width: 100%;
    padding: 32px;
}

#businessHeader h1 {
    font-size: 32px;
    text-align: center;
    color: var(--soft-black);;
}

#businessHeader .slogan {
    text-align: center;
    margin-top: -4px;
}

#businessHeader .districtAndCategory {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
}

#businessHeader .districtAndCategory span {
    margin: 0 4px;
    padding: 0 4px;
    font-size: 14px;
    color: var(--secondary-color);
}


#socialNetwork {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#socialNetwork ul{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


#socialNetwork ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
}

#socialNetwork ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: .5s;
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075)
    ;
}

#socialNetwork ul li a:hover {
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.13),
      0 2px 2px hsl(0deg 0% 0% / 0.13),
      0 4px 4px hsl(0deg 0% 0% / 0.13),
      0 8px 8px hsl(0deg 0% 0% / 0.13),
      0 16px 16px hsl(0deg 0% 0% / 0.13)
    ;
}

#socialNetwork ul li a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #fff;
}



#socialNetwork ul li a.site {
    background:grey;
    color: #fff;
}

#socialNetwork ul li a.whatsapp {
    background:#075E54;
    color: #fff;
}





#socialNetwork ul li a i {
    margin-right: 5px;
    font-size: 1.4rem;
}

#socialNetwork ul li a p {
    font-size: 0.8rem;
    line-height: 1;
    text-align: center;
}


#businessInfo {

}

#businessInfo .margin {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
        'info info coupons'
        'maps maps maps'
        'claim claim claim';
    grid-gap: 0 24px;
}

#descriptionBox div, #couponsBox div {
    padding: 16px;
    border-radius: 16px;
    background: #f8f8f8;
    margin-bottom: 24px;
}

#descriptionBox p, #couponsBox p {
    line-height: 1.5;
    margin-bottom: 6px;
}

#descriptionBox .sectionTitle, #couponsBox .sectionTitle {
    font-size: 0.9rem;
    color: #616161;
    line-height: 1.5rem;
    margin-top: 0.4rem;
}

#descriptionBox {
    grid-area: info;
}

#descriptionBox .short_description {
    font-style: italic;
    color: var(--secondary-color);
}

#descriptionBox .contactAndSocial .contact {
    margin: 6px 0;
}

#descriptionBox .contactAndSocial .contact a {
    text-decoration: none;
    color: var(--soft-black);;
    padding: 1px 0;
    border-bottom: 1px solid #00000033;
}

#descriptionBox .contactAndSocial .contact a:hover {

    border-bottom: 1px solid #000000bb;
}


#descriptionBox .address address {
    touch-action: none;
    font-style: normal;
}

#descriptionBox .address .btnMaps {

}

#descriptionBox .address .btnMaps a {
    display: inline-block;
    text-decoration: none;
    color: var(--soft-black);;
    margin-top: 4px;
    padding: 1px 0;
    border-bottom: 1px solid #00000033;
}

#descriptionBox .address .btnMaps a:hover {
    border-bottom: 1px solid #000000bb;
}


#couponsBox {
    grid-area: coupons;
}

#couponsBoxInner {

}

#couponsBox #coupons {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

#couponsBox #coupons li {
    padding: 8px;
    border: 2px dashed #444;
    margin: 8px 0;
    background: var(--ticket-color);
    border-radius: 8px;
}

#couponsBox #coupons li h6 {
    font-size: 16px;
}

#couponsBox #coupons li p {
    font-size: 14px;
}

#couponsBox #coupons li small {
    display: block;
    font-size: 13px;
    margin: 4px 0;
}

#couponsBox #coupons li a {
    display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #077187;
    border: 1px solid #077187;
    border-radius: 4px;
    font-size: 13px;
    padding: 6px 8px;
    transition: 0.4s;
}

#couponsBox #coupons li a:hover {
    color: #fff;
    background: #077187;
}


#google-map {
    grid-area: maps;
    width: 100%;
    height: 380px;
    background-color: gray;
    border-radius: 8px;
    overflow: hidden;
    /* padding-bottom: 56.25%; */
    position: relative;
}

#google-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


#claimBusiness {
    grid-area: claim;
    padding: 16px;
    border-radius: 16px;
    background: #f8f8f8;
    margin: 24px 0;

}

#claimBusiness h5 {
    font-size: 16px;
}

#claimBusiness p {
    font-size: 14px;
}

#claimBusiness a {
    display: inline-block;
    text-decoration: none;
    background: #fff;
    color: #077187;
    border: 1px solid #077187;
    border-radius: 4px;
    font-size: 14px;
    padding: 6px 8px;
    margin-top: 6px;
    transition: 0.4s;
}

#claimBusiness a:hover {
    color: #fff;
    background: #077187;
}



@media (max-width: 992px) {

    

}


@media (max-width: 768px) {

    #businessInfo .margin {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: 
            'info'
            'coupons'
            'maps'
            'claim';
    }

    
}

@media (max-width: 576px) {


   

    
}


