


/* Sección Hero */
.nosotros-hero {
   height: 60vh;
   background: linear-gradient(rgba(10, 61, 98, 0.3), rgba(10, 61, 98, 0.3)), url('../assets/nosotros.jpg') center/cover no-repeat;
   position: relative;
   display: flex;
   align-items: center;
   text-align: center;
}

.nosotros-hero .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
   display: flex;
   align-items: center;
   justify-content: center;
}

.nosotros-hero h1 {
   font-size: 6rem;
   color: #fff;
   margin-bottom: 15px;
}

.nosotros-hero p {
   font-size: 1.2rem;
   color: #fff;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 40px 20px;
}

.section-title {
   text-align: center;
   color: #003366;
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 40px;
}

.intro-text {
   text-align: justify;
   line-height: 1.6;
   color: #555;
   margin-bottom: 40px;
}

.content-row {
   display: flex;
   flex-direction: row;
   margin: 30px 0;
   gap: 40px;
}

.image-container {
   flex: 0 0 45%;
   overflow: hidden;
   position: relative;
}

.image-container img {
   width: 100%;
   height: auto;
   display: block;
}

.image-container::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 10px;
   height: 100%;
   background-color: #0066cc;
}

.mission-vision {
   margin-top: 40px;
}

.section-subtitle {
   color: #0066cc;
   font-size: 14px;
   margin-bottom: 10px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.mission-title,
.vision-title {
   color: #003366;
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 20px;
}

.mission-content,
.vision-content {
   color: #555;
   line-height: 1.6;
   margin-bottom: 30px;
}

.divider {
   height: 2px;
   background-color: #eee;
   margin: 30px 0;
}

.team-section {
   text-align: center;
   margin-top: 60px;
}

.team-title {
   color: #003366;
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 20px;
}

.team-text {
   text-align: justify;
   line-height: 1.6;
   color: #555;
   margin-bottom: 30px;
}

.download-btn {
   display: inline-block;
   background-color: #0066cc;
   color: white;
   padding: 12px 25px;
   text-decoration: none;
   border-radius: 5px;
   font-weight: 600;
   transition: background-color 0.3s;
}

.download-btn:hover {
   background-color: #004c99;
}

@media (max-width: 768px) {
   .content-row {
      flex-direction: column;
   }

   .image-container {
      flex: 0 0 100%;
      margin-bottom: 20px;
   }
}

/* Sección Valores */
.valores {
   padding: 80px 0;
   background-color: #f8f9fa;
}

.valores-wrapper {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}

.valor-item {
   padding: 30px;
   border-radius: 8px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   background-color: #fff;
   text-align: center;
   transition: transform 0.3s ease;
}

.valor-item:hover {
   transform: translateY(-10px);
}

.valor-item h3 {
   font-size: 1.3rem;
   margin: 15px 0;
   color: #0E6655;
}

.valor-item p {
   color: #1E3A4C;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 60px 20px;
}

.nuestra-labor {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 80px;
}

.left-content {
   flex: 0 0 45%;
}

.right-content {
   flex: 0 0 50%;
   position: relative;
}

.section-title {
   color: #003366;
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 30px;
}

.description {
   color: #555;
   line-height: 1.6;
   margin-bottom: 25px;
   font-size: 15px;
}

.values-title {
   color: #333;
   font-size: 18px;
   font-weight: 600;
   margin: 40px 0 20px 0;
   text-transform: uppercase;
}

.values-divider {
   width: 140px;
   height: 2px;
   background-color: #0074cc;
   margin-bottom: 25px;
}

.values-list {
   list-style: none;
}

.values-item {
   margin-bottom: 15px;
   display: flex;
   align-items: center;
   font-size: 15px;
   color: #333;
}

.values-item:before {
   content: "";
   display: inline-block;
   width: 20px;
   height: 20px;
   margin-right: 12px;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230074cc'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
   background-size: contain;
   background-repeat: no-repeat;
}

.image-container {
   width: 100%;
   height: auto;
   position: relative;
}

.image-container:after {
   content: '';
   position: absolute;
   top: 20px;
   right: -20px;
   width: 100%;
   height: 100%;
   background-color: #0074cc;
   z-index: -1;
}

.image-container img {
   width: 100%;
   height: auto;
   display: block;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
   .nuestra-labor {
      flex-direction: column;
   }

   .left-content {
      flex: 0 0 100%;
      margin-bottom: 40px;
   }

   .right-content {
      flex: 0 0 100%;
   }
}

.nuestra-labor-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 60px 20px;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}

