/* GENERAL */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}
html {
    scroll-behavior: smooth;
}
:root{
    --azul: #1f1e1c;
    --rojo: #CD8637;
    --blanco: #f8f8fa;
    --negro: #212529;;
    --gris: #a7a7a7;
    --fondogris: #e8e8e8;
}
.contenedor {
    max-width: 1100px;
    margin: auto;
    padding: 100px 15px;
    color: var(--azul);
}
.btn {
    margin: auto;
    text-decoration: none;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: .5s;
    background-color: var(--rojo);
    color: white;
    font-weight: 600;
    padding: 10px 15px !important;
}
.btn:hover {
    background-color: var(--azul);
}
.titulo {
    text-align: center;
    font-size:50px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--azul);
}
.titulo span{
    font-family: "Alex Brush";
    font-size: 35px;
    text-transform: none;
    color: var(--rojo);
}
.fila {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 30px auto;
}

/* RESPONSIVE */
@media screen and (max-width: 480px) {
    .fa-times {
        display: none;
    }
    nav {
        display: none;
        animation-name: scale-up-hor-left;
        animation-duration: 0.3s;
    }
    @keyframes scale-up-hor-left {
        0% {
        -webkit-transform: scaleX(0.4);
                transform: scaleX(0.4);
        -webkit-transform-origin: 0% 0%;
                transform-origin: 0% 0%;
        opacity: 0;
        }
        100% {
        -webkit-transform: scaleX(1);
                transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
                transform-origin: 0% 0%;
        opacity: 1;
        }
    }
    nav.responsive {
        display: block;
        background-color: var(--azul);
        position: fixed;
        position: absolute;
        line-height: 50px;
        top: 0;
        left: 0;
        width: 80%;
        height: 100vh;
        padding: 60px 20px;
    }
    .open .fa-times {
        display: block;
    }
    .open .fa-bars {
        display: none;
    }
    nav.responsive ul {
        display: block !important;
        text-align: left;
    }
    nav.responsive ul li {
        margin: 5px 0;
    }
    .cont-header .logo {
        width: 130px;
    }
    .icono-nav {
        display: block;
    }
    .inicio, .inicio-sesiones, .inicio-bodas, .inicio-sociales {
        background-position: center 0px;
    }
    .presentacion {
        padding-bottom: 35px;
        align-items: center;
        justify-content: flex-end;
    }
    .presentacion .bienvenida {
        width: 350px;
        text-align:center;
        font-size: 32px;
    }
    .presentacion .descripcion {
        width: 380px;
        font-size: 20px;
        padding: 0 13px;
    }
    /* sobremi */
    .sobremi .contenedor {
        padding: 50px 0;
        display: block;
    }
    .sobremi .foto {
        max-width: 250px;
        margin: auto;
    }
    .sobremi .foto img {
        border-radius: 0;
    }
    .sobremi .informacion {
        margin: auto;
        text-align: center;
        padding: 0 35px;
    }
    .informacion  h2 {
        font-size: 26px;
        text-align: center;
    }
    .sobremi .informacion span {
        font-size: 37px;
        letter-spacing: 0px;
    }
    .informacion p {
        text-align: justify;
        font-size: 15px;
    }
    .paralax-cont{
        height:45vh;
    }
    .cont-nums{
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .contador{
        border-right: none;
    }
    .contador:last-child{
        border-bottom:none;
    }
    /*servicios*/
    .servicios .contenedor{
        padding: 50px 15px;
    }
    .servicios .tarjeta {
        width: calc(90% - 14px);
    }
    .cont_servicio a{
        font-size: 12px;
    }
    /* portfolio */
    .portfolio .filter-btn{
        margin: 7px 5px;
    }
    .portfolio-grid{
    column-count: 1;
}
    .portfolio {
        padding: 50px 0;
    }
    .portfolio .fila {
        display: block;
    }
    .portfolio .servicio {
        font-size: 18px;
    }
    .fila .proyecto {
        margin: 10px auto;
    }
    /* contacto */
    .new{
        font-size: 35px;
    }
    .contacto .contenedor {
        padding: 50px 15px;
        display: block;
    }
    .info-contacto {
        margin-bottom: 50px;
    }
    .info-contacto p {
        font-size: 16px;
    }
    .follow {
        text-align: left;
        margin: 5px;
    }
    .info-contacto .follow a {
        margin-left: 0;
        font-size: 18px;
    }
    .contenedor-form form {
        text-align: center;
    }
    .contenedor-form .fila {
        display: block;
    }
    .fila .media {
        margin-bottom: 20px;
    }
    .contenedor-form .fila input {
        width: 80%;
    }
    .contenedor-form .fila textarea {
        width: 80%;
        margin-bottom: 10px;
    }
    /* footer */
    .footer .contenedor_ft {
        font-size: 12px;
    }
    .cont_redes a {
        font-size: 14px;
        margin-right:10px;
        padding-left: 10px;
        display: inline-block;
        margin-bottom: 10px;
    }
    .cont_redes a i{
        padding-right: 8px;
    }
    .contenedor_ft img {
        max-width: 200px;
    }
    footer .copy{
        font-size: 14px;
    }
    /*error*/
    .error .notfound {
        max-width: 310px;
        margin: auto;
    }
    .text-chico{
        font-size: 18px;
    }
    .notfound h1 img{
        width: 300px;
    }
    .notfound p {
        font-size: 14px;
        top: -16px;
        margin-bottom: 10px;
    }
    .notfound .botones a {
        font-size: 12px;
        padding: 3px;
    }
    .cont_logo_ft, .cont_seccions, .cont_redes {
    margin-bottom: 10px;
    }
    .cont_seccions ul li a{
        font-size: 15px;
    }
    .copy{
        text-align: center;
    }
    .error{
        background-position: center 0px;
    }
    .error .notfound h1{
        font-size: 43px;
    }
    .error .notfound p{
        font-size: 15px;
    }
    .error .notfound a{
        font-size: 15px;
    }

    /*SOBRE MI PAGE*/
    .header-sobremi {
        background-position: center 0px;
    }
    .bienvenida-sobremi {
    font-size: 18px;
    font-weight: 600;
    }
    .presentacion-sobremi .resaltar {
        font-size: 30px;
        letter-spacing: 1px;
    }
    .informacion-sobremi{
        margin: 20px;
    }
    .informacion-sobremi i{
        margin-top: 10px;
        font-size: 18px;
    }
    .tech-icons{
        display: none;
    }
    .sobremi-web .contenedor {
        padding: 50px 0;
        display: block;
    }
    .sobremi-web .foto {
        max-width: 200px;
        margin: auto;
    }
    .sobremi-web .foto img {
        padding: 8px;
    }
    .sobremi-web .informacion {
        margin: auto;
        text-align: center;
        padding: 0 35px;
    }
    .sobremi-web .informacion  h2 span{
        text-align: center;
        font-size: 28px;
    }
    .informacion h3 {
        font-size: 12px;
    }
    .informacion p {
        text-align: left;
        font-size: 15px;
    }
    .trayectoria .contenedor .titulo{
        font-size: 45px;
    }
    /*SERVICIOS PAGES*/
    .informacion-paquetes{
        max-width: 300px;
        margin: auto;
        text-align: center;
    }
    .informacion-paquetes ul{
        text-align: left;
        font-size: 18px;
        padding-left: 20px;
    }
    .viñetas{
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 10px;
    }
    .entregables{
        padding-top: 5px;
    }
    .foto-movil{
        display: flex;
    }
    .foto-web{
        display: none;
    }
}