@import url('https://fonts.googleapis.com/css2?family=Domine:wght@700&display=swap');


html, body{
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Public Sans', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.6;
    font-family: 'Public Sans', sans-serif;
    background-color: #4a4a4a;
    color: white;
    padding-top: 11.5rem; /* SEPARA CONTENIDO DEL HEADER */
}

.title{
    text-align: center;
    font-size: 40px;
    color: #ffffff;
    margin-top: 100px;
    font-weight: 100;
    font-family: 'Public Sans', sans-serif;
}


.container-servicios{
    width: 100%;
    max-width: 1200px;
    height: 430px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.container-servicios .card{
    width: 330px;
    height: 430px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(255, 241, 16, 0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    transition: all 0.25s;
    background-color: #333;
}

.container-servicios .card:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(255, 255, 255, 0.2);
}

.container-servicios .card img{
    width: 330px;
    height: 220px;
}


.container-servicios .card h4{
    font-weight: 600;
}

.container-servicios .card p{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 300;
}

.container-servicios .card a {
    font-weight: 500;
    text-decoration: none;
    color: #fff110;
}
































































