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

body {
    min-height: 100vh;
    background-color: #003366 ;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #f4f4f4; /* Reemplaza con el color que desees */
    z-index: -1;
}
main{
        flex-grow: 1; /* Hace que el main ocupe el espacio restante */
        padding-top: 80px; /* Para evitar que el contenido del main esté debajo del header fijo */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: transparent;   
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header .logo img {
    max-height: 55px; /* Ajusta este valor según el tamaño que desees */
    width: auto;
}

.navbar a {
    position: relative;
    font-size: 16px;
    color: #140d0d;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}



.container {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto auto auto;
    
}

/* SECTIONS */

section {
    padding-top: 4vh;
    height: 96vh;
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
  }
  
  .section-container {
    display: flex;
  }
  
  .section__pic-container img{
    border-radius: 150px;
  }


/* PROFLE SECITON */
#profile {
    display: flex;
    justify-content: center;
    gap: 5rem;
    height: 80vh;
  }
  
.section__pic-container {
    display: flex;
    height: 300px;
    width: 500px;
    margin: auto 0;
}
  
.section__text {
    align-self: center;
    text-align: center;
}
  
.section__text p {
    color: #f4f4f4;
    font-weight: 600;
}
  
.section__text__p1 {
    text-align: center;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18.33px;
}
  
.section__text__p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: "Poppins", serif;
    font-weight: 400;
}
  
.title {
    color: white;
    font-size: 51px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
  
 /* botones */

.btn-container {
    display: flex;
    justify-content: center;
    gap:unset 1rem;
}

.btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding:  1rem;
    width: 8rem;
    border-radius: 2rem;
}
.btn-color-1, .btn-color-2 {
    border: #f4f4f4 0.1rem solid;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;

}
.btn-color-1:hover, .btn-color-2:hover {
    cursor: pointer;
}
    
.btn-color-1, .btn-color-2:hover {
    background: #f4f4f4;

}

.btn-color-1:hover{
    background: #f4f4f4;
}

.btn-color-1{
    background: none;
}
.btn-color-2{
    background: none;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.btn-color-2:hover{
    border: rgb(255,255,255) 0.1rem solid;
}

.btn-container{
    gap: 1rem;
}


/* Sección izquierda (imagen) */
.container_about_me {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f4f4f4;
    position: relative;
}

/* Sección izquierda */
.left-section {
    width: 450px;
    height: auto; 
    background-color: #003366;
    padding: 20px;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.2);
    overflow: visible;
    position: relative;
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: auto;
    height: 100%; 
    max-width: 100%; 
    object-fit: contain; 
    border-radius: 5px;
}


/* Sección derecha (texto) */
.right-section {
    max-width: 600px;
    margin-left: 30px;
    position: relative;
    padding: 20px;
}

.who-am-i span {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-style: normal;
}

.right-section h1 {
    font-size: 48px;
    color: #003366; /* Color amarillo */
    margin-bottom: 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    font-style: normal;
}

.right-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-top: 20px;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-style: normal;
}

/* Estilos para las líneas decorativas */
.container_about_me::before, .container_about_me::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 5px;
    background-color: #003366; /* Línea verde */
    border-radius: 5px;
}

.container_about_me::before {
    top: 10%;
    left: -100px;
    transform: rotate(30deg);
}

.container_about_me::after {
    bottom: 15%;
    right: -100px;
    transform: rotate(-30deg);
}

.Gallery-container {
    border-top: 1px solid#0d0f11;
    text-align: left; 
    padding: 20px;
    background-color: #f4f4f4;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    
}
.Gallery-container h1{
    margin-left: 50px;
    font-size: 36px;
    font-weight: 600;
    color: #003366;
}
.Gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    padding: 20px;
}

.imgbox {
    width: 180px;
    height: 400px;
    margin: 20px;
    border-radius: 50px;
    box-shadow: 10px 4px 100px #0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, margin 0.3s ease;
    position: relative;
    z-index: 0;
}

.imgbox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.imgbox:hover {
    transform: scale(1.2); 
    transition: ease 300ms;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-left: 100px; 
    margin-right: 100px; 
    z-index: 10; 
    cursor: pointer;
}

/* VISION Y MISION EMPRESA */

    .section_mission {
    border-top: 1px solid #0a141d;
    }

    .section_mission, .section_vision {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
        background-color: #f4f4f4;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }


    .section_mission_img, .image {
        width: 30%; 
        height: auto;
        object-fit: cover; 
    }

    .section_mission_content, .section_content {
        width: 45%; }

    h2 {
        font-size: 36px;
        margin-bottom: 20px;
        font-family: "Poppins", serif;
        font-weight: 600;
        font-style: normal;
        color: #003366;
        
    }

    p {
        font-size: 16px;
        line-height: 1.5;
        color: #555;
        font-family: "Poppins", serif;
        font-weight: 500;
        font-style: normal;
        
    }

    .section_mission {
        
        flex-direction: row; 
    }


    .section_vision {
        flex-direction:row; 
    }























































footer {
    width: 100%;
    background: #003366;
}

.footer-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr) ;
    grid-gap: 50px;
    padding: 45px 0px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.footer-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-1 .box figure img{
width: 340px; 
}

.footer-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.footer-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-size: 12,36px;
    font-style: normal;

}

.footer-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    transition: all .3s ease;
}

.footer-1 .red-social a:hover{
    color: aqua;
}

@media screen and (max-width:800px){
    .footer-1{
        width: 90%;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }
}

.redes-sociales img {
    width: 50px;
    height: 50px;
}
.redes-sociales a{
    color:white;
    text-decoration: none;
}