#contacto-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  position: relative;
  margin-top: 70px;
}

#contacto-main h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  color: var(--color-primario);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.contacto-form label {
  font-weight: bold;
}

.contacto-form input,
.contacto-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contacto-form button {
  padding: 12px;
  background-color: var(--color-secundario);
  border: none;
  color: white;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  max-width: 200px;
}

.contacto-form button:hover {
  background-color: var(--color-primario);
  filter: drop-shadow(0 0 5px var(--color-secundario));
}

.contacto-details {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contacto-details h2 {
  font-size: 1.5em;
  margin-top: 20px;
  color: var(--color-primario);
}

ul {
  list-style: none;
  padding-left: 0;
}

.contacto-details li {
  margin-bottom: 10px;
  font-size: 1em;
    position: relative;
  margin-top: 10px;
}
.contacto-details i{
    color:rgb(3, 184, 48);
    font-weight: bold;
    font-size: 20px;
}
.contacto-details a {
  color: var(--color-negro);
  font-weight: bold;


}

.contacto-details a:hover {
  text-decoration: underline;
}

.contacto-socials {
  margin-top: 20px;
}

.contacto-socials a {
  margin-right: 15px;
  font-size: 1.5em;
  color: #007BFF;
}

.contacto-socials a:hover {
  color: #0056b3;
}
#contacto-socials a:nth-child(1) i {
  color: rgb(3, 184, 48);
}

#contacto-socials a:nth-child(2) i {
  color: var(--color-negro);
}

#contacto-socials a:nth-child(3) i {
  color: rgb(0, 130, 252);
}

@media (max-width: 768px) {
#contacto-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  position: relative;
  margin-top: 0px;
} 
  
}
