:root {
    --title_banner_font_size: 3rem;
    --description_banner_font_size: 1.5rem;
    --title_font_size: 32px;
    --subtitle_font_size: 24px;
    --description_font_size: ;
}
html {
    scroll-behavior: smooth;
}
body{
  margin: 0;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
main {
    display: block;
}
.site-header {
    background: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-nav {
    max-width: 60%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 16px;
}
.site-nav__brand {
    display: flex;
    align-items: center;
    line-height: 0;
}
.img_nav{
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
}
.site-nav__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-nav__links a {
    display: inline-block;
    padding: 10px 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease;
}
.site-nav__links a:hover {
    background: rgba(255, 75, 31, 0.12);
    color: #ff4b1f;
}
.container{
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 20px;
}
#inicio,
#catalogo,
#compra,
#contacto,
#opiniones {
    scroll-margin-top: 96px;
}
.subcontainer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}
.card_rectangular{
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.column{
    width: 50%;
}
.img_contact{
    width: 500px;
    display: block;
    margin: auto;
}
.banner{
    background: #ff4b1f;
    border-radius: 15px;
    display: flex;
}
.section_information{
    padding: 50px;
    color: #ffffff;
}
.section_information_item{
    color: #1a1a1a;
}
#text_banner{
    font-size: var(--title_banner_font_size);
}
.description_banner{
    font-size: var(--description_banner_font_size);
}
.img_banner{
    width: 600px;
    padding: 40px 50px;
}

@media (min-width: 1251px) {
    .banner {
        align-items: stretch;
    }

    .banner_item {
    max-width: 60%;
    margin: auto;
    padding-bottom: 40px;
    padding-top: 40px;
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 25px;
    }
    .img_center{
        text-align: center;
    }

    .banner > div:last-child {
        display: flex;
        align-items: flex-end;
    }

    .img_banner {
        padding: 40px 50px 0;
    }
    .container_product{
        padding-bottom: 40px;
        padding-top: 40px; 
    }
}
.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.card{
    display: flex;
    width: 335px;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 10px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.card p, .card h3{
    padding: 10px;
    margin: 0px;
}
.card_link {
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-decoration: none;
}
.card_link:hover h3 {
    color: #ff4b1f;
}
.card h3, .card_rectangular h3{
    font-size: var(--subtitle_font_size);
}
.img_cover{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin: 0px;
}
.btn_card{
    width: 100%;
    padding: 10px;
    background: #ff4b1f;
    color: #ffffff;
    font-weight: bold;
    border: 1px solid #969696;
    border-radius: 6px;
    cursor: pointer;
}
.img_send{
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.reviews_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 36px 0 56px;
}
.review_card {
    min-height: 280px;
    padding: 28px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.22) 0px 8px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review_card p {
    margin: 0 0 22px;
    color: #5b6470;
    font-size: 17px;
    line-height: 1.7;
}
.review_stars {
    color: #ff7a1a;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.review_card h3 {
    margin: 0;
    color: #333942;
    font-size: 20px;
}
.floating_contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.floating_contact__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.floating_contact.is-open .floating_contact__options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.floating_contact__toggle,
.floating_contact__option {
    border: 0;
    cursor: pointer;
    box-shadow: rgba(23, 25, 31, 0.24) 0px 12px 28px;
}
.floating_contact__toggle {
    min-width: 118px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: #17191f;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
}
.floating_contact__option {
    min-width: 118px;
    height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}
.floating_contact__option--facebook {
    background: #1877f2;
}
.floating_contact__option--whatsapp {
    background: #25d366;
}
.floating_contact__option span {
    line-height: 1;
}
.site-footer,
footer{
    background: #17191f;
    border-top: 5px solid #ff7a1a;
}
.footer_title {
    margin: 0 0 12px;
    font-size: 22px;
    color: #ffffff;
}
.menu_footer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.menu_footer a:hover {
    opacity: 0.92;
}
.footer{
    max-width: 60%;
    margin: auto;
    padding: 44px 20px;
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(260px, 1fr);
    gap: 28px;
    align-items: start;
}
.footer_brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}
.footer_brand__mark {
    width: 52px;
    height: 52px;
    border: 2px solid #ff7a1a;
    border-radius: 50% 50% 48% 48%;
    position: relative;
    transform: rotate(45deg);
    flex: 0 0 auto;
}
.footer_brand__mark::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid #ffffff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.footer_brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.footer_brand__text strong {
    color: #ff7a1a;
    font-size: 34px;
    letter-spacing: 0;
}
.footer_brand__text span {
    color: #f2f2f2;
    font-size: 15px;
    font-weight: 700;
}
.description_footer{
    max-width: 500px;
    font-size: 16px;
    color: #d8dbe2;
    line-height: 1.6;
}
.menu_footer{
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-style: normal;
    list-style: none;
    font-size: 16px;
    color: #d8dbe2;
}
.menu_footer li{
    padding: 5px 0;
}
.map_card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 12px 28px;
}
.map_card iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}
.item{
    flex-grow: 1;
    flex-basis: 0;
}
.item_title{
    flex-grow: 3;
    flex-basis: 0;
}
.item_description {
  flex-grow: 4.5;
  flex-basis: 0;
}

