/* Variáveis*/

:root {
    --main-color: #d92123;
    --primary-text-color: #fff;
    --secondary-text-color: #191919;
    --secondary-color: #868686;
    --tertiary-color: #eff3f4;
    --secondary-bg-color: #5c1011;
}

.icon {
    background-color: var(--main-color);
    color: var(--primary-text-color);
    font-size: 2.5rem;
    padding: 2rem;
}

/* Reset Básico*/
* {
    font-family: "Lato";
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

input[type="submit"] {
    cursor: pointer;
}


/* Navbar*/

.header-home {
    min-height: 90vh;
    background-image: url(../img/main_banner4.webp);
    background-size: cover;
    background-position: center;
    color: var(--primary-text-color);
    margin-bottom: 2rem;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    background-color: var(--main-color);
    padding: 1rem;
}

.nav-menu {
    display: flex;
    gap: 4rem;
    text-transform: uppercase;
    margin-right: 2rem;
}

.nav-menu a,
.menu-mobile a {
    position: relative;
    color: var(--primary-text-color);
    font-weight: bold;
    padding: 1rem 0;
    transition: color 0.3s ease;
}

/* linha decorativa da navbar*/

.nav-menu a::after,
.menu-mobile a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu a:hover,
.menu-mobile a:hover {
    transform: translateY(-2px);
    color: var(--main-color);
}

.nav-menu a:hover::after,
.menu-mobile a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {

    display: none;
}

.menu-mobile {

    display: none;
}

/* Seção da Home- Banner*/

.banner-section {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--primary-text-color);
}

.banner {
    max-width: 50%;
    top: 40%;
    padding: 4rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.banner.active {
    opacity: 1;
    pointer-events: auto;
}

.banner h2 {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 3;
}

.banner p {
    font-size: 1.5rem;
    position: relative;
    z-index: 3;
}

.square {
    width: 150px;
    height: 150px;
    background-color: var(--main-color);
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 40px;
}

.dots {
    display: flex;
    gap: 2rem;
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    cursor: pointer;
    border-radius: 50%;
}

.dot.active {
    background-color: var(--main-color);
}

/*Áreas de atuação*/

.expertise-section {

    background-color: var(--primary-text-color);
}

.expertise-container {

    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.expertise-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    gap: 1.5rem;
}

.expertise-subtitle {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    color: var(--main-color);
}

.expertise-title {
    color: var(--secondary-text-color);
    font-size: 1.9em;
}

.btn {
    width: 35%;
    padding: 1.2rem 1.8rem;
    background-color: var(--main-color);
    text-transform: uppercase;
    text-align: center;
    margin-left: auto;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-text-color);
}

/*Cards*/

.expertise-image {
    flex: 1 1 300px;
    position: relative;
}

.expertise-image i {
    position: absolute;
}

.services-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    gap: 1.5rem;
    margin: 3rem auto 5rem;
    align-items: stretch;
}

.service-card {
    background-color: var(--primary-text-color);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;


    display: flex;
    flex-direction: column;
    height: 100%;

}

.service-card i {
    position: absolute;
    left: 0.05rem;

    background-color: var(--main-color);
    color: var(--primary-text-color);

    padding: 0.8rem;
    font-size: 1.4rem;
    z-index: 3;
}

.service-content {
    background-color: var(--tertiary-color);
    padding: 2rem 1.4rem;
    min-height: 250px;
    margin-top: -3rem;
    z-index: 2;
    position: relative;

    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/*Sobre nós*/

.about-section {
    background-color: var(--primary-text-color);

}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}


.about-content {
    background-image: url("../img/pattern.webp");
    background-size: cover;
    background-position: center;
    color: var(--primary-text-color);
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 3rem;

}

/*Titulos*/

.about-subtitle {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.about-title {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
}

/* Lista de features */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/*Cada Item*/

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-feature i {
    font-size: 2.5rem;
    color: #fff;
}

.about-feature h4 {
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
}

.about-feature p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}


.about-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}

.data-item {

    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    gap: 0.5rem;
}

.about-data i {
    font-size: 3.5rem;
    color: var(--main-color);
    background-color: transparent;
    padding: 0;
}

