* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  line-height: 1.1;
  overflow-x: hidden;
}

:root {
  --font-Montserrat: "Montserrat", sans-serif;
  --font-opensans: "Open Sans", sans-serif;
  /*
--font-Myriad: "Myriad Pro", sans-serif;
--font-Oswald: "Oswald", sans-serif;
--font-Lato: "Lato", sans-serif;
--font-Inter: "Inter", sans-serif;
--font-Arial: Arial, Helvetica, sans-serif;
--font-Verdana: Verdana, sans-serif;
--font-Poppins: "Poppins", sans-serif;
--font-Ubuntu: "Ubuntu", sans-serif;
--font-RobotoCondensed: "Roboto Condensed", sans-serif;
--font-BebasNeue: "Bebas Neue", sans-serif;
--font-Roboto: "Roboto", sans-serif;
--font-AbrilFatface: "Abril Fatface", serif;
--font-Quicksand: "Quicksand", sans-serif;
--font-Nunito: "Nunito", sans-serif;
--font-Helvetica: "Helvetica", Arial, sans-serif;
--font-LenguajeSpartan: "League Spartan", sans-serif;
--font-Quicksand: "Quicksand", sans-serif;
--font-JosefinSans: "Josefin Sans", sans-serif;
*/
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/*header*/

.main-header {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.4;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-top {
  position: relative;
  z-index: 3;
  padding: 15px 0 0;
}

.header-top .container {
  max-width: 1400px;
  display: flex;
  justify-content: flex-end;
}

.location-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 3.6rem;
  font-family: var(--font-opensans);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.main-nav {
  position: relative;
  z-index: 3;
  padding: 20px 0;
}

.main-nav .container {
  max-width: 1390px;
}

.nav-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1410px;
  width: 100%;
  height: 70%;
  background-color: #29ae1d;
  border-radius: 100px 0 90px 0;
  z-index: 1;
}

.nav-wrapper {
  background-color: #ffffff;
  border-radius: 110px 0 110px 0;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.nav-logo a {
  display: block;
}

.nav-logo img {
  height: 100px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-right: 30px;
}

.nav-menu li a {
  color: #3e3e3e;
  text-decoration: none;
  font-family: var(--font-Montserrat);
  font-size: 1.6rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-separator {
  color: #35479f;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.nav-menu li a:hover {
  color: #7ed957;
}

.nav-phone {
  text-align: center;
  margin-right: 50px;
}

.phone-label {
  color: #6c6c6c;
  font-size: 2.2rem;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  margin: 0 20px 5px 0;
  text-align: end;
}

.phone-box {
  background-color: #152b7e;
  border-radius: 10px;
  padding: 8px 15px;
}

.phone-number {
  color: #ffffff;
  text-decoration: none;
  font-size: 3rem;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  display: block;
  transition: opacity 0.3s ease;
}

.phone-number:hover {
  opacity: 0.8;
}

.hero-content {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 3;
}

.hero-content .container {
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  color: #27af21;
  font-size: 7.2rem;
  font-weight: 800;
  font-family: var(--font-opensans);
  line-height: 0.9;
  letter-spacing: -3.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #ffffff;
  font-size: 9rem;
  font-weight: 300;
  font-family: var(--font-opensans);
  letter-spacing: -3.5px;
  margin: 0 0 60px 0;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-arrows {
  display: flex;
  gap: 5px;
}

.hero-arrows button {
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: rgba(53, 53, 53, 0.5);
  width: 36px;
  height: 36px;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

.hero-arrows button:hover {
  background-color: #7ed957;
  border-color: #7ed957;
}

/*top footer*/

.top-footer {
  position: relative;
  padding: 115px 0 85px;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-footer .container {
  max-width: 1390px;
  position: relative;
  z-index: 2;
}

.footer-columns {
  display: grid;
  grid-template-columns: 310px 210px 385px 320px;
  gap: 40px;
  column-gap: 40px;
}

.footer-column:nth-child(3) {
  margin-right: 65px;
}

.footer-column {
  color: #ffffff;
}

.footer-title {
  font-size: 2.8rem;
  font-family: var(--font-opensans);
  font-weight: 700;
  margin: 0 0 18px 0;
  color: #ffffff;
  line-height: 1.2;
}

.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services-list li {
  font-size: 1.4rem;
  font-family: var(--font-opensans);
  line-height: 1.8;
  margin-bottom: 1px;
  color: #cccccc;
}

.footer-services-list li a {
  color: #cccccc;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-services-list li a:hover {
  opacity: 0.7;
}

.footer-phone {
  font-size: 1.4rem;
  color: #cccccc;
  font-family: var(--font-opensans);
  text-decoration: none;
  display: block;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

.footer-phone:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social a {
  display: block;
  width: 30px;
  height: 30px;
}

.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-payment img {
  max-width: 100%;
  height: auto;
}

.footer-cta {
  background-color: #4a7ac7;
  border-radius: 5px;
  padding: 30px 50px;
  text-align: center;
}

.cta-label {
  font-size: 3rem;
  font-family: var(--font-opensans);
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.cta-phone {
  font-size: 3rem;
  font-family: var(--font-opensans);
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}

.cta-phone:hover {
  opacity: 0.8;
}

/*footer*/
.main-footer {
  background-color: #39393b;
  padding: 2.5rem 0;
}

.main-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-privacy {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-privacy:hover {
  opacity: 0.8;
}

.footer-left p {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: var(--font-Verdana);
  margin: 0;
  text-align: left;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-right span {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: var(--font-Verdana);
}

.tecweb-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.tecweb-logo img {
  height: 20px;
  width: auto;
}

.tecweb-logo span {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
}

/*home*/

#welcome {
  position: relative;
  padding: 80px 0;
  background-image: url("../images/inicio/pr.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#welcome .container {
  max-width: 1520px;
}

#welcome .welcome-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

#welcome .welcome-left {
  position: relative;
  flex: 0 0 45%;
}

#welcome .welcome-left img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

#welcome .welcome-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  width: 100%;
}

#welcome .welcome-title {
  font-size: 8.8rem;
  font-family: var(--font-opensans);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -2px;
}

#welcome .welcome-title strong {
  font-weight: 800;
  font-size: 5.6rem;
  letter-spacing: -1px;
  display: block;
}

#welcome .welcome-subtitle {
  font-size: 3rem;
  font-family: var(--font-opensans);
  font-weight: 400;
  margin: 0 0 70px 0;
}

#welcome .welcome-btn {
  display: inline-block;
  background-color: #547324;
  color: #ffffff;
  padding: 25px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 3rem;
  font-family: var(--font-opensans);
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

#welcome .welcome-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

#welcome .welcome-right {
  flex: 0 0 55%;
}

#welcome .welcome-right img {
  width: 100%;
  height: auto;
  margin-left: -20px;
}

#services {
  background-color: #f3f3f3;
  padding: 70px 0 50px;
  position: relative;
  z-index: 1;
}

#services .services-header {
  text-align: center;
  margin-bottom: 60px;
}

#services .services-title {
  font-size: 7.2rem;
  font-family: var(--font-opensans);
  font-weight: 800;
  color: #182983;
  margin: 0;
  letter-spacing: -2px;
}

