:root {
    --primary-color: #19a1d7;
    --secondary-color: #6a7683;
    /* --primary-color: #065f83; */
    /* --primary-color: #2395d3; */
    
    /* --categoria-color: #a7bdc4; */
    --categoria-color: #a7bdc4;
}

/* Importing Google fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(#eceffe, #ced6fb);
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.container p {
    text-align: center;
    margin-bottom: 20px;
}

h2 {
  text-align: center;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  color: #333;
}

.input, .select, .textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.boton {
  padding: 10px;
  background-color: #5372f0;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #3b5cd6;
}



/* SECCIÓN FOOTER */

.social-media-footer {
  padding: 10px;
  text-align: center;
}
.social-links {
  margin-bottom: 10px;
}
.social-link {
  margin: 0 10px;
  text-decoration: none;
}
.social-link img {
  width: 30px;
  height: 30px;
}
.footer-text {
  font-size: 14px;
  color: #777;
}

@media screen and (max-width: 1320px) {
  main {
      width: 100%;
  }
  
}

@media screen and (min-width: 1320px) {
  .img-categorias-grande {
      object-fit: contain;
      width: 150px;
  }

  
  
}

/* Texto servicio tecnico */

.text-serv-tecnico {
  width: 20%;
  position: absolute;
  right: 8%;
  top: 15%;
  background-color: #6a7683;
  color: #fff;
  padding: 10px 40px;
  border-radius: 20px;
}