:root {
    --branco: #fdfdfd;
    --verdeAguaEscuro: #004AAD;
    --verdeAguaClaro: #0B8BDD;
    --cinzaBorda: #e2dfdf77;
    --cinzaFundo: #f8f5f5a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* =========== Animation */

@keyframes go-back {
    0% {
        transform: translateX(100px);
    }

    100% {
        transform: translateX(0);
    }
}


/* =========== HEADER */

.header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px;
    width: 100%;
    box-shadow: 0px 1px 3px var(--cinzaBorda);
    z-index: 10;
    background-color: var(--branco);
}

a {
    text-decoration: none;
    color: inherit;
}

.menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.menu li {
    list-style: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--verdeAguaEscuro);
}

.menu li:hover {
    color: var(--verdeAguaClaro);
    transition: .5s ease-in;
}

/* =========== Menu Mobile */

.mobile-btn {
    display: none;
    border: none;
    background-color: transparent;
}

.mobile-btn i {
    font-size: 20px;
    color: var(--verdeAguaEscuro);
}

.close-menu {
    display: none;
}

.close-menu i {
    font-size: 20px;
    color: var(--branco);
}


@media screen and (max-width: 1000px) {
    .mobile-btn {
        display: block;
    }

    .menu li {
        display: none;
    }

    .nav.active .menu li:hover {
        color: var(--branco);
    }

    .close-menu {
        display: block;
    }

    .nav.active .menu {
        position: fixed;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        background-color: var(--verdeAguaClaro);
        border-left: 1px solid var(--cinzaEscuro);
        height: 100%;
        max-width: 280px;
        width: 100%;
        right: 0;
        top: 0;
        animation: go-back 1s;
    }

    .nav.active .menu li {
        display: flex;
    }
}

/* =========== Banner */

.banner img {
    width: 100%;
    height: 650px;
}

.banner-text-container {
    position: absolute;
    max-width: 600px;
    width: 95%;
    top: 30%;
    opacity: .7;
}

.banner-text-container p {
    font-size: 20px;
    color: var(--branco);
    font-weight: 500;
    background-color: var(--verdeAguaEscuro);
    padding: 20px;
}

@media screen and (max-width: 319px) {
    .banner-text-container {
        top: 20%;
    }
}

/* =========== MAIN */

/* About */

#about {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding: 20px;
    margin-top: 28px;
}

.about-container {
    max-width: 900px;
    width: 100%;
}

.about-title {
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
    color: var(--verdeAguaEscuro);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--cinzaBorda);
}

.about-container p {
    font-weight: 300;
    text-indent: 16px;
}

.about-container p span {
    font-weight: 500;
}

.about-img img {
    height: 450px;
    border-radius: 12px;
    -webkit-box-shadow: 6px 3px 18px -12px rgba(41, 41, 41, 1);
    -moz-box-shadow: 6px 3px 18px -12px rgba(41, 41, 41, 1);
    box-shadow: 6px 3px 18px -12px rgba(41, 41, 41, 1);
}

@media screen and (max-width: 306px) {
    .about-img img {
        width: 99%;
        height: 99%;
    }
}

@media screen and (max-width: 374px) {
    .about-title {
        font-size: 24px;
    }

    .about-container p {
        font-size: 14px;
    }
}

/* =========== Practice */

#practice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 60px 0px;
    background-color: var(--cinzaFundo);
}

.practice-container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.practice-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
    color: var(--verdeAguaEscuro);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--cinzaBorda);
}

.practice-parag {
    text-align: center;
    font-weight: 300;
    text-indent: 16px;
    margin-bottom: 32px;
}

.practice-areas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.practice-areas div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 260px;
    height: 139px;
}

.practice-areas div p {
    color: var(--branco);
    text-shadow: 3px 1px 1px rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
}

@media screen and (max-width: 374px) {
    .practice-areas div {
        width: 220px;
        height: 119px;
    }

    .practice-title {
        font-size: 24px;
    }

    .practice-parag {
        font-size: 14px;
    }
}

/* =========== Pratice Areas Images */

