:root{
    --white:#ffffff;
    --black:#111111;
    --shadow:0 4px 20px rgba(0,0,0,.18);
}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

.container{
    width:min(92%, 1600px);
    margin:auto;
}



/* ======================
   HERO
====================== */

.hero{
    position:relative;
    height:494px;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(255,255,255,.08),
        rgba(0,0,0,.12)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    width:100%;
    height:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:0 20px;
}

.hero h1{
   
color: #FFF;
text-align: center;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
/* T1-50 */
font-family: Kufam;
font-size: 50px;
font-style: normal;
font-weight: 900;
line-height: normal;
text-transform: uppercase;
}

/* ======================
   MOBILE
====================== */

.menu-toggle{
    display:none;
}

@media (max-width: 992px){

    .hero{
        height:650px;
    }

    .hero h1{
        font-size:42px;
    }

    .menu-toggle{
        display:flex;
        flex-direction:column;
        gap:5px;

        position:absolute;
        right:20px;

        border:none;
        background:none;
        cursor:pointer;
        z-index:200;
    }

    .menu-toggle span{
        width:28px;
        height:3px;
        background:#000;
    }

    .menu{
        position:fixed;
        top:0;
        right:-100%;

        width:300px;
        height:100vh;

        background:white;

        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:35px;

        transition:.35s ease;
    }

    .menu.active{
        right:0;
    }

    .logo{
        left:20px;
        transform:none;
    }

    .logo img{
        width:90px;
    }
}

@media (max-width:768px){

    .hero h1{
        font-size:32px;
        line-height:1.15;
    }

    .hero{
        height:580px;
    }
}




/*  .about */

.about{
    background:#ececec;
    padding:140px 0 120px;
    display: flex;  
    justify-content: center;
      
}

.about-container{
    display:flex;
    gap:60px;

    align-items:center;
}

.about-brand{
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.about-logo{
    width:330px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 750px;    
}
.about-content h2{
    line-height:1;
color: var(--10, #00B8F3);
text-align: center;
font-family: var(--primaria, Kufam);
font-size: 40px;
font-style: normal;
font-weight: 900;
}

.about-intro{
color: var(--4, #003854);
font-family: Kufam;
font-size: 25px;
font-style: normal;
font-weight: 500;
line-height: normal;    
}

.about-points{
    margin-bottom:25px;
}

.point{
    display:flex;
    align-items:flex-start;
    gap:18px;

    margin-bottom:22px;
}

.icon{
    width:24px;
    flex-shrink:0;

    color:#0d3e5c;
    font-size:18px;
    margin-top:5px;
}

.point p{
color: var(--4, #003854);
font-family: Kufam;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */    
}

.divider{
    height:2px;
    background:#57b8e7;
    margin:30px 0;
}

.about-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.about-gallery img{
    width:100%;
    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:12px;
    display:block;
}


@media (max-width: 992px){

    .about{
        padding:80px 0;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-brand{
        justify-content:center;
    }

    .about-logo{
        width:220px;
    }

    .about-content h2{
        text-align:center;
        font-size:42px;
    }

    .about-intro{
        font-size:20px;
    }

    .point p{
        font-size:16px;
    }

    .about-gallery{
        grid-template-columns:1fr;
    }
}


/* .experience */

.experience{
    background:
    linear-gradient(
        180deg,
        #22b7ea 0%,
        #0f8fcb 55%,
        #0a82bd 100%
    );

    color:#fff;

    padding-top:85px;
    padding-bottom:95px;
}

.experience-container{
    max-width:1200px;
    margin:auto;
    
	display: flex;
	width: 1330px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 60px;    
}

.experience-title{
	color: var(--12, #EEEEF0);
	text-align: center;
	font-family: Kufam;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px; /* 100% */
	text-transform: uppercase;
}

.experience-copy{
    margin:0px auto;
	display: flex;
	max-width: 800px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	align-self: stretch;    
}

.experience-copy p{
	color: var(--Color, #EEEEF0);
	font-family: Kufam;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.experience-copy p:last-child{
    margin-bottom:0;
}

.experience-features{
    display:flex;
    justify-content:center;
    gap:30px;
}

.feature{
    display:flex;
    align-items:center;
    gap:28px;
}

.feature img{
    width:100px;
}

.feature p{
	color: var(--12, #EEEEF0);

	font-family: Kufam;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px; /* 100% */    
}





/* .team */

.team{
    background:#c6e7f4;
    padding:90px 0 120px;
}

.team-container{
    width:min(1250px,90%);
    margin:auto;

    display:grid;
    grid-template-columns: 52% 48%;
    gap:60px;

    align-items:start;
}
.team-main-photo{
    width:100%;
}

.team-main-photo img{
    width:100%;
    display:block;
}
.team-title{


    margin-bottom:5px;
    
    
	color: var(--10, #00B8F3);
	text-align: center;
	font-family: var(--primaria, Kufam);
	font-size: 60px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;    
}

.team-title span{
    display:block;
}
.team-subtitle{
	margin-bottom:18px;
	color: var(--4, #003854);
	text-align: center;
	font-family: Kufam;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: 23px; /* 92% */
	text-transform: uppercase;    
}
.team-collage{

    position:relative;

    width:100%;
    height:520px;

    margin-bottom:35px;
}
.collage-top{

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:82%;

    border:10px solid #fff;

    box-shadow:
    0 12px 30px rgba(0,0,0,.15);
}
.collage-left{

    position:absolute;

    bottom:30px;
    left:10px;

    width:48%;

    border:10px solid white;

    transform:rotate(-5deg);

    box-shadow:
    0 12px 30px rgba(0,0,0,.15);
}
.collage-right{

    position:absolute;

    bottom:20px;
    right:5px;

    width:48%;

    border:10px solid white;

    transform:rotate(6deg);

    box-shadow:
    0 12px 30px rgba(0,0,0,.15);
}
.team-description{
	color: var(--Color-2, #003854);
	text-shadow: 1px 4px 64px rgba(0, 0, 0, 0.25);
	font-family: Kufam;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px; /* 100% */    
}
@media (max-width: 992px){

    .team{
        padding:70px 0;
    }

    .team-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .team-title{
        font-size:54px;
    }

    .team-subtitle{
        font-size:18px;
    }

    .team-collage{
        height:420px;
    }

    .team-description{
        font-size:18px;
        max-width:100%;
    }

}