/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700;900&display=swap");
@import url("StylesII.css");
@import url("dark.css");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
 --primary-color: #1F8A70;
  --secondary-color: #f0f6fb;
  --primary-color-bg: #fff;
  --title-color: #737272;
  --text-color: #666666;
  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.7rem;
  --h2-font-size: 1.2rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-black: 900;

  /*========== Margenes ==========*/
  --m-0-25: 0.25rem;
  --m-0-5: 0.5rem;
  --m-0-75: 0.75rem;
  --m-1: 1rem;
  --m-1-5: 1.5rem;
  --m-2: 2rem;
  --m-2-5: 2.5rem;

  /*========== Box Shadow and Border ==========*/
  --shadow-1: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  --border-1: 1px solid rgba(0, 0, 0, 0.08);
}

/* Responsive typography */
@media screen and (min-width: 992px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

button,
input,
textarea {
  border: none;
  outline: none;
  font-family: var(--body-font);
}
button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.mobile-hidden {
  display: none;
}
.top-title {
  font-weight: 700;
  color: var(--primary-color);
  font-size: var(--h2-font-size);
}
.title {
  font-size: var(--h1-font-size);
}
.paragraph {
  color: var(--body-color);
  line-height: 1.5;
  margin: 1rem 0;
  font-weight: 400;
}
.primary-btn {
  padding: 0.6rem 1.5rem;
  background: var(--primary-color);
  color: #f0f6fb;
  letter-spacing: 0.5px;
  border-radius: 100px;
  transition: background 0.2s ease-in-out;
}
.primary-btn:hover {
  background: var(--title-color);
}
.secondery-btn {
  position: relative;
  letter-spacing: 0.5px;
  background: transparent;
  font-weight: 700;
  font-size: 1.1rem;
}
.secondery-btn::before {
  position: absolute;
  content: "";
  width: 20%;
  height: 3px;
  background-color: var(--primary-color);
  left: 0;
  bottom: 0;
  transition: width 0.2s ease-in-out;
}
.secondery-btn:hover::before {
  width: 100%;
}
.img {
  margin-bottom: 2rem;
}
.icon-box-container {
  display: grid;
  gap: 1.5rem;
}
.icon-box {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.icon-box .icon {
  background: var(--primary-color);
  color: #f0f6fb;
  width: 4rem;
  height: 4rem;
  text-align: center;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease-in-out;
}
.icon-box .icon-box-title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
}
.icon-box .icon-box-des {
  font-size: 1.1rem;
}
.icon-box:hover .icon {
  transform: translateX(30px);
}
/*=============== LAYOUT ===============*/
.container {
  max-width: 93%;
  margin: auto;
}
.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}
.section .img,
.section .description {
  flex: 1;
}
.bg-section {
  background: var(--secondary-color);
  padding: 2rem 0;
}
.text-center {
  text-align: center;
  margin: 1.5rem;
}
.text-left {
  text-align: left;
  margin: 1.5rem 0;
}

/*=============== NAV ===============*/
.desktop-menu-mobile-hidden{
  position: fixed;

}
#menu-mobile-container .dark-part {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
}
#menu-mobile-container.active .dark-part {
  opacity: 1;
  pointer-events: auto;
}
nav.mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  background:#1F8A70;
  min-width: 300px;
  box-shadow: var(--shadow-1);
  padding: 2rem 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  background: #fff;
  z-index: 2;
}
#menu-mobile-container.active nav.mobile {
  transform: translateX(0);
}
nav.mobile ul li a {
  padding: 0.8rem 2rem;
  display: block;
  color: var(--title-color);
  transition: all 0.2s ease-in-out;
  font-size: var(--h3-font-size);
  letter-spacing: 1px;
}
nav.mobile ul li:hover a {
  background: var(--primary-color);
  color: #fff;
}
/*=============== HEADER ===============*/


.header {
  display:flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;



  




  
}

.menu-icon {
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-color);
 
}
.logo {
  max-width: 80px;
}
/*=============== NAV ===============*/

/*=============== Hero ===============*/

/*=============== About ===============*/

/*=============== Products ===============*/
.product-box-container {
  display: grid;
  gap: 2rem;
}
.product-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-1);
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  border-bottom: 3px solid var(--primary-color);
}
.product-box * {
  margin: 1.3rem 0;
}
.product-box-title {
  font-size: var(--h2-font-size);
}
.product-box p {
  text-align: center;

  
}
.product-box img{
  height: 6.8rem;
  width: 6.8rem;
}

/*=============== Features ===============*/