#services .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  width: 100%;
  max-width: 1825px;
  margin: 0 auto;
  padding: 0 20px;
}

#services .service-card {
  background-color: #ffffff;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 35px;
}

#services .service-card:nth-child(4) .service-description {
  margin-top: 30px;
}

#services .service-image {
  width: 100%;
  max-width: 240px;
  margin-bottom: 25px;
}

#services .service-image img {
  width: 100%;
  height: auto;
}

#services .service-name {
  font-size: 3rem;
  font-family: var(--font-opensans);
  font-weight: 800;
  color: #2bac1f;
  letter-spacing: -2px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

#services .service-description {
  font-size: 1.6rem;
  font-family: var(--font-opensans);
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  margin: 0 0 30px 0;
  flex-grow: 1;
  letter-spacing: -0.5px;
}

#services .service-card:nth-child(2) .service-description {
  font-size: 1.53rem;
}

#services .service-btn {
  display: inline-block;
  background-color: #ececec;
  color: #5e5e5e;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.8rem;
  font-family: var(--font-opensans);
  font-weight: 500;
  transition: all 0.3s ease;
}

#services .service-btn:hover {
  background-color: #bfbfbf;
}

#contact {
  position: relative;
  min-height: 700px;
  background-image: url("../images/inicio/contacbr.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f3f3;
  position: relative;
  z-index: 2;
}

#contact .contact-wrapper {
  display: flex;
  width: 100%;
  height: 800px;
}

