* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    max-width: 100%;
    max-height: 100vh;
    background-color: #f7f8ff;
}

main{
    max-width: 1200px;
    height: fit-content;
    margin: auto;
    padding: auto;
    align-content: center;
}


@keyframes fall {
    0% {
        transform: translateY(-50px);
    }

    50% {
        transform: translateY(calc(20vh - 50px));
    }

    /* Berhenti di tengah */
}

h1 {
    width: 100%;
    color: #4862ff;
    font-size: 36px;
    text-align: center;
    font-family: "Source Serif Pro";
    line-height: 36px;
}

h2{
    font-size: 36px;
    font-family: "Source Serif Pro";
}

.contenedor {
    width: 1200px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
        "uno uno dos"
        "uno uno tres"
        "uno uno cuatro";
    padding: auto;
    gap: 20px;
    margin: auto;
}

.mapa {
    grid-area: uno;
    display: flex;
    border: 1px solid rgb(170, 169, 169);
    border-radius: 20px;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin:0;
    padding: 0;
}


.ubicacion{
    grid-area: dos;
    width: auto;
    height: auto;
    padding: 20px;
    background-color: #5f6ce8;
    border-radius: 20px;
    color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

.ubicacion h2{
    font-size: 18px;
    text-align: left;
    font-family:"Source Sans 3";
    line-height: 20px;
}

.direccion img{
    width: 28px;
    align-content: center;
    margin-right: 10px;
}

.direccion h4{
    font-family: "Source Sans 3";
    font-size: 16px;
    line-height: 22px;
    align-content: baseline;
}

.direccion{
    height: auto;
    padding: auto;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.direccion h3{
    font-family: "Source Sans 3";
    font-size: 20px;
    align-content: baseline;
}

.direccion p{
    font-family: "Source Sans 3";
    font-size: 14px;
    line-height: 16px;
    text-align: justify;
    margin-left: 38px;
}

.contenedor-redes {
    grid-area: tres;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #d1e5f0;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

.contenedor-redes h2{
    font-size: 18px;
    text-align: left;
    font-family: "Source Sans 3";
    line-height: 20px;
    color: #4862ff;
}

.redes{
    display: flex;
    flex-wrap: wrap;
    padding:0;
    margin-top: 20px;
    margin-bottom: 0;
    justify-content: space-between;
}

.redes a img {
    width: 60px;
    height: 60px;
    border-radius:10px;
    transition: 0.4s;
}

/* .api-whatsapp {
    grid-area: cuatro;
    width: auto;
    padding: 0;
    margin: 0;
    align-content: center;
    justify-items: right;
}

.boton-api a{
    width: fit-content;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    margin: 0;
    padding-left: 20px;
    padding-top: 0;
    padding-right: 20px;
    padding-bottom: 0;
    align-items: center;
    background-color: #81dd8e;
    border-radius: 50px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

.boton-api img{
    width: 80px;
    height: auto;
    margin-left: 0;
    margin-top: 0;
    margin-right: 5px;
    margin-bottom: 0;
    padding: auto;
    overflow: hidden;
}

.boton-api h2{
    font-family: "Source Sans 3";
    font-weight: normal;
    font-size: 20px;
    line-height: 22px;
    color: white;
} */