@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --background: #F4ECE1;
    --primary: #2F2F2F;
    --secondary: #FF7E00;
    --primary-light: #909090;
}

*{
    font-family: 'Poppins';
    background-color: var(--background);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GENERAL */
.button{
    box-shadow: rgba(158, 158, 158, 0.2) 0px 8px 24px;
    text-decoration: none;
    color: var(--background);
    background-color: var(--primary);
    padding: 1rem 40px;
    margin: 1rem;
    border-radius: 2.5rem;
}

/* HEADER */
header{
    display: flex;
    justify-content: space-around;
    color: #000;
    margin: 48px 65px 0px 85px;
}

.logo{
    display: flex;
    align-items: center;
}

.logo h1{font-size: 2rem;}
.logo img{
    width: 2rem;
    height: 2rem;
    margin-right: 5px;
}

.options span{
    font-size: 22px;
    margin: 0 40px;
}

.search{
    display: flex;
    padding: 20px 35px;
    box-shadow: rgba(158, 158, 158, 0.2) 0px 8px 24px;
    border-radius: 2rem;
    font-size: 20px;
    justify-content: space-around;
    align-items: center;
    outline: 1px solid #000;
    height: 60px;
    margin: 2rem 0;
    border: none;
}

.search-thing{
    display: flex;
    color: #000;
    align-items: center;
}

.search-thing input{border: none;}
.search-thing input:focus{outline: none;}
.search-thing .search-icon{
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* MAIN */
main{
    display: flex;
    margin: 0 5rem 0  ;
    color: var(--primary);
    justify-content: space-around;
}

/* TÍTULO */
.texto{
    margin-bottom: 5rem;
    margin-top: 1rem;
}

.title{
    display: flex;
    align-items: center;
    
}

.texto h2{
    color: var(--secondary);
    font-size: 8rem;
    margin-right: 1rem;
}

.texto h3{
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 800;
}

.texto p{
    color: var(--primary-light);
    font-size: 22px;
}

/* REFERENCES */
.references{
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.references .video{
    display: flex;
    align-items: center;
}

.references .video a, .references .video img{background-color: #FFF8F0;}

.references .video img{
    height: 1rem;
    width: 1rem;
}

.references .video a{
    padding: 1rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.star-rating{
    color: var(--primary);
    font-weight: bold;
}

.testemonies{
    color: var(--primary-light);
    font-weight: normal;
}