
:root {
    --primary-color: #0a4d8c;
    --secondary-color: #1976d2;
    --accent-color: #64b5f6;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}
h1, h2, h3{
color: #244563;
font-family: "Poppins", serif;
  
}
body {
    margin: 0;
    padding: 0;
  }
  


p, a , li{
    font-family: "Open Sans", sans-serif;
color: #1c3147;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.logo-instagram , .logo-whatsapp{
margin-left: 20px;
padding-right: 20px;

}
a {
  text-decoration: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}


.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    font-family: 'Monserrat', sans-serif;
    line-height: 1.6;
    
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo-container {
    display: flex;
position: relative;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo {
    height: 110px;
    width: auto;
    
}

.nav-list {
    display: flex;
    list-style: none;
  
}

.nav-item {
    margin-left: 30px;
    padding-inline: 10px;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    position: relative;
}
@media (max-width: 768px) {
    .logo-container.ocultar-logo {
      opacity: 0;
    }
}
.hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-10px);
}

.hamburger::after {
    transform: translateY(10px);
}


.menu-open .hamburger {
    background-color: transparent;
}

.menu-open .hamburger::before {
    transform: rotate(45deg);
}

.menu-open .hamburger::after {
    transform: rotate(-45deg);
}

.seccion1 { 
    background-image: url(img/imagen-inicio2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    color: var(--white);
    position: relative;
    
    height: 500px;
    
    
    display: flex;
    align-items: center;
}

.container2 {
    text-align: left;
    width: 100%;
    padding: 0 90px; 
margin-top: 50px;
}

.seccion1 h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.seccion1 p {
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 600;
    margin-top: 10px;
}

.textos {
    position: relative;
margin-bottom: 25px;
margin-left: -1rem;
}



@media screen and (max-width: 768px) {
    .seccion1 {
        height: 500px;
        background-position: center right; 
    }
    
    .seccion1 h1 {
        font-size: 2.5rem; 
    }
    
    .seccion1 p {
        font-size: 1.1rem;
        max-width: 500px;
    }
}


@media screen and (max-width: 480px) {
    .seccion1 {
        height: 500px; 
        background-position: 25% center; 
        padding: 20px 0; 
    }
    
    .seccion1 h1 {
        font-size: 2rem; 
    }
    
    .seccion1 p {
        font-size: 1rem;
        max-width: 100%; 
    }
    
    .container2 {
        padding: 0 30px;
    }
}


@media screen and (max-width: 320px) {
    .seccion1 {
        height: 600px;
    }
    
    .seccion1 h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .nav-item {
        margin-left: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    
    .header .container {
        height: 70px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
     
        height: 100vh;
        background-color: var(--white);
        box-shadow: -8px 0 15px rgba(0, 0, 0, 0.1);
        
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding-top: 80px;
 
    }
    
    .menu-open .nav {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        width: 95%;        
        margin: 0 auto;    
    }
    
    .nav-item {
        margin: 0 0 20px 0;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
  .nav-link::after{
    display: none;
  }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .menu-open .overlay {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    
    .header .container {
        height: 60px;
    }
    
    .logo {
        height: 60px;
    }
    
    .nav {
        width: 80%;
    }
    
    .seccion1 {
        padding: 100px 0 50px;
    }
    
    .seccion1 h1 {
        font-size: 2rem;
    }
    
    .seccion1 p {
        font-size: 1rem;
    }
}


.button {
    margin-top: -10px;
    margin-left: -1rem;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: rgb(10, 77, 122);
    border-radius: 9999px;
    display: flex;
    font-family: "Poppins", serif;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  


  .iso-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    width: 100%; 
    padding: 0 15px; 
    font-size: 20px;
    box-sizing: border-box; 
  }



.seccion-iso{
height: 600px;
position: relative;
background-color: #ffffff;
height: 1000px;
width: 100%;
display: flex; 
flex-direction: column; 
align-items: center; 

}

.contenedor-imageniso{
    margin-top: 60px;
}

.contenedor-imageniso img{
    width: 350px;
}


.contenedor-iso{
    padding: 20px 90px ;
    margin: auto;
    justify-content: center;
    text-align: justify;
}
@media screen and (max-width: 600px) {
    .contenedor-iconos{
        display: flex;
        align-items: center;
      justify-content: center; 
      flex-wrap: wrap; 

    }
    .contenedor-imageniso{
        margin-top: 35px;
    }
    .contenedor-iso {
      padding: 30px 15px; 
      text-align: justify;
      text-justify: inter-word; 
    }
 
 
}

.solo-pc {
    display: none; 
  text-align: center;
  font-size: 14px;
  color: #777;
  justify-content: center;
  font-weight: 600;
  }
  

  @media screen and (max-width: 768px) {
    .seccion-iso{
      height: 1300px;
    }
    .solo-pc {
      display: block;
      margin-top: 30px;
    }
  
  }
.solo-movil{
    display: none;
    font-size: 25px;
    
}

@media screen and (max-width: 768px) {
    .solo-movil {
      display: block;
      margin-top: -40px;
    
    }
   
    .textos{
        margin-top: -100px;
    }
    .button{
        margin-top: 2px;
    }
  }

  .seccion-curso{
    height: 300px;
    margin-top: 250px;
    background-image: url(img/salon.jpg);
    position: relative;
    background-position: center center;
    align-items: center;
    background-size: cover;
background-repeat: no-repeat;

  }
.seccion-curso::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}
  .texto-curso{
    display: flex;
    margin-top: 200px;
    text-align: center;
    justify-content: center;
    height: 200px;
    align-items: center;
     position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  }

.descripcion-curso{
   position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}
.botton2{
   position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.texto-curso h2{
    font-size: 35px;
 color: #fffdfd;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}
  .descripcion-curso{
display: flex;
text-align: center;
justify-content: center;
margin-top: -70px;

 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }

  .descripcion-curso p{
    font-weight: 600;
    padding: 0 10px;
    color: #fffdff;
  }

  
.botton2 {
    padding: 12.5px 30px;
    border: 0;
    border-radius: 100px;
    background-color: #32557a;
    color: #fffdff;
    font-weight: Bold;
    font-family: "Poppins", serif;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    font-size: 15px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 1);
    margin-top: 20px;
  }
  
  .botton2:hover {
    background-color: #6fc5ff;
    box-shadow: 0 0 20px #6fc5ff50;
    transform: scale(1.1);
  }
  
  .botton2:active {
    background-color: #3d94cf;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
    transform: scale(0.98);
  }

  .contenedor-boton{
    text-align: center;
  }
.icono-movil{
    display: none;

}
#iconos{
    display: none;
}
  @media screen and (max-width: 768px) {
    #iconos{
        display: inline;
    }

    .descripcion-curso{
        margin-top: -45px;
    }
    .nav-list .nav-item {
      margin-bottom: 20px; 
    }
    
    .nav-list .nav-link {
      display: block;
      padding: 12px 15px; 
      font-size: 18px; 
    }
    
  
    .nav-list .nav-item:not(:last-child) {
      border-bottom: 1px solid rgba(42, 71, 101, 0.3); 
      padding-bottom: 10px;
    }
    


.header-movil {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    margin-top: -20px; 
    padding-bottom: 8px;
    border-bottom: 1px solid #2a4765;
    text-align: center;
    padding: 0 5px 5px 5px;
    width: 90%;     
    margin: 0 auto;  
}
  
  .icono-movil {
margin-top: -60px;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icono-movil img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
  
  
  .solo-movil {
    margin: 0;
    font-size: 17px;
    color: #2a4765;
    text-align: center;
    padding: 4px;
  }
  
  
  .nav-list {
    padding: 0;
    list-style: none;
  }
  
  .nav-item {
    margin-bottom:18px;
   padding: 20px 12px;
   
  }
  
  .contenedor-iconos {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 15px;
  }
  }


  .beneficios-panamaoceanic{
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
   
  }
  .benefits-section {
    padding: 120px 20px;
    background-color: #fffdfd;
    color: #333;
    
  }
  
  .benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
  }
  
  .benefits-title {
    text-align: center;
    color: #2a4765;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .benefits-subtitle {
    text-align: center;
    color: #555;
    font-size: 17px;
    margin-bottom: 40px;
    font-weight: 400;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    margin-bottom: 50px;
    
  }
  
  
  .benefit-item {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .benefit-icon {
    font-size: 40px;
    color: #2a4765;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .benefit-heading {
    font-size: 20px;
    font-weight: 600;
    color: #2a4765;
    margin-bottom: 15px;
  }
  
  .benefit-text {
    color: #666;
    line-height: 1.6;
  }
  
  .benefits-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .benefits-button {
    display: inline-block;
    background-color: #2a4765;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: "Poppins", serif;
    transition: background-color 0.3s ease;
  }
  
  .benefits-button:hover {
    background-color: #1e3550;
  }
  

  @media (max-width: 992px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .benefits-section {
      padding: 40px 15px;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .benefits-title {
      font-size: 28px;
    }
    
    .benefits-subtitle {
      font-size: 16px;
      margin-bottom: 30px;
    }
   
  }

  :root {
    --primary-blue: #0a4d68;
    --secondary-blue: #088395;
    --accent-blue: #05bfdb;
    --light-blue: #e0f7fa;
    --dark-text: #333333;
    --light-text: #ffffff;
}




.footer {
    background-color: #fffdff;
    padding: 0;
    position: relative;
}

.footer-wave {
    width: 100%;
    height: 50px;
    margin-bottom: -5px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 80px 5%;
    box-shadow: 0 -10px 20px -10px rgba(0, 0, 0, 0.2);
  background-color: #1c3147;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    
}

.footer-logo img {
    width: auto;
    height: 90px;
    margin-right: 10px;
}


.footer-logo h2 {
    font-size: 1.5rem;
    color: var(--light-text);
}

.footer-section h3 {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fffdfd;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-blue);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #fffdfd;
}

.contact-info i {
    margin-right: 10px;
    color: #dddddd;
    width: 20px;
    text-align: center;
}

.socials {
    margin-top: 20px;
}

.socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
   background-color: #088395;
    color: var(--light-text);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.socials a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.links ul {
    list-style: none;
}

.links li {
    margin-bottom: 10px;
}

.links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.links a i {
    margin-right: 10px;
    color: var(--accent-blue);
    font-size: 0.8rem;
}

.links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    outline: none;
}

.newsletter button {
    padding: 12px;
    background-color: var(--accent-blue);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: var(--secondary-blue);
}

.footer-bottom {
    background-color: #fff9;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-blue);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--accent-blue);
}


.seccion-infraestructura {
  position: relative;
  min-height: 500px;
  padding: 140px 20px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  
}

.seccion-infraestructura::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#2c3e50 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.06;
  z-index: -1;
}


.seccion-infraestructura .top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #004d9f3a;
  z-index: 1;
}


