.about-sns {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.left-imagens {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url('../content/nosotros/portadans.png') no-repeat center center;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.right-sectionns {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
  z-index: 1;
}

.content-wrapperns {
  position: relative;
  z-index: 3;
  width: 50%;
  margin-left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.titlens {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 3px;
}

/* Triángulos decorativos */
.triangle-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 0 0 120px;
  border-color: transparent transparent transparent #03a53a;
  z-index: 2;
}

.triangle-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100px 60px 0;
  border-color: #03a53a transparent transparent transparent;
  z-index: 2;
}

.triangle-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 70px 90px;
  border-color: transparent transparent #03a53a transparent;
  z-index: 2;
}

.triangle-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 80px 0 0;
  border-color: transparent #03a53a transparent transparent;
  z-index: 2;
}

/* Triángulos adicionales más pequeños */
.small-triangle-1 {
  position: absolute;
  top: 40px;
  left: 150px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 35px 0 0;
  border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
  z-index: 2;
}

.small-triangle-2 {
  position: absolute;
  bottom: 30px;
  right: 120px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 40px;
  border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
  z-index: 2;
}

/* Responsivo */
@media (max-width: 768px) {
  .about-sns {
    height: 180px;
  }

  .left-imagens,
  .right-sectionns {
    width: 100%;
  }

  .content-wrapperns {
    width: 100%;
    margin-left: 0;
  }

  .titlens {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .triangle-top-left {
    border-width: 60px 0 0 80px;
  }

  .triangle-top-right {
    border-width: 0 70px 40px 0;
  }

  .triangle-bottom-left {
    border-width: 0 0 50px 60px;
  }

  .triangle-bottom-right {
    border-width: 35px 60px 0 0;
  }
}

@media (max-width: 480px) {
  .about-sns {
    height: 150px;
  }

  .left-imagens,
  .right-sectionns {
    width: 100%;
  }

  .content-wrapperns {
    width: 100%;
    margin-left: 0;
  }

  .titlens {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
}


.qsomos-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 70vh;
  background: #F1F3F5;
  padding: 40px 20px;
}

.qsomos-title {
  color: #333;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  line-height: 34px;
}

.qsomos-title::after {
  content: '▶';
  color: #03a53a;
  margin-left: 15px;
  font-size: 2.5rem;
}

.qsomos-description {
  color: #333;
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 40px;
  text-align: justify;
  font-weight: 400;
}

.qs {
  color: #333;
}

.trucks-imageqs {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@media (max-width: 991px) {
  .flota-container {
    max-width: 100%;
    gap: 40px;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .flota-container {
    padding: 20px;
  }

  .qsomos-container {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .flota-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

/* Calidad */

.delivery-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 50px 20px;
  position: relative;
}

.delivery-container {
  position: relative;
  width: 600px;
  height: 600px;
}

/* Círculo central con la imagen */
.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.delivery-person {
  width: 370px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
}

/* Círculo exterior decorativo */
.outer-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 2px solid #03a53a;
  border-radius: 50%;
  z-index: 1;
}

/* Características posicionadas alrededor */
.feature {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  flex-direction: row-reverse;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #03a53a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
}

.feature-text {
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 200px;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Posicionamiento específico de cada característica */
.feature-1 {
  top: 20px;
  left: -70px;
}

.feature-1 .feature-text {
  margin-left: 5px;
}

.feature-2 {
  top: 38px;
  right: -70px;
}

.feature-2 {
  flex-direction: row;
}

.feature-2 .feature-text {
  margin-right: 15px;
  text-align: right;
}

.feature-3 {
  bottom: 32px;
  left: -70px;
}

.feature-3 .feature-text {
  margin-left: 15px;
}

.feature-4 {
  bottom: 20px;
  right: -70px;
}

.feature-4 {
  flex-direction: row;
}

.feature-4 .feature-text {
  margin-right: 15px;
  text-align: right;
}

/* Líneas conectoras */
.connector-line {
  position: absolute;
  background-color: #03a53a;
  z-index: 1;
}

.line-1 {
  top: 45px;
  left: 70px;
  width: 120px;
  height: 2px;
  transform: rotate(25deg);
  transform-origin: left center;
}

.line-2 {
  top: 45px;
  right: 70px;
  width: 120px;
  height: 2px;
  transform: rotate(-25deg);
  transform-origin: right center;
}

.line-3 {
  bottom: 45px;
  left: 70px;
  width: 120px;
  height: 2px;
  transform: rotate(-25deg);
  transform-origin: left center;
}

.line-4 {
  bottom: 45px;
  right: 70px;
  width: 120px;
  height: 2px;
  transform: rotate(25deg);
  transform-origin: right center;
}

@media (max-width: 768px) {
  
  .section-nav{
    display: flex;
    flex-direction: row;
  }

}

/* Media queries para dispositivos móviles */
@media (max-width: 768px) {
  .section-nav {
    display: flex;
    flex-direction: row;
  }
  
  .delivery-section {
    padding: 30px 15px;
    min-height: auto;
    flex-direction: column;
  }
  
  .section-description {
    width: 100% !important;
    max-width: 350px;
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .delivery-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  /* Círculo central más pequeño */
  .center-circle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
  }
  
  .delivery-person {
    width: 260px;
    height: 270px;
  }
  
  /* Ocultar círculo exterior en móvil */
  .outer-circle {
    display: none;
  }
  
  /* Reorganizar características en columna */
  .feature {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    flex-direction: row;
    margin-bottom: 25px;
    width: 100%;
    max-width: 320px;
    justify-content: flex-start;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .feature-text {
    max-width: none;
    width: 100%;
    text-align: left;
    font-size: 13px;
    padding: 8px 12px;
    margin: 0;
  }
  
  /* Resetear estilos específicos de cada feature */
  .feature-1,
  .feature-2,
  .feature-3,
  .feature-4 {
    flex-direction: row;
  }
  
  .feature-1 .feature-text,
  .feature-2 .feature-text,
  .feature-3 .feature-text,
  .feature-4 .feature-text {
    margin: 0;
    text-align: left;
  }
  
  /* Ocultar líneas conectoras en móvil */
  .connector-line,
  .line-1,
  .line-2,
  .line-3,
  .line-4 {
    display: none;
  }
}

/* Media query para pantallas muy pequeñas */
@media (max-width: 480px) {
  .delivery-section {
    padding: 20px 10px;
  }
  
  .center-circle {
    width: 240px;
    height: 240px;
  }
  
  .delivery-person {
    width: 220px;
    height: 230px;
  }
  
  .feature {
    max-width: 280px;
  }
  
  .feature-text {
    font-size: 12px;
  }
}

/* Mision, Vision */

.vision-mission-section {
  background-color: #03a53a;
  color: white;
  padding: 80px 20px;
}

.containervm {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.column {
  text-align: left;
  padding: 20px;
}

.column h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.arrow-icon {
  display: flex;
  gap: 5px;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 8px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.column p {
  font-size: 13px;
  line-height: 21px;
  font-weight: 400;
  color: white;
  opacity: 0.95;
}

@media (max-width: 968px) {
  .containervm {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .column h2 {
    font-size: 26px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 60px 20px;
  }

  .containervm {
    gap: 35px;
  }

  .column h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .column p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .vision-mission-section {
    padding: 50px 15px;
  }

  .column h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .column p {
    font-size: 12px;
  }
}