@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Evita barra de rolagem horizontal acidental */
}

body {
    padding-top: 6rem;
    display: flex;
    width: 100%;
    min-height: 100vh;
    background-color: #f2f2f2;
    flex-direction: column;
    overflow-x: hidden; /* Evita barra de rolagem horizontal acidental */
}

/* =========================================
   HEADER INTACTA (SEU CÓDIGO ORIGINAL)
   ========================================= */
header {
    display: flex;
    align-items: center;  
    background-color: rgba(255,255,255,0.85);
    box-shadow: 0px 3px 10px #4646461f;
    width: 100%;
    height: 6rem;
    position: fixed;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    left: 0;
}

header .subtitle-header {
    text-align: left;
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.08rem;
    color: #27AE60;
    gap: 1.25rem;
    opacity: 0.85;
}

.title-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    gap: 0.3rem;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: clamp(1.5rem, 5vw, 10rem);
    width: 100%;
}

.nav-link-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    align-items: center;
    color: #2A2A2A;
}

.nav-logo img {
    width: 4.5rem;
    margin-right: 10px;
}

.nav-list {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    text-decoration: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    font-size: 1.15rem;
    color: #2A2A2A;
}

.nav-button button {
    border: none;
    background-color: #2A2A2A;
    padding: 10px 15px;
    border-radius: 50px;
    width: 120px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0px 3px 5px #4646465d;
    position: relative;
}

.nav-button {
    margin-left: 1rem;
}

.nav-button a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: #27AE60;
  transition: width 0.3s ease;
  transform-origin: right;
}

.mobile-menu-icon, .mobile-menu {
    display: none;
}

.nav-item a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.nav-button button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 100%;
    background-color: #27AE60;
    cursor: auto;
    transition: width 0.3s ease;
    border-radius: 999px;
}

.nav-button button:hover {
    background-color: #3a3a3a; 
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

/* =========================================
   CONTEÚDO DA PÁGINA CONTATO
   ========================================= */
.main-card {
    background-image: url("../img/bg-card.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: grid;
    margin-top: 1rem;
    padding-top: 4rem;
    max-width: 100%;
    grid-template-columns: 1fr 1px 1fr;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    align-items: center;
    box-shadow: 0px 3px 10px #46464613;  
    border-bottom: 1.5px solid #c2c2c2;
}

.contact-text {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 570px;
    padding: 2rem;
}

.section-label {
    text-align: left;
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: #8D8D8D;
    margin-bottom: 0.5rem;
    gap: 1.25rem;
}

.section-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #27AE60;
  margin-top: 8px;
  animation: grow 0.8s ease forwards;
  transform-origin: left;
}

.contact-text h1 {
    color: #2A2A2A;
    font-size: clamp(34px, 3.7vw, 54px); /* Deixa gigante e fluido no PC */
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-text p {
    font-size: 0.90rem;
    color: #5f5f5f;
    margin-top: 1rem;
}

.change-color {
    color: #27AE60;
}

/* Alterações Card de Informações (Limpo) */
.info-card {
    display: flex;
    flex-direction: column;
    width: 90%;
    background-color: transparent; 
    border-radius: 14px;
    max-width: 460px;
    padding: 1.5rem 0 !important; 
}

.info-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a7a7a; 
    margin-bottom: 1.5rem;
    text-align: left; 
}

.list-infos {
    list-style: none;
    color: #2A2A2A;
    font-weight: 300;
}

.list-infos li {
    margin-bottom: 1.5rem !important;
    display: flex;
    align-items: center;
}

.list-infos i {
    width: 42px;
    height: 42px;
    background-color: #e8f8f0;
    color: #27AE60;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 15px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.link-change-color {
    text-decoration: none;
    color: #27AE60;
}

.main-card#contact {
    background-attachment: fixed !important; 
    align-items: center !important;
    gap: 3rem !important;
}

