
@import url(/css/var.css);



/* Wrapper Contact + */
.wrapper-contact {
    max-width: var(--maxwidth-body);
    margin: 0 auto;
    height: 100dvh;
}

/* Wrapper Contact - */

/* Background Section + */
.bg-contact {
    position: relative;
    height: 80dvh;
    overflow: hidden;
    width: 100%;
    background-image: linear-gradient(#0008, #0008), url(/img/bg-contact.webp);
    background-position: 0% 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.container-text {
    position: absolute;
    top: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: space-between;
    padding: 0 30px;
    animation: inicio 2.8s -.1s both;
}

.container-text h1 {
    color: var(--text-color-primary-ligth);
    font-size: var(--font-size-extra-small);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.container-text p {
    color: var(--text-color-primary-ligth);
    font-size: var(--font-size-small);
    letter-spacing: 3px;
    margin-top: 10px;
}

.container-line {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.line {
    width: 100%;
    height: 3px;
    margin-right: 50px;
    background-color: var(--line-color-white);
    border-radius: 10px;
    margin: 10px 0px;
}

/* Background Section - */

/* Phone Section + */

.phone{
    background-color: var(--bg-section-ligth);
}

.wrapper-phone {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    color: var(--text-color-green);
}

.icon-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5px 5px;
}

.icon-text img {
    max-width: 64px;
}

.icon-text .icon-title {
    font-weight: bold;
    padding: 10px;
}

.icon-text p, .icon-text a {
    font-size: var(--font-size-small);
    text-align: center;
}

/* Phone Section - */

/* Social Section + */

.social{
    background-color: var(--bg-section-brown);
}

.wrapper-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    color: var(--text-color-green);
}

.social h2 {
    font-size: var(--font-size-small);
    text-transform: uppercase;
    text-align: center;
    color: var(--text-color-green);
    padding: 20px 10px;
}


/* Social Section - */

/* Opening Section + */

.opening{
    background-color: var(--bg-section-ligth);
}

.wrapper-opening {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 20px 20px;
    color: var(--text-color-green);
}

.wrapper-opening h2 { 
    text-transform: uppercase;
}

/* Opening Section - */

/* Animation + */

@keyframes inicio {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* Animation - */


@media screen and (min-width:768px) {

    /* Background Section + */

    .container-text {
        padding: 0px 150px;
    }

    .container-line {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
    }

    .line {
        height: 4px;
    }

    .container-text h1 {
        font-size: var(--font-size-large);
        letter-spacing: 6px;
    }

    .container-text p {
        font-size: var(--font-size-large);
        letter-spacing: 4px;
    }

    /* Background Section - */


    .line2 {
        display: block;
        width: 20px;
        height: 100px;
        background-color: var(--line-color-white);
        padding: 100px 0px;
        border-radius: 4px;
    }

    .line-green {
        background-color: var(--line-color-green);
    }

/* Phone Section + */

.wrapper-phone {
    flex-direction: row;
    justify-content: space-evenly;
    padding: 50px 20px;
}

/* Phone Section - */

/* Social Section + */

.wrapper-social {
    flex-direction: row;
    justify-content: space-evenly;
    padding: 20px 20px;
}

.social h2 {
    padding: 30px 10px;
}

/* Social Section - */

.wrapper-opening p {
    font-size: var(--font-size-extra-small);
}

}