/* ===== RESET / BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #16324f;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: #16324f;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0e2237;
}

.btn-secondary {
  background: #ffffff;
  color: #16324f;
  border-color: #d7dce1;
}

.btn-secondary:hover {
  border-color: #16324f;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 40px 100px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.25;
  color: #16324f;
  max-width: 560px;
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #7c8896;
  max-width: 460px;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 6px;
}

/* Decorative diagonal line accents, echoing the original layout */
.hero::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -40px;
  width: 260px;
  height: 1px;
  background: #d7dce1;
  transform: rotate(28deg);
  z-index: -1;
}


/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 60px 24px 60px;
  }

  .hero-content h1 {
    font-size: 36px;
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-media img {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ===== ABOUT / O ESCRITÓRIO ===== */
.about {
  background: #f6f6f6;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 40px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  color: #16324f;
  max-width: 520px;
}

.about-text {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.8;
  color: #7c8896;
  max-width: 560px;
}

.about-divider {
  margin-top: 40px;
  height: 1px;
  background: #dcdfe3;
}

.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-feature h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 17px;
  color: #16324f;
  line-height: 1.3;
}

.about-feature span {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a9b3bc;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .about-container {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .about-media img {
    height: 380px;
  }

  .about-content h2 {
    font-size: 30px;
    max-width: 100%;
  }

  .about-text {
    max-width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ===== ÁREAS DE ATUAÇÃO ===== */
.areas {
  background: #ffffff;
}

.areas-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
}

.areas-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.areas-header h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 40px;
  color: #16324f;
}

.areas-header p {
  margin-top: 18px;
  font-size: 15px;
  color: #7c8896;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 56px;
}

.area-card {
  display: flex;
  flex-direction: column;
}

.area-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid #dde2e6;
  border-radius: 4px;
  color: #16324f;
  margin-bottom: 22px;
}

.area-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 20px;
  color: #16324f;
  margin-bottom: 12px;
}

.area-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #7c8896;
  max-width: 340px;
}

.area-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #16324f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.area-link:hover {
  color: #c98a4b;
  border-color: #c98a4b;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .areas-container {
    padding: 70px 24px;
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 44px;
  }

  .areas-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DIFERENCIAIS ===== */
.differentials {
  background: #f6f6f6;
}

.differentials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 40px;
}

.differentials-container h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 34px;
  color: #16324f;
  max-width: 620px;
}

.differentials-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.differential-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 32px;
  color: #c7ccd1;
  margin-bottom: 14px;
}

.differential-item h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #16324f;
  margin-bottom: 10px;
}

.differential-item p {
  font-size: 13px;
  line-height: 1.7;
  color: #7c8896;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .differentials-container {
    padding: 60px 24px;
  }

  .differentials-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .differentials-container h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .differentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTATO ===== */
.contact {
  background: #ffffff;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.3;
  color: #16324f;
  max-width: 340px;
}

.contact-info-list {
  list-style: none;
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dde2e6;
  border-radius: 4px;
  color: #16324f;
}

.contact-info-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a9b3bc;
  margin-bottom: 4px;
}

.contact-info-list a,
.contact-info-text {
  font-size: 14.5px;
  color: #16324f;
  text-decoration: none;
  line-height: 1.5;
}

.contact-info-list a:hover {
  color: #c98a4b;
}

/* --- Form --- */
.contact-form {
  background: #f6f6f6;
  padding: 40px;
  border-radius: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a97a3;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: #16324f;
  background: #ffffff;
  border: 1px solid #e2e6e9;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #16324f;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c8896' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  color: #16324f;
}

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 50px;
  }

  .contact-info h2 {
    max-width: 100%;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== CTA ===== */
.cta {
  background: #16394a;
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 110px 40px;
  text-align: center;
}

.cta-container h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 34px;
  color: #ffffff;
}

.cta-container p {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.8;
  color: #c3d1d7;
}

.btn-cta {
  margin-top: 36px;
  background: #ffffff;
  color: #16324f;
}

.btn-cta:hover {
  background: #e9edf0;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .cta-container {
    padding: 80px 24px;
  }

  .cta-container h2 {
    font-size: 26px;
  }
}