.about-data dt {
    font-size: 4rem;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.about-data dd {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.08em;

}

/* Depoimentos */

.testimonials-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    gap: 4rem;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    gap: 4rem;
}

/*Titulos*/
.testimonials-header {
    text-align: center;
}

.testimonials-subtitle {
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.testimonial {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: var(--main-color);
    font-weight: bold;
    text-transform: uppercase;
}

.author-job {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}

/* Imagem*/

.testimonials-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 90%;
    max-height: 70%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-wrapper i {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-color);
    color: #fff;
    font-size: 2rem;
    padding: 1.2rem;
    z-index: 2;
}


/* Colaboradores */

.team-section {
    position: relative;
    margin-bottom: 2rem;
}

/* Quadrado decorativo */

.team-square {
    position: absolute;
    background-color: var(--tertiary-color);
    width: 100px;
    height: 100px;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
}

.team-title {
    font-size: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-title span {
    color: var(--main-color);
}


/* Lista de colaboradores */
.team-list {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    list-style: none;
    margin: 0;
}

/* Card do colaborador */
.team-member figure {
    margin: 0;
}

.team-member img {
    max-width: 100%;
    display: block;
}

/* Texto */
.member-name {
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.member-role {
    font-size: 1rem;
    color: var(--secondary-text-color);
}


/* Contato */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--main-color);
    min-height: 70vh;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.contact-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    gap: 2rem;
    color: var(--primary-text-color);
}

/* Ícone */

.contact-icon {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-text-color);
    color: var(--main-color);
    font-size: 2rem;
    padding: 1.2rem;
}

/* Cabeçalho */

.contact-subtitle {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-title {
    font-size: 2rem;
    line-height: 1.3;
}

/* Formulário */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none;
}

.contact-form .btn {
    align-self: flex-start;
    border: 2px solid var(--primary-text-color);
    background-color: transparent;
    color: var(--primary-text-color);
    font-size: 1.2rem;
    transition: 0.3s;
}

.contact-form .btn:hover {
    background-color: var(--primary-text-color);
    color: var(--main-color);
}


/* Footer */

.site-footer {
    background-color: var(--secondary-bg-color);
    color: var(--primary-text-color);
    padding: 3rem 3rem 5rem;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.site-footer a {
    color: var(--primary-text-color);
}

.site-footer i {
    font-size: 1rem;
    padding: 0.3rem;
}

/* Colunas */

.footer-contact,
.footer-links,
.footer-consultation {
    width: 20%;
}

/* Brand */

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand h2 {
    background-color: var(--main-color);
    padding: 1rem;
    margin-bottom: 0.5rem;
}

/* Address */

.footer-address p {
    margin-bottom: 1rem;
}

.footer-address i {
    color: var(--main-color);
    padding: 0;
}

/* Social */

.footer-social p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links i {
    padding: 1rem;
}

/* Links */

.footer-links h4,
.footer-consultation h4 {
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--secondary-color);
}

/* Consulta */

.footer-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--main-color);
    margin-bottom: 1rem;
}

.footer-note {
    color: var(--secondary-color);
}

/*Responsividade*/

@media (max-width: 1200px) {

    /* Navbar */
    .nav-menu {
        gap: 2.5rem;
    }

    /* Banner */
    .banner {
        max-width: 65%;
        padding: 3rem;
    }

    .banner h2 {
        font-size: 3.2rem;
    }

    .banner p {
        font-size: 1.3rem;
    }

    /* Expertise */

    .expertise-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .expertise-content {
        text-align: right;

    }

    .expertise-content .btn {
        width: 40%;
        font-size: 1.1rem;
        padding: 0.9rem 1.4rem;
    }

    .services-list {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-card {
        font-size: 0.95rem;
    }

    .service-content {
        padding: 1.5rem 1.2rem;
        min-height: 220px;
    }

    .service-content h4 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 1rem;
    }


    /* About */
    .about-content {
        padding: 3rem 2rem;
    }

    .about-title {
        font-size: 1.9rem;
    }

    /* Testimonials */
    .testimonials-container,
    .testimonials-content {
        padding: 3rem;
    }

    /* Team */

    .team-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
    }

    .team-member {
        max-width: 280px;
    }

    /* Contact */

    .contact-content {
        padding: 3rem;
    }

    .contact-icon {
        font-size: 1.5rem;
        padding: 0.6rem;
    }

    /* Footer */
    .footer-container {
        justify-content: space-between;
        gap: 1.5rem;
    }

    .footer-contact,
    .footer-links,
    .footer-consultation {
        width: 22%;
    }

    .footer-brand h2 {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .site-footer p,
    .site-footer a {
        font-size: 0.9rem;
    }

    .footer-links h4,
    .footer-consultation h4 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .social-links i {
        padding: 0.7rem;
    }

}

