/* 

H2:::: font-family: "Roboto", sans-serif;

P::::: font-family: "Raleway", sans-serif;

orange::: color:#f68631;

gris::::: color:#65696c;

*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#333;
    background:#f4f4f4;
}

.contenedor{
    width:90%;
    max-width:1100px;
    margin:auto;
}

header{
    background:#65696c;
    color:#fff;
    padding:20px 0;
}

header .contenedor{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header ul{
    display:flex;
    list-style:none;
    gap:20px;
}

header a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

header a:hover{
    color:#f68631;
}

h2{
    font-family: "Roboto", sans-serif;
}
p, a{
    font-family: "Raleway", sans-serif;
}

i{
    color:#f68631;
}

.hero{
    background:#f68631;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.hero h2{
    font-size:3rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

.boton{
    display:inline-block;
    background:white;
    color:#00bcd4;
    padding:15px 35px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:.3s;
}

.boton:hover{
    background:#222;
    color:white;
}

.seccion{
    padding:70px 0;
    text-align:center;
}

.gris{
    background:#65696c;;
}

.tarjetas{
    display:flex;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
    justify-content:center;
}

.tarjeta{
    background:white;
    width:300px;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.tarjeta h3{
    margin-bottom:15px;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){

header .contenedor{
    flex-direction:column;
}

header ul{
    flex-direction:column;
    margin-top:20px;
    text-align:center;
}

.hero h2{
    font-size:2rem;
}

}