/* CONTATO */
.container-contato {
      display: flex;
      flex-wrap: wrap;
      padding: 4rem 2rem;
      margin: auto;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

      width: 100%;
      height: auto;
      background: #fff;
}

.box1-contato, .box2-contato {
      flex: 1 1 300px;
      padding: 1.5rem;
}

.box1-ctt p.b1-ctt {
      font-size: 2rem;
      font-weight: bold;
      color: #555;
}

.box2-ctt span {
      font-size: 1.5rem;
      color: #111;
      display: block;
}

.box3-ctt {
      display: none;
}

.box4-ctt {
      margin-top: 2rem;
      font-weight: bold;
}

.box5-ctt {
      margin-top: 2rem;
      font-weight: 500;
      font-size: 1.5rem;
}

.box6-ctt {
      margin-top: 2rem;
      font-size: 1.4rem;
}

.form-group {
      margin-bottom: 1.2rem;
      display: flex;
      flex-direction: column;
}

.form-group label {
      font-weight: 600;
      margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 10px;
      font-size: 1rem;
}

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

button[type="submit"] {
      background-color: #333;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
      background-color: #000;
}

.mensagem-enviada {
      margin-top: 1rem;
      color: green;
      font-weight: 600;
      display: none;
}

/* Responsividade - Contato */
@media (max-width: 1024px) {
      .container-contato {
            flex-direction: column;
            padding: 2rem 1.5rem;
      }

      .box1-contato,
      .box2-contato {
            padding: 1rem 0;
      }

      .box5-ctt {
            font-size: 1.2rem;
      }

      .box6-ctt {
            font-size: 1.1rem;
      }
}

@media (max-width: 768px) {
      .container-contato {
            padding: 2rem 1rem;
      }

      .box1-ctt p.b1-ctt {
            font-size: 1.6rem;
      }

      .box2-ctt span {
            font-size: 1.3rem;
      }

      .box5-ctt {
            font-size: 1rem;
      }

      .box6-ctt {
            font-size: 1rem;
      }

      .form-group input,
      .form-group select {
            font-size: 0.95rem;
            padding: 0.7rem;
      }

      button[type="submit"] {
            width: 100%;
      }
}

@media (max-width: 480px) {
      .box2-ctt span {
            font-size: 1.1rem;
      }

      .form-group label {
            font-size: 0.95rem;
      }

      .form-group input,
      .form-group select {
            font-size: 0.9rem;
      }

      .box5-ctt,
      .box6-ctt {
            font-size: 0.95rem;
      }
}