@media (max-width: 992px) {

    /* About*/

    .about-content {
        padding: 3rem 2.5rem;
        gap: 1.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 0.85rem;
    }

    .about-feature {
        gap: 1rem;
    }

    .about-feature i {
        font-size: 2rem;
    }

    .about-feature h4 {
        font-size: 1.4rem;
    }

    .about-feature p {
        font-size: 1rem;
    }

    /* Dados (números) */

    .about-data dt {
        font-size: 3rem;
    }

    .about-data dd {
        font-size: 0.85rem;
    }

    /* Testimonials */

    .testimonials-section {
        min-height: auto;
    }

    .testimonials-content {
        padding: 3rem;
        gap: 3rem;
    }

    .testimonial-text {
        font-size: 1.4rem;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-job {
        font-size: 0.8rem;
    }

    /* Imagem */

    .image-wrapper {
        width: 95%;
        max-height: 60%;
    }

    .image-wrapper i {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

    /* Team */

    .team-title {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 7rem;
    }

    .team-title span {
        font-size: 2.2rem;

    }

    /* Contact */

    .contact-section {
        min-height: 60vh;
    }

    .contact-image {
        height: 60vh;
    }

    .contact-image img {

        object-fit: cover;

    }

    .contact-content {
        padding: 3rem;
    }

    .contact-icon {
        font-size: 1.4rem;
        padding: 0.6rem;
    }

}

@media (max-width: 768px) {

    /* Navbar */

    .navbar {
        position: relative;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
        margin-right: 3rem;
    }

    .menu-mobile {
        position: absolute;
        top: 100%;
        right: 0;
        width: 30%;
        background-color: var(--main-color);

        display: none;
        flex-direction: column;
        text-align: center;

        z-index: 1000;
    }

    .menu-mobile a {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-mobile.active {
        display: flex;
    }

    /* Banner */

    .banner {
        max-width: 85%;
        padding: 2.5rem;
        top: auto;
    }

    .banner h2 {
        font-size: 2.6rem;
        line-height: 1.2;
    }

    .banner p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .square {
        width: 90px;
        height: 90px;
        top: 30px;
        left: 10px;
    }

    /* Atuação */

    .expertise-container {
        max-width: 650px;
        grid-template-columns: 1fr;
        padding: 2rem 2rem;
    }

    .expertise-content {
        text-align: center;
        align-items: center;
    }

    .btn {
        width: auto;
        font-size: 1rem;
        margin-left: 0;
    }

    .services-list {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 2rem 0 4rem;
    }

    .service-content {
        min-height: auto;
    }

    /* About */

    .about-container {
        grid-template-columns: 1fr;

    }

    .about-content {
        padding: 3rem 2rem;

    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-feature i {
        font-size: 2rem;
    }

    .about-feature h4 {
        font-size: 1.4rem;
    }

    .about-feature p {
        font-size: 1rem;
    }

    .about-data {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 0;
    }

    .about-data dt {
        font-size: 2.5rem;
    }

    /* Depoimentos */

    .testimonials-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .testimonials-content {
        padding: 3rem 2rem;
    }

    .testimonial-text {
        font-size: 1.4rem;
    }

    .testimonials-image {
        padding: 2rem;
    }

    .image-wrapper {
        max-height: none;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Contato */

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: auto;
        min-height: auto;
    }

    .contact-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
    }

    .contact-content {
        padding: 3rem 2rem;
    }

    .contact-icon {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .contact-form .btn {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    /* Footer*/

    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: start;
    }

    .footer-contact,
    .footer-links,
    .footer-consultation {
        width: 100%;
    }

}

@media (max-width: 576px) {

    /*Atuação*/

    .expertise-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .expertise-subtitle {
        font-size: 0.75rem;
    }

    /*Time*/
    .team-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .team-title span {
        font-size: 2rem;
    }

    /*Contato*/

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 1.6rem 1.2rem;
    }

    .contact-image {
        height: auto;
        max-height: 200px;
        overflow: hidden;
    }

    .contact-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
    }

    .contact-icon {
        font-size: 1rem;
        padding: 0.3rem;
        
      }

    /* Inputs e textarea */

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    /* Botão */

    .contact-form .btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.9rem;
  }

    /*Footer*/

    .site-footer {
        padding: 2rem 1.5rem 2.5rem;
    }


}

@media (max-width: 480px) {

    /*Atuação*/
    .expertise-title {
        font-size: 1.5rem;
    }

    /*Time*/
    .team-title {
        font-size: 1.5rem;
        padding: 0 3rem;
    }

    .team-title span {
        font-size: inherit;
    }

    /*Contato*/

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }

    .contact-image {
        height: 220px;
    }

    .contact-image img {
        object-position: center top;
    }

    .contact-icon {
        font-size: 1rem;
        padding: 0.3rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-form .btn {
        width: 100%;
        text-align: center;
        padding: 0.6rem;
        font-size: 0.95rem;
    }

    .site-footer {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        gap: 1.5rem;
    }

}

@media (max-width: 360px) {

    body {
        font-size: 14px;
    }

    /*Navbar, banner, icons*/

    .brand {
        font-size: 1.1rem;
        padding: 0.6rem 0.8rem;
    }

    .nav-toggle {
        font-size: 1.6rem;
    }

    .banner {
        max-width: 100%;
        padding: 1.5rem;
    }

    .banner h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .banner p {
        font-size: 1rem;
    }

    .square {
        width: 80px;
        height: 80px;
        top: -5px
    }

    .icon,
    .service-card i,
    .contact-icon,
    .image-wrapper i {
        font-size: 1.2rem;
        padding: 0.6rem;
    }

    /*Atuação*/

    .expertise-title {
        font-size: 1.4rem;
    }

    .expertise-content .btn {
        width: 100%;
        margin: 1rem auto 0;
        font-size: 0.9rem;
        padding: 1rem 1rem;
        text-align: center;
    }

    .expertise-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .expertise-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .expertise-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }


    /*Contato*/

    .contact-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.2rem;
    }

    /* imagem */
    .contact-image {
        width: 100%;
        height: 100%;
    }

    .contact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* conteúdo */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem;
    }

    /* ìcones e Titulos*/

    .contact-icon {
        position: static;
        align-self: flex-start;
        font-size: 1.1rem;
        padding: 0.5rem;
    }

    .contact-subtitle {
        font-size: 0.75rem;
    }

    .contact-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    /* Formulário */

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .form-group {
        flex-direction: column;
        gap: 0.6rem;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .contact-form textarea {
        min-height: 90px;
    }

    .contact-form .btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Footer */

    .site-footer {
        padding: 2rem 1.2rem;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* COlunas */

    .footer-contact,
    .footer-links,
    .footer-consultation {
        width: 100%;
    }

    /* Brand */

    .footer-brand h2 {
        font-size: 1.2rem;
        padding: 0.6rem;
        text-align: center;
    }

    .footer-brand p {
        font-size: 0.85rem;
        text-align: center;
    }

    /* Endereço */

    .footer-address p,
    .footer-note {
        font-size: 0.8rem;
        line-height: 1.4;
        text-align: center;
    }

    /* Social */

    .footer-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 0.6rem;
    }

    .social-links i {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    /* Links */

    .footer-links h4,
    .footer-consultation h4 {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .footer-links a {
        font-size: 0.8rem;
        padding-bottom: 0.6rem;
        margin-bottom: 0.6rem;
        text-align: center;
    }

    /* telefone*/

    .footer-phone {
        justify-content: center;
        padding: 0.6rem;
    }

    .footer-phone p {
        font-size: 0.85rem;
    }

}