/*=============== Team Members ===============*/
.team-container {
  display: grid;
  gap: 2rem;
  width: 100%;
}
.team-member img {
  width: 100%;
  display: block;
}
.team-member h4 {
  font-size: var(--h2-font-size);
}
.team-member p {
  font-size: 1rem;
}
.team-member .socials i {
  font-size: 1.7rem;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  margin-right: 0.3rem;
  transition: transform 0.2s ease-in-out;
}
.team-member .socials i:hover {
  transform: translateY(-10px);
}
.team-member-img {
  position: relative;
  cursor: pointer;
}

.team-member .socials-container {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}
.team-member .socials {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  display: flex;
}
.team-member-img:hover .socials-container {
  opacity: 1;
  pointer-events: auto;
}
.team-member-img:hover .socials {
  top: 50%;
}

/*=============== Latest News ===============*/
.testimonial-carousel {
  margin: 2rem;
  position: relative;
  display: flex;
  width: 100%;
  padding-bottom: 6rem;
  overflow: hidden;
}
.testimonial-item {
  flex: 1 0 100%;
  text-align: center;
  padding: 0 1rem;
  transition: all 0.3s ease-in-out;
}
.testimonial-text {
  text-align: justify;
  margin-bottom: 1.5rem;
}
.testimonial-user h5 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--title-color);
}
.testimonial-carousel .next,
.testimonial-carousel .perv {
  position: absolute;
  bottom: 25px;
  left: 40%;
  transform: translateX(-50%);
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
.testimonial-carousel .next:hover,
.testimonial-carousel .perv:hover {
  background: var(--primary-color);
  color: #fff;
}
.testimonial-carousel .next {
  left: 60%;
}

/*=============== Partners ===============*/
.partners-container {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  justify-items: center;
  align-items: center;
}
.partners-container img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  align-self: center;
}
/*=============== Blog ===============*/
.blog-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
article.blog {
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-1);
  border-radius: 10px;
  overflow: hidden;
}
article.blog .blog-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
article.blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
article.blog:hover .blog-img img {
  transform: scale(1.2);
}
.blog-des {
  padding: 1.5rem 2rem;
}
article.blog a {
  position: absolute;
  inset: 0;
}
/*=============== Contact ===============*/
form.contact {
  width: 100%;
}
.input-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.input-container input,
.contact textarea {
  width: 100%;
  background: var(--secondary-color);
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  border-radius: 3px;
  font-weight: 300;
}
.contact textarea {
  margin-bottom: 1rem;
}

/*=============== Footer ===============*/
.top-footer > * {
  margin-bottom: 3rem;
}
.top-footer .title {
  font-size: 1.3rem;
}
.address ul {
  margin-top: 1.5rem;
}
.address ul li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.address ul li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1.6rem;
}
.address ul li p {
  font-size: 1.1rem;
  font-weight: 300;
}
.address ul li a {
  color: #292a2a;
  font-size: 1.1rem;
  font-weight: 300;
}

.address ul li a:hover{
  color: var(--primary-color);
}


.links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links .link .title {
  margin-bottom: 0.8rem;
}
.link ul li a {
  font-size: 1.1rem;
  color: var(--text-color);
  padding: 0.4rem 0;
  display: block;
}
.link ul li:hover a {
  color: var(--primary-color);
}
.newsletter p {
  font-size: 1.1rem;
  font-weight: 300;
}
.newsletter-input {
  width: 100%;
  display: flex;
  background: var(--secondary-color);
  height: 60px;
  align-items: center;
  padding: 0 1rem;
  border-radius: 3px;
  margin-top: 1.5rem;
}
.newsletter-input input {
  width: 100%;
  background: transparent;
  font-size: 1.05rem;
}
.newsletter-input button {
  background: transparent;
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 0;
}

.bottom-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 60px;
  
}
.copyright a {
  color: var(--primary-color);
  align-items: center;
}
.foot-socials {
  display: flex;
  align-items: center;
  margin-left: 50px;
}
.foot-socials a {
  font-size: 1.5rem;
  padding: 0.5rem;
  color: var(--body-color);
}
.foot-socials a:hover {
  color: var(--primary-color);
}

.contador {
  color: #e6e4db;
  background: #1b1b1a;
  height: 25px;
  width: 20%;
}

.contador p{
  color: #fdfcfc;
 
}
/*=============== Go to top button ===============*/
#gotoup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary-color);
  width: 45px;
  height: 45px;
  font-size: 1.7rem;
  line-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 16px;
  cursor: pointer;
  transform: translateY(150%);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.4s ease-in-out;
  z-index: 9999;
}
#gotoup.active {
  transform: translateY(0);
  pointer-events: auto;
}

.pop-animation {
  animation: pop 5s linear infinite;
}

@keyframes pop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