.pen {
    background-image: url(../img/pratice-areas-img/area-img1.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.civ {
    background-image: url(../img/pratice-areas-img/area-img2.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.tri {
    background-image: url(../img/pratice-areas-img/area-img3.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.tra {
    background-image: url(../img/pratice-areas-img/area-img4.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.adm {
    background-image: url(../img/pratice-areas-img/area-img5.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.con {
    background-image: url(../img/pratice-areas-img/area-img6.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.pen:hover,
.civ:hover,
.tri:hover,
.tra:hover,
.adm:hover,
.con:hover {
    background-size: 110%;
    transition: .8s ease-in-out;
    background-position: left right;
}

/* =========== Associates */

#associates {
    padding: 20px;
    margin-top: 28px;
}

.associates-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
    color: var(--verdeAguaEscuro);
    border-bottom: 1px solid var(--cinzaBorda);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 32px;
}

.associates-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.associates-content div {
    width: 350px;
    display: flex;
    flex-direction: column;
}

.associates-content div img {
    margin: 0 auto;
}

.associates-content div h4 {
    text-align: center;
    padding: 8px;
    color: var(--verdeAguaEscuro);
    font-weight: 600;
}

.associates-content div p {
    font-weight: 400;
    text-indent: 4px;
}

.associates-content div span {
    font-weight: 600;
}

@media screen and (max-width: 374px) {
    .associates-title {
        font-size: 24px;
    }

    .associates-content img {
        width: 220px;
    }

    .associates-content div p {
        font-size: 14px;
    }
}

/* =========== Contact */

#contact {
    padding: 40px 20px;
    background-color: var(--cinzaFundo);
}

.contact-container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
    color: var(--verdeAguaEscuro);
    margin-bottom: 32px;
    border-bottom: 1px solid var(--cinzaBorda);
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
}

.contact-form label {
    color: var(--verdeAguaEscuro);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 16px;
    background-color: var(--cinzaBorda);
}

.contact-form textarea {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    width: 100%;
    background-color: var(--cinzaBorda);
    margin-bottom: 8px;
}

.contact-form textarea:focus,
.contact-form input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}

.form-btn {
    width: 100%;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--verdeAguaEscuro);
    color: var(--branco);
    cursor: pointer;
}

.form-btn:hover {
    background-color: var(--verdeAguaClaro);
    border-radius: 4px;
    transition: .4s ease-in;
}

@media screen and (max-width: 374px) {
    .contact-title {
        font-size: 24px;
    }

    .contact-form label {
        font-size: 16px;
    }

    .form-btn {
        font-size: 14px;
    }
}
a{
  text-decoration: none;
}
#whatsapp {
	position: fixed;
	bottom: 20px;
	right:20px;
}
svg {
	width: 80px;
	display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}
circle {
  fill: #25d366;
}
path {
	fill:  #fff;
}
#whatsapp a {padding: 20px 0;}
#whatsapp a::before {
	content: '¡Contactanos sin compromiso!';
	display: inline-block;
	vertical-align: middle;
	padding: 5px 10px;
	margin-right: 10px;
	color: rgba(0, 0, 0, .8);
	background: white;
	border: 1px solid #ccc;
	border-radius: 20px;
	filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
	transition: .3s ease;
	opacity: 0;
}
#whatsapp:hover a::before {opacity: 1;}

/* =========== FOOTER */

.footer {
    padding: 60px;
    background-color: var(--verdeAguaEscuro);
    color: var(--branco)
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-localization {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.footer-localization i {
    margin-right: 8px;
    cursor: pointer;
}

.footer-localization i:hover {
    color: var(--verdeAguaClaro);
    transition: .5s ease-in;
}

.footer-localization p {
    font-weight: 300;
    margin-bottom: 8px;
}

.footer-social-medias {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.footer-social-medias i {
    font-size: 28px;
    cursor: pointer;
}

.footer-social-medias i:hover {
    color: var(--verdeAguaClaro);
    transition: .5s ease-in;
}

.footer-container span {
    font-size: 14px;
    font-weight: 400;
    color: var(--verdeAguaClaro);
}

@media screen and (max-width: 324px) {

    .footer-localization i,
    .footer-localization p {
        font-size: 12px;
    }

    .footer-container span {
        font-size: 10px;
    }
}