.property-ad-section {
    background-color: var(--background-light);
    padding: 80px 0;
    color: var(--text-dark);
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--cor-site-1);
    margin-bottom: 1rem;
}

.content-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 500;
}

.features-list p {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    margin: 0;
    color: #4d4d4d;
}

.features-list p:hover {
    transform: translateY(-5px);
}

.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.property-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    position: relative;
    flex: 1;
    margin: 0px !important;
}

.form-group.full-width {
    flex: 0 0 100%;
}


.form-group input,
.form-group select,
.form-group textarea { /* NOVO: Adicionado textarea aqui */
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--cor-site-1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--text-dark);
        height: 45px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { /* NOVO: Adicionado textarea aqui */
    outline: none;
    border-color: var(--cor-site-1);
    box-shadow: none;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-gray);
    pointer-events: none;
    transition: all 0.3s ease;
    background: #fff;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + .select-label,
.form-group select:not([value=""]) + .select-label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label { /* NOVO: Adicionado textarea aqui */
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--cor-site-1);
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23666" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    background-color: var(--cor-site-1);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--cor-site-2);
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .content-header h1 {
        font-size: 2rem;
    }
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
}

.grid-fale-conosco {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 28px;
}

.img-fale-conosco img {
    border-radius: 8px;
    box-shadow: var(--ltn__box-shadow-3);
     max-height: 600px;
}
/* Estilos Gerais */
.company-section {
    margin: 60px 0;
}

.company-part {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.company-part.first-part {
    flex-direction: row;
}

.company-part.second-part {
    flex-direction: row-reverse;
}

.company-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(1, 64, 24, 0.1);
}

.company-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(1, 64, 24, 0.15);
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.company-text {
    flex: 1;
}

.text-content {
    max-width: 90%;
}

/* Tipografia */
.section-title {
    color: var(--cor-site-1);
    font-size: 2.3rem !important;
    margin-bottom: 20px;
    font-weight: 600 !important;
}

.highlight-year {
    color: var(--cor-site-3);
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem !important;
    color: #585858;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-paragraph {
    font-size: 1.1rem !important;
    line-height: 1.8;
    color: #585858 !important;
    margin-bottom: 15px;
}
.about-admin {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 80px 0;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--cor-site-5);
  padding: 35px;
  box-shadow: 0 0 10px #eaeaea;
  border-radius: 10px;
}

.section-highlight {
    font-weight: 700;
    color: var(--cor-site-1);
    font-size: 1.2rem;
    margin-top: 25px;
}

.about-text h2 {
  font-size: 1.7rem;
  color: #545454;
  margin-bottom: 12px !important;
  font-weight: 700;
}
.divider {
  width: 70px;
  height: 4px;
  margin: 10px auto !important;
  border-radius: 2px;
}
.about-text p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #535353;
}
.about-text .highlight,
.section-highlight {
  color: var(--cor-site-1);
  font-weight: 600;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--cor-site-1);
    margin: 20px 0;
    border-radius: 3px;
}

.section-divider-text {
    width: 80px;
    height: 3px;
    background: var(--cor-site-1);
    margin: 20px 0;
    border-radius: 3px;
    margin: 10px auto;
}

/* Responsividade */
@media (max-width: 992px) {
    .company-part {
        flex-direction: column !important;
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .text-content {
        max-width: 100%;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .company-image {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .grid-fale-conosco {
        grid-template-columns: 100%;
    }
}

/*ADICIONADO RESPONSIVIDADE PARA O NOVO CTA DE TEXTOS SOBRE A EMPRESA*/

@media (max-width: 1200px) {
  .about-admin {
    padding: 35px 40px;
  }
}

@media (max-width: 900px) {
  .about-admin {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .about-admin {
    padding: 30px 20px;
  }
}

/*ADICIOANDO NOVA ESTILIZAÇÃO PARA O CTA SOBRE A EMPRESA EM VERSÕES MOBILE*/

@media (max-width: 992px) {
.text-content {
    max-width: 100%;
    margin-top: 0;
    background: #fefefe;
    box-shadow: 0 0 10px #eaeaea;
    border-radius: 10px;
    padding: 20px 18px;
}
.section-title, .section-subtitle, .section-paragraph, .section-highlight {
    text-align: center;
}
.section-divider {
    margin: 14px auto;
}
}