/* GENERAL STYLES */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 20px;
  color: #1468b1;
  font-weight: 700;
}

p {
  margin: 0 0 20px;
}

/* NAVIGATION */
.nav-logo img {
  height: 100px; /* Ajusta el tamaño según tu diseño */
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px; /* Espacio entre el logo y el menú */
}

.navbar {
  background: linear-gradient(to right, #1468b1, #2a7abf);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.nav-list {
  display: flex;
  justify-content: right;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 60px;
}

.nav-list a {
  color: #d0edfc;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-list a:hover {
  background-color: #2a7abf;
  color: white;
}

/* HEADER */
.header {
  background: linear-gradient(to right, #1468b1, #2a7abf);
  color: #d0edfc;
  padding: 80px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header-text h1 {
  font-size: 40px;
  color: white;
}

.header-text p {
  font-size: 20px;
  margin-bottom: 30px;
}

.header-image {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #12274b;
  color: white;
}

.btn-primary:hover {
  background-color: #1468b1;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #2a7abf;
  color: white;
}

.btn-secondary:hover {
  background-color: #4c97d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ABOUT SECTION */
.about-general {
  min-height: 300px; /* O un tamaño que haga visible la sección */
  padding: 50px 20px;
  text-align: center;
  color: white;
  background-image: url('../images/Servidor_fondo.jpg'); /* Cambia 'ruta-de-tu-imagen.jpg' por la ruta real de tu imagen */
  background-size: cover; /* Hace que la imagen cubra toda la sección */
  background-position: center; /* Centra la imagen */
  background-attachment: fixed; /* Hace que el fondo sea fijo mientras se hace scroll (opcional) */

}

.about-general .section-title {
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
  }
.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  background-color: #d0edfc;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 16px;
  color: #555;
}

/*NUESTRO EQUIPO*/
.team {
padding: 60px 20px;
background-color: #ffffff;
text-align: center;
}

.team .section-title {
font-size: 28px;
color: #333;
margin-bottom: 20px;
}

.team .section-description {
font-size: 16px;
color: #666;
margin-bottom: 40px;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}

.team-member {
background: white;
border: 1px solid #e0e0e0;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.team-photo {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 15px;
object-fit: cover;
border: 2px solid #007BFF;
}

.team-member h3 {
font-size: 18px;
color: #007BFF;
margin-bottom: 10px;
}

.team-member p {
font-size: 14px;
color: #666;
margin: 5px 0;
}



/* SERVICES SECTION */
.services {
  text-align: center;
  color: white;
  padding: 60px 0;
  background-color: #12274b;

}

.services .section-title {
  font-size: 28px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-item img {
  width: 80px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 16px;
  color: #555;
}

/* PRODUCTS SECTION */
.products {
  min-height: 300px;
  text-align: center;
  padding: 60px 0;
  background-color: #f9f9f9;
  background-image: url('../images/fondo3.jpg'); /* Cambia 'ruta-de-tu-imagen.jpg' por la ruta real de tu imagen */
  background-size: cover; /* Hace que la imagen cubra toda la sección */
  background-position: center; /* Centra la imagen */
  background-attachment: fixed; /* Hace que el fondo sea fijo mientras se hace scroll (opcional) */
}

.products .section-title {
  font-size: 28px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.product-item img {
  width: 150px;
  height: 150 px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block; /* Asegurar que se comporte como un bloque */
}

.product-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.product-item p {
  font-size: 16px;
  color: #555;
}

/* SECCION DE SOFTWARE EMPRESARIAL*/
.software-details {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.software-details .section-title {
  font-size: 28px;
  color: #12274b;
  text-align: center;
  margin-bottom: 20px;
}

.software-details .section-description {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.software-details-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.software-details-text {
  flex: 1;
  max-width: 600px;
}

.software-details-text h3 {
  font-size: 20px;
  color: #1468b1;
  margin-bottom: 10px;
}

.software-details-text ul {
  list-style: none;
  padding: 0;
}

.software-details-text ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.software-details-text ul li::before {
  content: "✓";
  color: #1468b1;
  margin-right: 8px;
}

.software-details-image {
  flex: 1;
  max-width: 800px;
}

.software-details-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* TESTIMONIALS SECTION */
.testimonials {
  padding: 60px 0;
  background-color: #12274b;
  text-align: center;
}

.testimonials .section-title {
  font-size: 28px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-item blockquote {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  color: #555;
}

.testimonial-item cite {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  margin-top: 15px;
}

/* SECCION DE EMPRESAS ALIADAS*/
.partners {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.partners .section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.logo-container {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  transition: transform 0.3s ease-in-out;
}

.logo-container:hover {
  transform: rotateY(360deg);
}

.partner-logo {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-container:hover .partner-logo {
  filter: none;
}


/* CONTACT SECTION */
.contact {
  padding: 60px 0;
  background-color: #d0edfc;
  text-align: center;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-media a img {
  margin-top: 30px;
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.social-media a img:hover {
  transform: scale(1.1);
}

/* MAPA*/
.contact {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact .section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.contact-info {
  flex: 1;
  max-width: 400px;
  text-align: left;
  font-size: 16px;
  color: #555;
}

.contact-info p {
  margin-bottom: 10px;
}

.map-container {
  flex: 1;
  max-width: 600px;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* FOOTER */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
}