.seccion-infraestructura .diagonal-band {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 1000px;
  background-color: #3498db;
  transform: rotate(45deg);
  opacity: 0.18;
  z-index: -1;
}


.seccion-infraestructura .hexagon-grid {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5.27L52.19 18.14V43.86L30 56.73L7.81 43.86V18.14L30 5.27Z' stroke='%23000' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.25;
  z-index: -1;
}


.seccion-infraestructura .circle-1 {
  position: absolute;
  top: 50px;
  right: 100px;
  width: 180px;
  height: 180px;
  border: 3px solid rgba(52, 152, 219, 0.18);
  border-radius: 50%;
  z-index: -1;
}

.seccion-infraestructura .circle-2 {
  position: absolute;
  top: 30px;
  right: 80px;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(52, 152, 219, 0.14);
  border-radius: 50%;
  z-index: -1;
}

.seccion-infraestructura .square {
  position: absolute;
  bottom: 50px;
  left: 120px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(44, 62, 80, 0.15);
  transform: rotate(45deg);
  z-index: -1;
}

.seccion-infraestructura .triangle {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(52, 152, 219, 0.12);
  z-index: -1;
}


.seccion-infraestructura .corner-lines {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
  z-index: -1;
}

.seccion-infraestructura .corner-lines::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 45%, #3498db 45%, #3498db 55%, transparent 55%),
    linear-gradient(45deg, transparent 65%, #3498db 65%, #3498db 75%, transparent 75%);
  background-size: 20px 20px;
  opacity: 0.1;
}

