* {
    margin: 0;
    padding: 0;
}

body,
html {
    width: 100%;
    height: 100%;
} 


/* menu header */

nav {
    display: flex;
    position: relative;
    justify-content: space-between;
    background-color: #f2f2f2;
    width: 100%;
    align-items: center;
    box-shadow: 1px 1px 1px lightslategray;
    margin-bottom: -100px;
}

.header-menu {
    display: flex;
    margin-right: 2%;
    
}

a {
    cursor: pointer;
}

.imgLogo {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-left: 2%;
    cursor: pointer;
}

.menuburguer {
    margin-top: 3px;
    display: none;
    background-color: #f68247;
}

.initial-button {
    border-radius: 33px;
    justify-content: center;
    height: 40px;
    width: 200px;
    font-weight: 750;
    text-decoration: none;
    border-style: none;
    margin-right: 3%;
    cursor: pointer;
    background-image: linear-gradient(to left, rgb(212, 212, 2) 20%, yellow);
}

.initial-button:hover {
    box-shadow: 1px 1px 1px 1px lightslategray;
    background-color: rgb(233, 233, 0);
}

/* Body */

:root {
    --primary-color: #f68247;
    --secondary-color: #444;
    --overlay-color: rgba(0, 0, 0, 0.7);
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.1rem;
}

h1,
h2,
h3,
h4 {
    line-height: 1;
}

a {
    color: var (--secondary-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    min-width: 376px;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

.section-a {
    margin: 2rem 0;
}

.section-a .container {
    margin-top: 150px;
    align-items: end;
    justify-content: end;
    float: right;
}

.section-a h1 {
    font-size: 4rem;
    color: var(--primary-color);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.section-a p {
    margin: 1rem 0;
    font-size: 1.1rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.section-a .img-body-13429923 {
    float: none;
    width: 30%;
    margin: 10px 0 0 10px;
}

.section-b {
    position: relative;
    background: url('./assets/11110.jpg') no-repeat bottom center/cover;
    height: 800px;
    background-size: 100%;
    background-position: center;
}

.section-b-inner {
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    max-width: 100%;
    padding: 5rem 0;
}

.section-b-inner h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 5rem;
    margin-top: 1rem;
}

.section-b-inner h3 {
    font-size: 2rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.section-b-inner p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    background-color: #f68247;
    color: #fff;
    padding: 1rem 5rem;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 30px;
    margin: 0.8rem;
}

.btn:hover {
    background-color: #f8712d;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--overlay-color);
}

@media screen and (min-device-width : 320px) and (max-device-width : 480px) {

    body {
        display: grid;
    }
    header{
        margin-bottom: -110px;
    }
    .section-a .container h1 {
        display: grid;
        grid-template-rows: 90px;
        font-size: 2.3rem;
        margin-bottom: 30px;
        text-align: center;
        width: 360px;
    }

    .section-a .container p {
        font-size: 20px;
        text-align: justify;
        width: 100vw;
    }

    .section-a .container button {
        display: inline;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 20px;
        margin: 0 10px 20px -1px;
    }

    .img-body-13429923 {
        display: none;
    }

    .section-b {
        height: 550px;
    }
    
    .section-b h2 {
        font-size: 2.4rem;
        margin-top: -90px;
    }
    
    .section-b h3 {
        font-size: 1.6rem;
        margin: 10px auto;
    }
    
    .section-b p {
        font-size: 1.4rem;
        margin: 10px auto;
        text-align: center;
        font-weight: 300;
        width: 80%;
    }

    .texto-mobile {
        width: 90%;
    }

    .btn {
        display: inline;
        font-size: 18px;
        font-weight: 600;
        padding: 10px 20px;
    }

    #address p{
      font-weight: 600;
    }
 } 