.contact-form {
     width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form {
    max-width: 500px;
    width: 100%;
    background-color: #2A2A2A;
    padding: 2.5rem;
    border-radius: 12px;
    color: #DADADA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.title-form {
    display: flex;
    align-items: center;
}

.title-form h2 {
    font-size: clamp(1.4rem, 1.5vw, 1.9rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.title-form i {
    font-size: clamp(1.4rem, 1.5vw, 1.9rem);
    margin: 10px;
}

.sub-title p {
    font-size: 1rem;
    color: #DADADA;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #BEBEBE;
    font-weight: 500;
}

.form-group i {
    font-size: 0.85rem;
    color: #27AE60;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    background-color: #333333 !important; 
    border: 1px solid #444444 !important;
    font-size: 0.95rem;
    color: #fff !important;
    outline: none;
    caret-color: #27AE60;
    transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border: 1px solid #27AE60 !important;
    background-color: #3a3a3a !important;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.form-button {
    width: 100%;
    height: 50px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    background-color: #d8d8d8; 
    color: #2a2a2a;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-button:hover {
    background-color: #ffffff; 
    transform: scale(1.05); 
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2); 
}

.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 40%, #f7f7f7 100%);
    border-bottom: 1.5px solid #c2c2c2;
}

.title-local {
    padding-inline: clamp(1.5rem, 5vw, 10rem); 
    padding-top: 2rem;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.content {
    height: auto;
    padding: 2.5rem 0 3rem;
    gap: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
}

.map { 
    border-top: 4px solid #27AE60;
    width: 100%; 
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.map:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.sub-title {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.content-wpp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 300px;
    background-color: #2A2A2A;
    align-items: center;
    justify-content: center;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
}

.wpp-title {
    font-size: clamp(1.4rem, 1.5vw, 1.9rem);
    color: #ffff;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    text-align: center;
}

.wpp-text {
    font-size: 1rem;
    color: #f2f2f2;
}

.btn-wpp {
    margin-top: 1rem;
    width: 300px;
    height: 60px;
    border-radius: 999px;
    border: none;
    background-color: #27AE60;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wpp:hover {
    background-color: #1f9a52;
    transform: translateY(-2px);
}

.wpp-link {
    text-decoration: none;
    color: #ffff;
    font-size: 1.2rem;
    width: 100%;
    height: 100%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.content-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-card {
  margin-top: 4rem;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(5px);
  padding: 32px;
  border-radius: 12px;
  border-right: 4px solid #1fb26b;
  width: 100%;
}

.map-card.map-card__icon:hover  {
  transform: scale(1.05);
}

.map-card__title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 20px;
}

.map-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #111827;
}

.map-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31, 178, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1fb26b;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.map-card__footer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* =========================================
   FOOTER (RODAPÉ DARK BLINDADO)
   ========================================= */
.site-footer {
    background-color: #222222; 
    color: #a0a0a0;
    padding-top: 4rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 3rem;
    padding-inline: clamp(1.5rem, 5vw, 10rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-col {
    flex: 1; 
    min-width: 220px; 
    overflow-wrap: break-word; 
    word-break: break-word; /* Proteção anti-vazamento de e-mails */
}

.footer-logo-white {
    width: 160px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); 
}

.branding p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #27AE60;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #27AE60; 
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all; /* Força e-mails longos a quebrarem no meio da palavra */
}

.footer-col a:hover {
    color: #fff;
    padding-left: 2px; 
}

.footer-col.contact li {
    display: flex;
    align-items: flex-start; /* Alinha o ícone no topo se quebrar linha */
}

.footer-col.contact i {
    color: #27AE60;
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0; /* Impede o ícone de ser esmagado */
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background-color: #1a1a1a; 
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #a0a0a0;
    text-decoration: underline;
}

#home, #atuacao, #servicos, #processos {
    scroll-margin-top: 120px !important; 
}


/* =========================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================= */

@media screen and (max-width: 768px){ /* Alterado de 720px para 768px para cobrir o iPad Mini */
    /* --- HEADER (SEU CÓDIGO INTACTO) --- */
    .nav-bar{ padding: 1.5rem; display: flex; align-items: center; }
        .nav-logo h1 { font-size: 1.2rem; }
    header .subtitle-header { font-size: 0.6rem; }
    .nav-item, .nav-button{ display: none; }
    .nav-logo { display: flex; justify-content: center; align-items: center; }
    .mobile-menu{ border-top: 1px solid rgba(0, 0, 0, 0.171); position: absolute; top: 6rem; left: 0; width: 100%; background-color: #fff; box-shadow: 0px 3px 10px #4646465d; backdrop-filter: blur(8px); display: none; flex-direction: column; z-index: 1000; }
    .mobile-menu-icon{ display: block; }
    .mobile-menu-icon button{ background-color: transparent; border: none; cursor: pointer; color: #2A2A2A; font-size: 1.5rem; transition: transform 0.15s ease; }
    .mobile-menu-icon button:active{ transform: scale(0.9); }
    .mobile-menu ul{ display: flex; flex-direction: column; text-align: center; padding: 1rem; }
    .mobile-menu .nav-item{ display: block; padding-top: 1.2rem; }
    .mobile-menu .nav-button{ display: block; padding: 1rem 2rem; }
    .mobile-menu .nav-button button{ width: 100%; }
    .open{ display: flex; }
    .title-header span{ font-size: 0.7rem; }
    .mobile-menu .nav-item a:hover::after { width: 0% !important; }
    .mobile-menu .nav-item a:active { color: #27AE60; transition: 0.1s; }
    header h1 { margin-top: 0.5rem; font-size: 1rem; line-height: 1.2; }

    /* --- CONTEÚDO (ARRUMANDO O LAYOUT) --- */
    .main-card { display: flex; flex-direction: column; width: 100%; padding: 2rem 1.5rem; gap: 2rem; background-image: url("../img/bg-card.png");        background-size: cover; /* A MÁGICA PRO MAPA COBRIR TUDO */
        background-position: center bottom;
        background-repeat: no-repeat;}
    .divider { display: none; }
    .contact-text { padding: 0; max-width: 100%; }
    .contact-text h2 { font-size: 1.6rem; line-height: 1.3; }
    .contact-text p { font-size: 0.95rem; }
    .info-card { width: 100%; max-width: 100%; padding: 1rem 0 !important; box-shadow: none; }
    .contact-form { padding: 0; max-width: 100%; }
    .form { padding: 1.5rem; border-radius: 16px; margin: 0; }
    .list-infos i { margin-right: 15px; } 
    .list-infos li { font-size: 0.8rem; line-height: 1.4; margin-bottom: 0.8rem !important; }
    #contact { scroll-margin-top: 6rem; }
    
    .location { display: flex; flex-direction: column; }
    .title-local { padding-inline: 1.5rem; }
    .content { padding-inline: 1.5rem; }
    .sub-title { text-align: center; }
    .map { width: 100%; margin-bottom: 0; }
    .map-card { margin-top: 2rem; width: 100%; }
    
    .content-wpp { display: flex; flex-direction: column; text-align: center; padding: 3rem 1.5rem; gap: 2rem;}
    .content-left { padding: 0; }
    
    /* --- FOOTER CENTRALIZADO EXCLUSIVO PARA MOBILE E IPAD MINI --- */
    .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 2.5rem; padding-inline: 1.5rem; }
    
    /* Transforma a coluna toda num container flex centralizado */
    .footer-col { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .footer-col ul { align-items: center; width: 100%; padding: 0;}
    
    .footer-logo-white { margin: 0 auto 1.5rem auto; display: block;}
    .branding p { text-align: center; margin-inline: auto; }
    .footer-col h4 { text-align: center; margin-inline: auto; }
    .social-links { justify-content: center; }
    
    /* Ícone de contato do footer centralizado */
    .footer-col.contact li { 
        justify-content: center; 
        text-align: center;
    }
    .footer-col a:hover { padding-left: 0; }
    .footer-col span{
        font-size: 0.8rem;
    }
}


/* =========================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================= */

/* --- 1º TABLETS HORIZONTAIS E VERTICAIS (Até 1024px) --- */
@media screen and (max-width: 1024px) {
    .nav-bar { padding: 1.5rem; }
    .nav-item, .nav-button { display: none; }
    .nav-logo { display: flex; justify-content: center; align-items: center; }
    
    .mobile-menu {
        border-top: 2px solid rgba(0, 0, 0, 0.171); position: absolute; top: 6rem; left: 0;
        width: 100%; background-color: #fff; display: none; flex-direction: column; z-index: 1000;
    }
    .mobile-menu-icon { display: block; }
    .mobile-menu-icon button { background-color: transparent; border: none; cursor: pointer; color: #2A2A2A; font-size: 1.5rem; transition: transform 0.15s ease; }
    .mobile-menu-icon button:active { transform: scale(0.9); }
    .mobile-menu ul { display: flex; flex-direction: column; text-align: center; padding: 1rem; }
    .mobile-menu .nav-item { display: block; padding-top: 1.2rem; }
    .mobile-menu .nav-button { display: block; padding: 1rem 2rem; margin-left: 0; }
    .mobile-menu .nav-button button { width: 100%; }
    .open { display: flex; }

    /* Processos */
    .process-container { flex-wrap: wrap; }
    .step-card { min-width: 45%; }
    .process-container::before { display: none; }
    
    /* Hero Section para o Tablet */
    .main-card {
        display: flex; 
        flex-direction: column; 
        padding-inline: 0; 
        padding-bottom: 4rem; 
        background-image: url("../img/bg-card.png");
        background-size: cover; 
        background-position: center bottom;
        background-repeat: no-repeat;
        width: 100%;
    }
    
    .divider { display: none; }
    
    .column-one {
        max-width: 100%; 
        padding: 3rem 2rem 1rem 2rem; 
        align-items: center; 
        text-align: center;
    }

    .column-content { margin: 1rem auto; }
    .area-buttons { margin: 1rem auto; }
    
    /* O Card Preto Lindão */
    .card-info {
        width: 90%; 
        max-width: 600px;
        margin: 1rem auto 0 auto; 
        background-color: #2A2A2A; 
        border-radius: 12px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu .nav-item a:hover::after { width: 0% !important; }
    .mobile-menu .nav-item a:active { color: #27AE60; transition: 0.1s; }

    .performance-content { flex-wrap: wrap; justify-content: center; }
    .p-card { min-width: 45%; flex: 1 1 45%; }
}

/* --- 2º CELULARES (Até 768px) --- */
@media screen and (max-width: 768px) {
    /* HEADER E MENU */
    .nav-bar{ padding: 1.5rem; display: flex; align-items: center; }
    .nav-logo h1, .title-header h1 { font-size: 1.2rem !important; margin: 0 !important; color: #2A2A2A !important; font-weight: bold !important;  }
    header .subtitle-header { font-size: 0.6rem !important; margin: 0 !important; color: #27AE60 !important; }
    .title-header span{ font-size: 0.7rem; }
    .nav-item, .nav-button{ display: none; }
    .nav-logo { display: flex; justify-content: center; align-items: center; }
    
    .mobile-menu{ border-top: 1px solid rgba(0, 0, 0, 0.171); position: absolute; top: 6rem; left: 0; width: 100%; background-color: #fff; box-shadow: 0px 3px 10px #4646465d; backdrop-filter: blur(8px); display: none; flex-direction: column; z-index: 1000; }
    .mobile-menu-icon{ display: block; }
    .mobile-menu-icon button{ background-color: transparent; border: none; cursor: pointer; color: #2A2A2A; font-size: 1.5rem; transition: transform 0.15s ease; }
    .mobile-menu-icon button:active{ transform: scale(0.9); }
    .mobile-menu ul{ display: flex; flex-direction: column; text-align: center; padding: 1rem; }
    .mobile-menu .nav-item{ display: block; padding-top: 1.2rem; }
    .mobile-menu .nav-button{ display: block; padding: 1rem 2rem; }
    .mobile-menu .nav-button button{ width: 100%; }
    .open{ display: flex; }
    .mobile-menu .nav-item a:hover::after { width: 0% !important; }
    .mobile-menu .nav-item a:active { color: #27AE60; transition: 0.1s; }
    header h1 { margin-top: 0.5rem; font-size: 1rem; line-height: 1.2; }

    /* --- CONTEÚDO (ARRUMANDO O LAYOUT E DEVOLVENDO A MARGEM) --- */
    .main-card { 
        display: flex; 
        flex-direction: column; 
        width: 100%; 
        padding: 2rem 1.5rem !important; /* 🔴 O segredo da margem lateral está aqui! */
        gap: 2rem; 
        background-image: url("../img/bg-card.png");        
        background-size: cover; 
        background-position: center bottom;
        background-repeat: no-repeat;
    }
    
    .divider { display: none; }
    .contact-text { padding: 0; max-width: 100%; }
    .contact-text h1{ font-size: 2.2rem;}
    .contact-text h2 { font-size: 1.6rem; line-height: 1.3; }
    .contact-text p { font-size: 0.95rem; }
    .info-card { width: 100%; max-width: 100%; padding: 1rem 0 !important; box-shadow: none; }
    .contact-form { padding: 0; max-width: 100%; }
    .form { padding: 1.5rem; border-radius: 16px; margin: 0; }
    .list-infos i { margin-right: 15px; } 
    .list-infos li { font-size: 0.8rem; line-height: 1.4; margin-bottom: 0.8rem !important; }
    #contact { scroll-margin-top: 6rem; }
    
    .section-head h2, .section__title { font-size: 1.8rem; text-align: left; }
    .section-head p, .section__desc { text-align: left; }

    .hero-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
    .hero-left .lead, .hero__lead { text-align: left; }
    .chips { justify-content: flex-start; }
    .hero-actions, .hero__actions { justify-content: flex-start; width: 100%; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-right { margin-top: 1rem; width: 100%; }

    .grid-3, .imoveisGrid { grid-template-columns: 1fr; }
    .filters { grid-template-columns: 1fr; }

    .cta-grid { gap: 40px; }
    .cta-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; }
    .cta-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-bottom: 1rem; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    /* LOCATION E WPP */
    .location { display: flex; flex-direction: column; }
    .title-local { padding-inline: 1.5rem; }
    .content { padding-inline: 1.5rem; }
    .sub-title { text-align: center; }
    .map { width: 100%; margin-bottom: 0; }
    .map-card { margin-top: 2rem; width: 100%; }
    
    .content-wpp { display: flex; flex-direction: column; text-align: center; padding: 3rem 1.5rem; gap: 2rem;}
    .content-left { padding: 0; }
    
    /* --- FOOTER CENTRALIZADO EXCLUSIVO PARA MOBILE E IPAD MINI --- */
    .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 2.5rem; padding-inline: 1.5rem; }
    .footer-col { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 0;}
    .footer-col ul { align-items: center; width: 100%; padding: 0;}
    .footer-logo-white { margin: 0 auto 1.5rem auto; display: block;}
    .branding p, .footer-col h4 { text-align: center; margin-inline: auto; margin-left: auto; margin-right: auto; }
    .social-links { justify-content: center; width: 100%; }
    .footer-col.contact li { justify-content: center; text-align: center; width: 100%; }
    .footer-col a:hover { padding-left: 0; }
    .footer-col span{ font-size: 0.8rem; }
    .footer-bottom { text-align: center; padding-inline: 1.5rem; }
    .site-footer span { font-size: 0.9rem; }
}
@keyframes grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}