/* ------------------- 
        FONTS 
-------------------- */
@font-face {
    font-family:'Arimo';
    src: url('assets/fonts/Arimo/Arimo-Regular.ttf') format('ttf'),
      url('assets/fonts/Arimo/Arimo-Regular.woff') format('woff'),
      url('assets/fonts/Arimo/Arimo-Regular.woff2') format('woff2');
}

@font-face {
    font-family:'Titan One';
    src: url('assets/fonts/Titan_One/TitanOne.ttf') format('ttf'),
      url('assets/fonts/Titan_One/TitanOne.woff') format('woff'),
      url('assets/fonts/Titan_One/TitanOne.woff2') format('woff2');
}

/* ------------------- 
        ICONS 
-------------------- */
.icon {
    position: relative;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon.icon-pin {
    width: 60px;
    height: 40px;
    background-image: url(assets/icons/pin-mapa.svg);
}

/* ------------------- 
        INITIAL 
-------------------- */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arimo';
    font-size: 1.25rem;
    line-height: 1.875rem;
}

/* ------------------- 
        GENERAL 
-------------------- */
.container {
    padding: 0 190px;
    margin: 0 auto;
}

.title {
    font-family:'Titan One';
    color: var(--c-brown-400);
    font-size: 3.75rem;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.subtitle {
    font-family:'Titan One';
    color: var(--c-brown-400);
    font-size: 2.5rem;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.text {
    color: var(--c-brown-300);
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.t-100 {
    padding-top: 100px;
}

.b-100 {
    padding-bottom: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ------------------- 
        COLORS 
-------------------- */
:root {
    --c-brown-400:#250C01; 
    --c-brown-300: #2C150B;
    --c-brown-200: #F0C27E;
    --c-orange: #F4B85A;
    --c-red: #F07E7E;
    --c-green: #BEF07E;
}


/* ------------------- 
        CONTENT 
-------------------- */

header {
    position: sticky;
    background-color: white;
    padding: 20px 0;
    top: 0;
    z-index: 10;
} 

header li {
    list-style: none;
    padding-right: 40px;
}

header li:last-child {
    padding: 0;
}

header li a {
    font-family: 'Titan One';
    font-size: 1.25rem;
    color: var(--c-brown-400);
    text-decoration: none;
    text-transform: uppercase;
}

header li a.active {
    color: var(--c-orange);
}

.hero-image {
    height: 650px;
    background-color: var(--c-orange);
    padding: 0 40px;
}

.hero-image img {
    width: 100%;
}

.data .title {
    margin-bottom: 20px;
}

.products {
    position: relative;
}

.products .title {
    margin-bottom: 50px;
}

.products img {
    width: 390px;
}

.products-cards {
    position: relative;
    margin-top: 120px;
}

.products-item {
    width: 100%;
    border-radius: 50px;
    margin-bottom: 120px;
}

.products-item:last-of-type {
    margin: 0;
}

.item-red {
    background-color: var(--c-red);
}

.item-brown {
    background-color: var(--c-brown-200);
}

.item-green {
    background-color: var(--c-green);
}

.products-item img {
    position: absolute;
    padding-left: 35px;
}

.products-data {
    padding: 35px 35px 35px 500px;
}

.products-data__l {
    padding: 35px 500px 35px 35px;
}

.r-image {
    right: 0;
}

.location {
    padding: 50px 0;
    background-color: var(--c-brown-400);
}

.location-data  {
    width: 500px;
    margin: 0 auto;
}

.location-data .icon-pin {
    margin-right: 10px;
}

.location-data__img {
    width: 100%;
    margin-top: 50px;
}

footer {
    padding: 30px 0;
    background-color: var(--c-orange);
}

footer img {
    width: 430px;
    margin-bottom: 20px;
}


@media (max-width: 1200px) {
    .title {
        letter-spacing: 1px;
    }

    .products-cards {
        margin: 50px 0;
    }

    .products-data {
        padding: 35px 35px 35px 380px;
    }

    .products-data__l {
        padding: 35px 380px 35px 35px;
    }

    .products img {
        width: 300px;
    }

    .products-item {
        margin-bottom: 60px;
    }
}

@media (max-width: 1025px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle, .subtitle.text-white {
        font-size: 1.875rem;
    }

    .text {
        font-size: 1rem;
        line-height: 1.563rem;
    }

    .text-white {
        font-size: 1rem;
        line-height: 1.563rem;
    }

    .container {
        padding: 0 100px;
    }

    .b-100 {
        padding-bottom: 70px;
    }

    .t-100 {
        padding-top: 70px;
    }

    .icon.icon-pin {
        width: 50px;
    }

    header li {
        padding-right: 20px;
    }

    header li a {
        font-size: 1.20rem;
    }

    .hero-image {
        height: 400px;
    }

    .hero-image img {
        width: 80%;
    }

    .products-item img {
        width: 250px;
    }

    .products-data {
        padding: 35px 35px 35px 320px;
    }

    .products-data__l {
        padding: 35px 320px 35px 35px;
    }

    footer img {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 50px;
    }

    header {
        padding: 10px 0;
    }

    .header-inner {
        justify-content: center;    
    }

    .header-inner img {
        width: 50px;
    }

    .header-nav {
        display: none;
    }

    .hero-image {
        height: 300px;
    }

    .products-item img {
        width: 200px;
    }

    .products-data {
        padding: 35px 35px 35px 250px;
    }

    .products-data__l {
        padding: 35px 250px 35px 35px;
    }
}

@media (max-width: 600px) {
    .location-data {
        width: 100%;
    }

    .location-data__img {
        margin-top: 30px;
    }

    .products .title {
        margin-bottom: 80px;
        text-align: center;
    }

    .products-item {
        position: relative;
        border-radius: 40px;
        margin-bottom: 80px;
    }

    .products-item img {
        padding: 0;
        left: 50%;
        transform: translate(-50%);
        -webkit-transform: translate(-50%);
        top: -60px;
    }

    .products-data {
        padding: 130px 20px 20px 20px;
    }

    .products-data__end {
        padding: 80px 20px 20px 20px;
    }

    footer img {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 30px;
    }
    .t-100 {
        padding-top: 40px;
    }

    .b-100 {
        padding-bottom: 40px;
    }
    
    .title {
        font-size: 1.875rem;
    }

    .subtitle {
        font-size: 1.563rem;
    }

    .hero-image {
        height: 150px;
    }

    .hero-image img {
        width: 70%;
    }
}