.content-column {
   flex: 0 0 48%;
   max-width: 48%;
}

.image-column {
   flex: 0 0 48%;
   max-width: 48%;
   position: relative;
}

.section-title {
   color: #003366;
   font-size: 36px;
   font-weight: 700;
   margin-bottom: 25px;
}

.section-text {
   color: #555;
   line-height: 1.6;
   margin-bottom: 20px;
   font-size: 15px;
}

.values-title {
   color: #003366;
   font-size: 18px;
   font-weight: 600;
   margin: 40px 0 20px;
   text-align: center;
   position: relative;
}

.values-title::before,
.values-title::after {
   content: "";
   height: 1px;
   background-color: #ccc;
   width: 80px;
   position: absolute;
   top: 50%;
}

.values-title::before {
   left: 0;
}

.values-title::after {
   right: 0;
}

.values-list {
   list-style: none;
   margin-top: 20px;
}

.value-item {
   margin-bottom: 15px;
   display: flex;
   align-items: center;
}

.check-icon {
   color: #0074cc;
   margin-right: 10px;
   font-size: 18px;
}

.value-text {
   color: #0074cc;
   font-weight: 500;
}

.image-wrapper {
   position: relative;
   z-index: 1;
}

.image-bg {
   position: absolute;
   right: -30px;
   top: 30px;
   width: 100%;
   height: 100%;
   background-color: #0074cc;
   z-index: -1;
}

.image-wrapper img {
   width: 100%;
   height: auto;
   display: block;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blue-divider {
   width: 100%;
   height: 4px;
   background-color: #0074cc;
   margin-top: 60px;
}

@media (max-width: 992px) {
   .nuestra-labor-container {
      flex-direction: column;
   }

   .content-column,
   .image-column {
      flex: 0 0 100%;
      max-width: 100%;
   }

   .content-column {
      margin-bottom: 40px;
   }

   .image-bg {
      right: -15px;
      top: 15px;
   }
}

@media (max-width: 576px) {
   .section-title {
      font-size: 28px;
   }

   .values-title::before,
   .values-title::after {
      width: 40px;
   }

   .image-bg {
      right: -10px;
      top: 10px;
   }
}
.nuestra-labor-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 60px 20px;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}

.content-column {
   flex: 0 0 48%;
   max-width: 48%;
}

.image-column {
   flex: 0 0 48%;
   max-width: 48%;
   position: relative;
}

.section-title {
   color: #003366;
   font-size: 36px;
   font-weight: 700;
   margin-bottom: 25px;
}

.section-text {
   color: #555;
   line-height: 1.6;
   margin-bottom: 20px;
   font-size: 15px;
}

.values-title {
   color: #003366;
   font-size: 18px;
   font-weight: 600;
   margin: 40px 0 20px;
   text-align: center;
   position: relative;
}

.values-title::before,
.values-title::after {
   content: "";
   height: 1px;
   background-color: #ccc;
   width: 80px;
   position: absolute;
   top: 50%;
}

.values-title::before {
   left: 0;
}

.values-title::after {
   right: 0;
}

.values-list {
   list-style: none;
   margin-top: 20px;
}

.value-item {
   margin-bottom: 15px;
   display: flex;
   align-items: center;
}

.check-icon {
   color: #0074cc;
   margin-right: 10px;
   font-size: 18px;
}

.value-text {
   color: #0074cc;
   font-weight: 500;
}

.image-wrapper {
   position: relative;
   z-index: 1;
}

.image-bg {
   position: absolute;
   right: -30px;
   top: 30px;
   width: 100%;
   height: 100%;
   background-color: #0074cc;
   z-index: -1;
}