#contact .contact-left {
  flex: 0 0 50%;
}

#contact .contact-right {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 40px 60px 80px;
  margin-left: -180px;
  margin-top: 50px;
}

#contact .contact-content {
  width: 100%;
  max-width: 800px;
}

#contact .contact-title {
  font-size: 7.2rem;
  font-family: var(--font-opensans);
  font-weight: 800;
  color: #52cb47;
  margin: 0 0 5px 0;
  letter-spacing: -2px;
}

#contact .contact-subtitle {
  font-size: 2.4rem;
  font-family: var(--font-opensans);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

#contact .contact-form {
  width: 100%;
}

#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

#contact .form-row.full {
  grid-template-columns: 1fr;
}

#contact .form-input,
#contact .form-textarea {
  width: 100%;
  padding: 25px 25px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.6rem;
  font-family: var(--font-opensans);
  font-weight: 500;
}

#contact .form-input::placeholder,
#contact .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#contact .form-textarea {
  resize: vertical;
  min-height: 50px;
  max-height: 72px;
}

#contact .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

#contact .recaptcha-space {
  width: 304px;
  height: 78px;
}

#contact .form-submit {
  background-color: #52cb47;
  color: #ffffff;
  border: none;
  padding: 18px 100px;
  border-radius: 10px;
  font-size: 2.1rem;
  font-family: var(--font-opensans);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contact .form-submit:hover {
  background-color: #6bc748;
}

#extra {
  background-color: #f3f3f3;
  padding: 70px 0;
}

#extra .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  width: 100%;
  max-width: 1825px;
  margin: 0 auto;
  padding: 0 20px;
}

#extra .service-card {
  background-color: #ffffff;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 35px;
}

#extra .service-image {
  width: 100%;
  max-width: 240px;
  margin-bottom: 25px;
}

#extra .service-image img {
  width: 100%;
  height: auto;
}

#extra .service-name {
  font-size: 3rem;
  font-family: var(--font-opensans);
  font-weight: 800;
  color: #2bac1f;
  letter-spacing: -2px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

#extra .service-description {
  font-size: 1.6rem;
  font-family: var(--font-opensans);
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  margin: 0 0 30px 0;
  flex-grow: 1;
  letter-spacing: -0.5px;
}

#extra .service-btn {
  display: inline-block;
  background-color: #ececec;
  color: #5e5e5e;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.8rem;
  font-family: var(--font-opensans);
  font-weight: 500;
  transition: all 0.3s ease;
}

#extra .service-btn:hover {
  background-color: #bfbfbf;
}

#formFloat,
#formFloatC {
  position: fixed;
  top: 78%;
  margin-top: -180px;
  height: 480px;
  width: 383px;
  z-index: 999992;
  left: -175px;
}
#formFloatC {
  top: calc(78% + 116px);
}
#formFloat .cnt,
#formFloatC .cnt {
  height: inherit;
  width: inherit;
  position: relative;
}
#formFloat .cnt #btnF,
#formFloatC .cnt #btnFC {
  position: relative;
  cursor: pointer;
}
#formFloat .cnt #btnF div,
#formFloatC .cnt #btnFC div {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 383px;
  padding-right: 17px;
  background: url("../images/flotante/bg.webp") center right no-repeat;
  cursor: pointer;
}
#formFloatC .cnt #btnFC div {
  padding-right: 23px;
}
#formFloat form,
#formFloatC form {
  display: block;
  width: 348px;
  height: 405px;
  background: #3a3a3a;
  border-bottom-right-radius: 50px;
  padding-left: 34px;
  padding-right: 34px;
  position: relative;
  right: 250px;
}

.textForm {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
}
#formFloat form p,
#formFloatC form p {
  padding: 0 0 9px;
}
#formFloat form p input,
#formFloat form p textarea,
#formFloatC form p input,
#formFloatC form p textarea {
  height: 46px;
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 3px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #404040;
}
#formFloat form p textarea,
#formFloatC form p textarea {
  height: 82px;
}
#formFloat form input[type="submit"],
#formFloatC form input[type="submit"] {
  display: block;
  position: relative;
  margin-top: 3px;
  background: #00b200;
  border-radius: 3px;
  height: 46px;
  width: 100%;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  box-shadow: inset 0px 1px 0px 0px transparent;
}