@media screen and (max-width: 767px) {
    :root {
        --title_banner_font_size: 2.2rem;
        --description_banner_font_size: 1.1rem;
        --title_font_size: 32px;
        --subtitle_font_size: 24px;
        --description_font_size: ;
    }
    .banner{
        flex-direction: column;
    }
    .banner_item{
    background: #ffff;
    color: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 25px;
    }
    .section_information{
        padding: 10px;
    }
    .img_banner{
        width: 100%;
        padding: 0px;
    }
    .container{
        max-width: 100%;
        padding: 0px; 
    }
    .container_product{
        padding-bottom: 40px;
        padding-top: 40px; 
    }
    .subcontainer{
        display: flex;
        flex-direction: column;
    }
    .column{
        width: 100%;
    }
    .img_send{
        height: 400px;
    }
    .reviews_grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 10px 40px;
    }
    .review_card {
        min-height: auto;
        padding: 22px;
    }
    .floating_contact {
        right: 16px;
        bottom: 16px;
    }
    .floating_contact__toggle {
        min-width: 108px;
        min-height: 48px;
        font-size: 15px;
    }
    .floating_contact__option {
        min-width: 108px;
        height: 48px;
        font-size: 14px;
    }
    .footer{
        max-width: 100%;
        grid-template-columns: 1fr;
    }
    .description_footer{
        max-width: 100%;
    }
    .footer_brand {
        align-items: flex-start;
    }
    .site-nav {
        max-width: 100%;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .site-nav__links {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1250px) {
    :root {
        --title_banner_font_size: 2.2rem;
        --description_banner_font_size: 1.1rem;
        --title_font_size: 32px;
        --subtitle_font_size: 24px;
        --description_font_size: ;
    }
    .container{
        max-width: 100%;
        padding: 0px;
    }
    .section_information{
        padding: 0px 25px;
    }
    .img_banner{
        width: 350px;
        padding: 0px 25px;
    }
    .img_center{
        text-align: center;
    }
    .reviews_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin: 30px 10px 48px;
    }
    .review_card {
        min-height: 320px;
        padding: 22px;
    }
    .review_card p {
        font-size: 16px;
    }
    .footer{
        max-width: 100%;
        grid-template-columns: 1.2fr 0.8fr;
    }
    .site-nav {
        max-width: 100%;
    }
    .description_footer{
        max-width: 350px;
    }
    .img_send{
        height: 400px;
    }
    .banner_item{
    background: #ffff;
    color: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    max-width: 60%;
    margin: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 25px;
    }
    .container_product{
        padding-bottom: 40px;
        padding-top: 40px;    
    }
}