.image-wrapper img {
   width: 100%;
   height: auto;
   display: block;
   box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blue-divider {
   width: 100%;
   height: 4px;
   background-color: #0074cc;
   margin-top: 60px;
}

@media (max-width: 992px) {
   .nuestra-labor-container {
       flex-direction: column;
   }
   
   .content-column, .image-column {
       flex: 0 0 100%;
       max-width: 100%;
   }
   
   .content-column {
       margin-bottom: 40px;
   }
   
   .image-bg {
       right: -15px;
       top: 15px;
   }
}

@media (max-width: 576px) {
   .section-title {
       font-size: 28px;
   }
   
   .values-title::before,
   .values-title::after {
       width: 40px;
   }
   
   .image-bg {
       right: -10px;
       top: 10px;
   }
}

.calidad-section {
   padding: 60px 0;
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
}

.image-container {
   flex: 0 0 45%;
   position: relative;
}

.image-container img {
   width: 100%;
   height: auto;
   display: block;
   box-shadow: 0 5px 15px rgba(0,0,0,0.1);
   z-index: 1;
   position: relative;
}

.blue-bg {
   position: absolute;
   top: 20px;
   right: -20px;
   width: 100%;
   height: 100%;
   background-color: #0074cc;
   z-index: 0;
}

.content-container {
   flex: 0 0 45%;
   padding-right: 15px;
}

.subtitle {
   color: #0074cc;
   font-size: 16px;
   font-weight: 500;
   margin-bottom: 10px;
   position: relative;
   padding-left: 25px;
}

.subtitle::before {
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 15px;
   height: 1px;
   background-color: #0074cc;
}

.title {
   color: #003366;
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 20px;
}

.description {
   color: #555;
   font-size: 15px;
   margin-bottom: 30px;
}

.certification-block {
   display: flex;
   align-items: flex-start;
   margin-bottom: 30px;
}

.cert-icon {
   flex: 0 0 50px;
   margin-right: 15px;
   color: #0074cc;
   font-size: 40px;
}

.cert-icon img {
   width: 100%;
   height: auto;
}

.cert-content {
   flex: 1;
}

.cert-title {
   color: #003366;
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 10px;
}

.cert-description {
   color: #555;
   font-size: 14px;
}

.fitac-block {
   display: flex;
   align-items: center;
}

.fitac-icon {
   flex: 0 0 50px;
   margin-right: 15px;
}

.fitac-icon img {
   width: 100%;
   height: auto;
}

.fitac-text {
   flex: 1;
   color: #003366;
   font-size: 18px;
   font-weight: 600;
}

.divider {
   width: 100%;
   height: 1px;
   background-color: #e5e5e5;
   margin: 20px 0;
}

@media (max-width: 992px) {
   .calidad-section {
       padding: 40px 20px;
       flex-direction: column;
   }
   
   .image-container, .content-container {
       flex: 0 0 100%;
   }
   
   .image-container {
       margin-bottom: 30px;
   }
   
   .blue-bg {
       right: -10px;
       top: 10px;
   }
}

@media (max-width: 576px) {
   .title {
       font-size: 26px;
   }
   
   .certification-block, .fitac-block {
       flex-direction: column;
   }
   
   .cert-icon, .fitac-icon {
       margin-bottom: 15px;
       margin-right: 0;
   }
}
 /* Metrics section */
 .metrics-section {
   max-width: 1200px;
   margin: 0 auto;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 40px;
}

.metrics {
   display: flex;
   justify-content: space-around;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 0;
   border-bottom: 1px solid #eee;
}

.metric {
   text-align: center;
   flex: 1;
   min-width: 200px;
   padding: 10px;
}

.metric-number {
   font-size: 4rem;
   font-weight: bold;
   color: var(--primary-color);
   margin-bottom: 10px;
}

.metric-label {
   font-size: 1rem;
   color: #666;
}

.content-container {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
}

.content-text {
   flex: 1;
   min-width: 300px;
}

.content-image {
   flex: 1;
   min-width: 300px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.content-image img {
   max-width: 100%;
   height: auto;
   border-radius: 8px;
}

h1 {
   color: #00447c;
   margin-bottom: 20px;
   font-size: 1.8rem;
}

p {
   margin-bottom: 15px;
   line-height: 1.6;
}

h3 {
   margin: 25px 0 15px;
   color: #333;
}

.advantages {
   list-style: none;
}

.advantages li {
   margin-bottom: 12px;
   position: relative;
   padding-left: 28px;
   line-height: 1.5;
}

.advantages li::before {
   content: "✓";
   position: absolute;
   left: 0;
   color: var(--primary-color);
   font-weight: bold;
}

@media (max-width: 768px) {
   .metrics {
       flex-direction: column;
       align-items: center;
   }
   
   .metric {
       width: 100%;
   }
   
   .content-image {
       order: -1;
   }
}
/* fin */

/* WhatsApp contact */
.whatsapp-contact {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background-color: #25D366;
   color: white;
   padding: 12px 20px;
   border-radius: 50px;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 10px;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   opacity: 0;
   transform: translateY(20px);
   animation: bounceIn 1s ease 3s forwards;
   transition: all 0.3s ease;
}

.whatsapp-contact:hover {
   background-color: #128C7E;
   transform: scale(1.05);
}


:root {
   --primary-color: #005baa;  /* Azul corporativo basado en la imagen */
   --accent-color: #e63e11;   /* Rojo de acentos del logo */
   --text-color: #333;
   --text-light: #666;
   --white: #ffffff;
   --light-bg: #f8f9fa;
   --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
   --transition: all 0.4s ease;
 }
 
 /* Contenedor principal de testimonios */
 .testimonials-container {
   position: relative;
   background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
               url('../assets/seccion_terrestre.webp') no-repeat center center;
   background-size: cover;
   background-attachment: fixed;
   color: var(--white);
   padding: 80px 20px;
   overflow: hidden;
 }
 
 /* Título principal con animación */
 .testimonials-title {
   text-align: center;
   margin-bottom: 50px;
   animation: fadeInDown 0.8s ease-out;
 }
 
 .testimonials-title h2 {
   font-size: clamp(1.8rem, 4vw, 2.8rem);
   color: var(--white);
   margin-bottom: 15px;
   position: relative;
   display: inline-block;
 }
 
 .testimonials-title h2::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 3px;
   background: var(--accent-color);
   border-radius: 2px;
 }
 
 .testimonials-title p {
   font-size: clamp(1rem, 1.5vw, 1.2rem);
   max-width: 700px;
   margin: 0 auto;
   opacity: 0.9;
 }
 
 /* Contenedor de testimonios */
 .testimonials-wrapper {
   max-width: 1200px;
   margin: 0 auto;
 }
 
 /* Tarjetas de testimonios */
 .testimonial-card {
   background: var(--white);
   border-radius: 12px;
   padding: 30px;
   margin-bottom: 30px;
   box-shadow: var(--card-shadow);
   position: relative;
   overflow: hidden;
   transition: var(--transition);
   transform: translateY(0);
 }
 
 .testimonial-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }
 
 /* Efecto de comillas */
 .quote-icon {
   position: absolute;
   top: 15px;
   right: 15px;
   font-size: 60px;
   color: rgba(0, 91, 170, 0.1);
   z-index: 1;
 }
 
 /* Contenido del testimonio */
 .testimonial-content {
   position: relative;
   z-index: 2;
 }
 
 .testimonial-text {
   color: var(--text-color);
   font-style: italic;
   line-height: 1.6;
   margin-bottom: 20px;
   font-size: clamp(0.95rem, 1.5vw, 1.1rem);
 }
 
 /* Logo de la empresa cliente */
 .client-logo {
   max-width: 100px;
   margin-bottom: 15px;
 }
 
 .client-logo img {
   max-width: 100%;
   height: auto;
   transition: var(--transition);
 }
 
 .testimonial-card:hover .client-logo img {
   transform: scale(1.05);
 }
 
 /* Información del cliente */
 .client-info {
   display: flex;
   flex-direction: column;
   margin-top: 15px;
   padding-top: 15px;
   border-top: 1px solid rgba(0, 0, 0, 0.1);
 }
 
 .client-name {
   font-weight: bold;
   color: var(--primary-color);
   font-size: clamp(1rem, 1.5vw, 1.1rem);
 }
 
 .client-position {
   color: var(--text-light);
   font-size: clamp(0.8rem, 1vw, 0.9rem);
   margin-top: 5px;
 }
 
 /* Contenedor de la cuadrícula responsiva */
 .testimonials-grid {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   gap: 30px;
 }
 
 /* Media queries para distintos tamaños de pantalla */
 @media (min-width: 768px) {
   .testimonials-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }
 
 @media (min-width: 1024px) {
   .testimonials-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }
 
 /* Para pantallas muy pequeñas */
 @media (max-width: 480px) {
   .testimonials-container {
     padding: 60px 15px;
   }
   
   .testimonial-card {
     padding: 20px;
   }
 }
 
 /* Animaciones */
 @keyframes fadeInDown {
   from {
     opacity: 0;
     transform: translateY(-20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 /* Animación de entrada para las tarjetas */
 .testimonial-card {
   opacity: 0;
   animation: fadeInUp 0.8s ease-out forwards;
 }
 
 .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
 .testimonial-card:nth-child(2) { animation-delay: 0.3s; }
 .testimonial-card:nth-child(3) { animation-delay: 0.5s; }
 
 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }