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

:root{
    --color-principal: #D22003;
    --color-secundario: #FEE0A2;
    --color-texto: #f7eeda;
}

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

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

body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-principal);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.container{
    width: 97%;
    max-width: 800px;
    margin: auto;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-texto);

    padding-top: 40px;
    padding-bottom: 30px;
}

.logo{
    text-align: center;
}

.logo img{
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.titulo{
    margin-bottom: 55px;
}


.titulo h1{
    color: var(--color-texto);
    font-size: 25px;
    font-weight: 600;
}

.titulo h2{
    color: var(--color-texto);
    font-size: 25px;
    font-weight: 300;
}

@keyframes latidos {
    from { transform: none; }
    50% { transform: scale(1.2); }
    to { transform: none; }
}

.contact__icono{
    width: 30px;
    height: auto;
    margin-bottom: 20px;

    animation: latidos 1s infinite;
	transform-origin: center;
}

.contact__subtitle{
    font-size: 25px;
    font-weight: 600;
    color: var(--color-texto);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact__phone,
.contact__correo{
    display: flex;
    justify-content: center;
    color: var(--color-texto);
    align-items: center;
    font-size: 28px;
    font-weight: 300;
}

.contact__phone i,
.contact__correo i{
    font-size: 28px;
    color: var(--color-texto);
    margin-right: 20px;
}

.contact__phone:hover,.contact__correo:hover,.contact__phone:hover i, .contact__correo:hover i{
    
    color: var(--color-secundario);
}


.image_footer{
    height: 20%;
}

.image_footer img{
    width: 140%;
    height: auto;
    opacity: .8;
}

.contact__btn{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.contact__download {
    border: 2px solid #fee0a2;
    border-radius:25px;
    padding: 9px 24px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secundario);
    display: inline-block;
}


.contact__download i{
    margin-left:15px;
}

.contact__download:hover{
    background:var(--color-secundario);
    color:var(--color-principal);
}

.contact__info-content{
    padding: 20px;
    background: #fee0a2;
}

.contact__card{
    border: 3px solid #d22003;
    padding: 20px;
}

.contact__card-title{
    color: #d22003;
}

.contact__card-title h2{
    color: #d22003;
    font-size: 30px;
    margin-bottom: 0px;
    
}

.contact__card-title h2 span{
    font-size: 20px;
}

.contact__card-title h4{
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact__card-title p{
    font-size: 14px;
    color: #000;
    text-align: justify;
}

.contact__card-title-p{
    font-size: 20px !important;
    color: #d22003 !important;
    margin-bottom: 10px;
    text-align: center !important;
}

.contact__card-title-p strong{
    margin: 0 5px;
}

@media (min-width: 1024px){
    .image_footer img{
        width: 100%;
    }

    .container{
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .contact__icono{
        width: 50px;
    }
    
    .contact__subtitle{
        font-size: 35px;
    }
    
    .contact__phone,
    .contact__correo{
        font-size: 35px;
    }
    
    .contact__phone i,
    .contact__correo i{
        font-size: 32px;
    }

    .logo img{
        width: 300px;
    }
    
}

@media (max-width: 600px){
    .contact__card-title h2,.contact__card-title h4 {
        font-size: 20px;
    }
    
    .contact__card-title p{
        font-size: 13px;
    }
}
