*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
}
body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
}
.contenedor {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}
.btn-wsp {
    display: inline-block;
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    box-shadow: 3px 2px 6px rgba(0, 0, 0, .6);
}

/* ----HEADER CABEZERA---- */

header {
    width: 100%;
    background: url('../../img/portada\ sociales.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center 0;
}
header .contenedor {
    position: relative;
    height: 400px;
}
header .textos {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 40%;
    margin-top: -54px;
}
header .textos .nombre {
    font-size: 60px;
    font-weight: 300;
}
header .textos .nombre span {
    color: #8F4899;
    font-weight: 600;
}

/* ----CONTENIDO DE LAS TARJETAS---- */

.main .ejes .titulo {
    color: #8F4899;
    font-size: 50px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.main .ejes .texto {
    font-size: 24px;
    color: #494C4B;
    line-height: 28px;
    width: 90%; 
    margin: 20px auto 10% auto;
    text-align: left;
    margin-bottom: 10px;
}

/*PRIMER MAIN CON TRES TARJETAS AJUSTES GENERALES*/

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 60px;
}
.card,
.card2,
.card3 {
    width: 330px;
    background-color: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.6);
    margin: 20px;
}
.card img,
.card2 img,
.card3 img {
    width: 100%;
    height: auto;
}
.card-content,
.card-content2,
.card-content3 {
    padding: 20px;
}

/*CARD UNO, AQUI EMPIEZA TODO*/

.card-content h3 {
    color: #8F4899;
    font-size: 26px;
    margin-bottom: 8px;
}
.card-content .btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #8F4899;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 16px;
    color: #fff;
}

/*CARD 2 AJUSTES*/

.card-content2 h3 {
    color: #e02c2c;
    font-size: 26px;
    margin-bottom: 8px;
}
.card-content2 .btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #e02c2c;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 16px;
    color: #fff;
}

/*CARD 3 AJUSTES*/

.card-content3 h3 {
    color: #009ADE;
    font-size: 26px;
    margin-bottom: 8px;
}
.card-content3 .btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #009ADE;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 16px;
    color: #fff;
}

/*SEGUNDO MAIN CON TRES TARJETAS*/

.card-content4 {
    padding: 20px;
}
.card4 {
    width: 330px;
    background-color: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.6);
    margin: 20px;
}
.card4 img {
    width: 100%;
    height: auto;
}

/*CARD 4 AJUSTES*/  

.card-content4 h3 {
    color: #C99C2A;
    font-size: 26px;
    margin-bottom: 8px;
}
.card-content4 .btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #C99C2A;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 16px;
    color: #fff;
}

/* footer */

.container {
    max-width: 1000px;
    margin: 0 auto;
}
.footer {
    background-color:#8F4899;
    padding: 60px 0;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}
.footer-link {
    width: 25%;
    padding: 0 15px;
}
.footer-link h4 {
    font-size: 26px;
    color: #ffff;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom:  2px solid #fff;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-link ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    display: block;
    margin-bottom: 20px;
    transition: all .3s ease;
}
.footer-link ul li a:hover{
    color: #494C4B;
    padding-left: 4px;
}
.social-link img {
    display: inline-block;
    min-height: 40px;
    width: 40px;
    margin: 0 10px 10px 0;
}

/* MEDIA QUERIES */
@media screen and (max-width: 760px) {
    header .textos {
        position: static;
        margin: 100px 0;
    }

    header .textos .nombre {
        font-size: 40px;
    }

    /*PERSONALIZAR ARTICULOS*/

    .main .ejes .titulo {
        font-size: 40px;
    }

    .main .social .titulo {
        font-size: 40px;
    }

    /*ACTIVIDADES PARA TU EVENTO*/

    .eventos {
        display: inline-block;
    }
    
    .eventos .hero-content {
        margin: 50px auto;
        text-align: center;
    }

    .eventos .hero-text {
        margin: 50px auto;
        text-align: center;
    }

    /*FOOTER*/

    .container {
        max-width: 600px;
    }

    .footer-link h4 {
        font-size: 22px;
    }

    .footer-link ul li a{
        font-size: 14px;
    }

    .social-link img {
        display:flow-root;
    }
}

@media screen and (max-width: 440px) {
    header .textos .nombre {
        font-size: 40px;
    }

    .main .ejes .texto,
    .main .social .texto {
        font-size: 16px;
    }

    .campo .hero-content p ul {
        font-size: 16px;
    }

    .camping {
    display: inline;
    }

    .empresarial .contenedor .titulo {
        font-size: 40px;
    }

    .empresarial .contenedor p {
        font-size: 16px;
    }

    .espirituales .hero-content p {
        font-size: 16px;
    }

    .banquetes .hero-content p {
        font-size: 16px;
    }

    .contenedor .hero .campo {
        display: inline;
    }

    .contenedor .hero .campo p {
        font-size: 16px;
    }

    .contenedor .hero .camping p {
        font-size: 16px;
    }

    /* .espirituales {
    display: inline;
    }

    .banquetes {
    display: inline;
    } */

    .contenedor img {
        width: 60%;
        border-radius: 20px;
    }

    .eventos .hero-content,
    .eventos .hero-text {
    display: inline;
    width: 100%;
    }

    .eventos .hero-content h3 {
        font-size: 30px;
    }

    .eventos p {
        font-size: 16px;
    }

    /*FOOTER*/
    .container {
        max-width: 400px;
    }

    .footer-link h4 {
        font-size: 16px;
    }
    
    .footer-link ul li a{
        font-size: 12px;        
    }

    .social-link img {
        min-height: 26px;
        width: 26px;
    }

}