@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@600&family=Rajdhani:wght@600&display=swap');

/******************************************************General********************************************************/
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
/********************************************************************************************************************/

/*****************************************************Principal******************************************************/
.principal_div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* background-color: lightcoral; */
  height: 100%;
  width: 100%;
}
/********************************************************************************************************************/

/*******************************************************Header*******************************************************/

#nav_container {
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: #fff;
  width: 100%;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  color: #000; 
}

#menu-icon {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.nav_links_container {
  display: flex;
  align-items: center; 
  gap: 20px;
}

.nav_links {
  list-style: none;
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: 20px;
}

.nav_links li {
  margin: 0;
}

a {
  color: #000; /* Texto negro */
  text-decoration: none;
}

/********************************************************************************************************************/

/*****************************************************Home***********************************************************/

#home {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 1000px;
  width: 100%;
  gap: 20px;
}

.home_fondo {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1000px;
  opacity: 0.5;
}

.home_text {
  text-align: center;
  height: 240px;
  width: 1000px;
}

.home_img {
  height: 408px;
  width: 458px;
}

.company_name {
  text-align: center;
  color: var(--black);
  font-size: 80px;
  line-height: 90px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}

.company_slogan {
  font-size: 30px;
  font-family: 'Rajdhani', sans-serif;
}
/********************************************************************************************************************/

/*****************************************************About***********************************************************/
#about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 1000px;
  width: 100%;
  gap: 150px;
  /* background-color: lightgrey; */
  margin-top: 20px;
}

.about_img {
  height: 400px;
  width: 400px;
}

#imagenPopup{
  border-radius: 200px;
}

.about_text {
  height: 500px;
  width: 600px;
}

.about_title {
  font-size: 40px;
  text-align: center;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
}

/********************************************************************************************************************/

/****************************************************Services********************************************************/
#services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 1100px;
  width: 100%;
  margin-top: 20px;
  /* background-color: lightgreen; */
}

.services_fondo {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1000px;
  opacity: 0.5;
}

.services_title {
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  padding-top: 100px;
}

.card {
  background-color: #ffffff;
  width: 400px;
  height: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 6px black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 20px;
  transition: transform 0.3s ease;
  line-height: 30px;
}

.icon {
  width: 200px;
  height: 200px;
}

.card h2 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

.card p {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  text-align: center;
}

/********************************************************************************************************************/

/****************************************************Contact********************************************************/

#contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: auto;
  width: 100%;
  margin-top: 20px;
} 

.contact_title {
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  padding-top: 100px;
  padding-bottom: 100px;
}

.form_box {
  width: 100%;
  max-width: 400px;
  padding: 30px 15px;
  border-radius: 4px;
} 

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}  

.form_label {
  margin-top: 15px;
  color: #3d3935;
  font-size: 20px;
}

.form_input {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #3d3935;
  border-radius: 4px;
  background-color: #fff;
  color: #3d3935;
}

.form_input::placeholder {
  color: #867d6c;
  font-size: 15px;
}

.form_required {
  color: #b0092d;
}

textarea.form_input {
  width: 100%;
  height: 100px;
  padding: 10px;
  resize: none;
}

.form_button {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  border: none;
  border-radius: 4px;
  background-color: #3d3935;
  color: #fff;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}

.div_footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 50px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}







