/* ============================================ */
/* SEZIONE: CONTATTI                              */
/* ============================================ */

.contatti-section {
  background: #ffffff;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.contatti-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ============================================ */
/* COLUNA ESQUERDA - TESTO E INFO               */
/* ============================================ */

.contatti-left {
  animation: fadeUp 0.8s ease forwards;
}

.contatti-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #EB0028;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contatti-left h2 {
  font-size: 34px;
  font-weight: 500;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.contatti-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 36px;
}

/* ============================================ */
/* INFO LIST - CLEAN (SEM CARD)                  */
/* ============================================ */

.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-item i {
  font-size: 18px;
  color: #EB0028;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item a,
.info-item span {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.info-item a:hover {
  color: #EB0028;
}

/* ============================================ */
/* BOTÃO WHATSAPP OUTLINE                        */
/* ============================================ */

.btn-whatsapp-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #25D366;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid #25D366;
  letter-spacing: 0.3px;
}

.btn-whatsapp-line i {
  font-size: 18px;
}

.btn-whatsapp-line:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

/* ============================================ */
/* COLUNA DIREITA - FORMULÁRIO                  */
/* ============================================ */

.contatti-right {
  animation: fadeUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.contatti-form {
  background: #fafafa;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.2px;
}

.optional {
  font-weight: 400;
  color: #aaa;
  font-size: 11px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #0b2240;
  transition: all 0.3s ease;
  background: #ffffff;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #EB0028;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-size: 12px;
}

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

/* ============================================ */
/* CHECKBOX PROMOZIONI                           */
/* ============================================ */

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  display: none;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #ffffff;
  position: relative;
  margin-top: 1px;
}

.checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 2px;
}

.form-checkbox input[type="checkbox"]:checked + label .checkbox-custom {
  background: #EB0028;
  border-color: #EB0028;
}

.form-checkbox input[type="checkbox"]:checked + label .checkbox-custom::after {
  opacity: 1;
}

.form-checkbox label:hover .checkbox-custom {
  border-color: #ccc;
}

/* ============================================ */
/* BOTÃO ENVIAR                                  */
/* ============================================ */

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #EB0028;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.btn-submit i {
  font-size: 13px;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

/* Nota */
.form-note {
  text-align: center;
  font-size: 11px;
  color: #555;
  margin: -4px 0 0;
}

/* ============================================ */
/* RESPONSIVO                                   */
/* ============================================ */

@media (max-width: 991px) {
  .contatti-section {
    padding: 80px 20px;
  }
  
  .contatti-grid {
    gap: 40px;
  }
  
  .contatti-left h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .contatti-section {
    padding: 60px 20px;
  }
  
  .contatti-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contatti-left {
    text-align: left; /* ALTERADO: alinhado à esquerda */
  }
  
  .contatti-left h2 {
    font-size: 24px;
  }
  
  .contatti-tag {
    display: inline-block; /* Mantém a tag alinhada à esquerda */
  }
  
  .info-list {
    align-items: flex-start; /* ALTERADO: itens alinhados à esquerda */
  }
  
  .info-item {
    justify-content: flex-start; /* ALTERADO: alinhado à esquerda */
    text-align: left; /* ALTERADO: texto alinhado à esquerda */
  }
  
  .btn-whatsapp-line {
    width: auto; /* ALTERADO: largura automática */
    justify-content: flex-start; /* ALTERADO: alinhado à esquerda */
  }
  
  .contatti-form {
    padding: 24px 18px;
  }
}

@media (max-width: 576px) {
  .contatti-left h2 {
    font-size: 22px;
  }
  
  .contatti-subtitle {
    font-size: 14px;
  }
  
  .form-group label {
    font-size: 12px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .btn-submit {
    font-size: 13px;
    padding: 12px 20px;
  }
  
  .btn-whatsapp-line {
    font-size: 13px;
    padding: 10px 16px;
    width: auto; /* ALTERADO: largura automática */
    justify-content: flex-start; /* ALTERADO: alinhado à esquerda */
  }
  
  .form-checkbox label {
    font-size: 11px;
  }
  
  .contatti-form {
    padding: 20px 14px;
    gap: 14px;
  }
}

/* ============================================ */
/* TELAS GRANDES                                */
/* ============================================ */

@media (min-width: 1400px) {
  .contatti-section .container {
    max-width: 1100px;
  }
  
  .contatti-grid {
    gap: 80px;
  }
  
  .contatti-left h2 {
    font-size: 38px;
  }
}

/* ============================================ */
/* ANIMAÇÕES                                    */
/* ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================ */
/* FORM ROW - NOME E TELEFONO LADO A LADO       */
/* ============================================ */

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

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