section {
  border: none;
}

.titulo-infraestructura {
  background-color: white;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-left: 5px solid #1a4b6e;
}

.titulo-infraestructura::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(26, 75, 110, 0.05) 0%, rgba(26, 75, 110, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.titulo-infraestructura h2 {
  color: #1a4b6e;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.titulo-infraestructura h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #1a4b6e;
}

.titulo-infraestructura p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}

.infraestructura-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infraestructura-lista li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.infraestructura-lista li:hover {
  background-color: #f0f4f8;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.infraestructura-lista .icon {
  color: #1a4b6e;
  margin-right: 15px;
  font-size: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.infraestructura-lista li span:not(.icon) {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}


@media (max-width: 768px) {
  
  .seccion-infraestructura {
    padding: 40px 15px;
  }
  
  .titulo-infraestructura {
    padding: 30px 20px;
  }
  
  .titulo-infraestructura h2 {
    font-size: 28px;
  }
  
  .titulo-infraestructura p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .seccion-infraestructura {
    padding: 30px 15px;
  }
  
  .titulo-infraestructura {
    padding: 25px 15px;
  }
  
  .titulo-infraestructura h2 {
    font-size: 24px;
    
  }
  
  .infraestructura-lista li {
    padding: 12px 10px;
  }
}

.contenedor-reconocimiento{
display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;

}


.contenedor-imagenpanama{
   display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; 
    margin-top: -20px;
}
.contenedor-imagenpanama img{
  width: 280px;
}

.contenedor-descripcionpanama{
  margin-top: 50px;
}

   .gallery-full {
            padding: 10rem 0;
         background-color: #006cbe32;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-full::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 120L0 16.48V0h1200v120z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .gallery-full::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 0L0 103.52V120h1200V0z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .gallery-heading {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .gallery-heading h2 {
            color: #244563;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .gallery-heading h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }
        
        .gallery-heading p {
            max-width: 700px;
            margin: 0 auto;
            color: #566573;
            font-size: 1.2rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .gallery-box {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(10, 76, 138, 0.15);
            transition: all 0.4s ease;
            height: 320px;
        }
        
        .gallery-box:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(10, 76, 138, 0.25);
        }
        
        .gallery-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
        }
        
        .gallery-box:hover img {
            transform: scale(1.08);
        }
        
        .gallery-box-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            background: linear-gradient(0deg, rgba(0, 32, 63, 0.9) 0%, rgba(0, 32, 63, 0) 100%);
            color: white;
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
        }
        
        .gallery-box:hover .gallery-box-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-box-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ffffff;
        }
        
        .gallery-box-text {
            font-size: 0.95rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10, 76, 138, 0.4) 0%, rgba(0, 174, 239, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .gallery-box:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
        }
        
        .gallery-box:hover .gallery-icon {
            transform: scale(1);
        }
        
        .gallery-box:nth-child(1) { grid-column: span 1; grid-row: span 1; }
        .gallery-box:nth-child(2) { grid-column: span 1; grid-row: span 1; }
        .gallery-box:nth-child(3) { grid-column: span 1; grid-row: span 1; }
        .gallery-box:nth-child(4) { grid-column: span 1; grid-row: span 1; }
        .gallery-box:nth-child(5) { grid-column: span 1; grid-row: span 1; }
        .gallery-box:nth-child(6) { grid-column: span 1; grid-row: span 1; }
        
        .gallery-cta {
            text-align: center;
            margin-top: 3rem;
        }
        
        .gallery-btn {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            display: inline-block;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
        }
        
        .gallery-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 174, 239, 0.4);
        }
        
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .gallery-heading h2 {
                font-size: 2rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .gallery-box {
                height: 280px;
            }
        }

        @media (max-width: 768px) {
    .gallery-box-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
   
    }

    .gallery-box:hover .gallery-box-content {
        
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}
