*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Segoe UI",sans-serif;
    overflow-x:hidden;
    background:#f5f7ff;
    color:#222;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ff6b35;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #e85a2a;
  transform: translateY(-2px);
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    background:rgb(107, 101, 107);

    z-index:1000;

    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:28px;
    font-weight:700;
    color:#acbcd6;
}

.logo-image{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

/* NAV */

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#0b57d0;
}

/* HERO */

.hero{
    position:relative;
    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;

    opacity:0;

    transition:1.5s;
}

.hero-slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.5);

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:white;

    padding:20px;
}

.hero-content h1{
    font-size:64px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
    margin-bottom:30px;
}

.hero-content button{
    padding:15px 35px;

    border:none;
    border-radius:50px;

    background:#ff9800;
    color:black;

    font-size:18px;
    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.hero-content button:hover{
    transform:translateY(-4px);
}

/* HOME SECTION */

.home-section{
    max-width:1400px;

    margin:auto;

    padding:100px 40px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.home-content h2{
    font-size:38px;
    margin-bottom:20px;

    color:#0b1b3f;
}

.home-content p{
    line-height:1.8;
    margin-bottom:20px;
    font-size:17px;
}

.home-content-img img{
    width:100%;
    height:700px;

    object-fit:cover;

    border-radius:20px;
}

/* FOOTER */

footer{
    background:#0b1b3f;
    color:white;

    padding-top:60px;
}

.footer-divider{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;

    padding:40px;
}

.column1,
.column2,
.column3,
.column4{
    padding:10px;
}

footer h2{
    margin-bottom:20px;
}

footer p,
footer li{
    line-height:1.8;
    list-style:none;
}

footer a{
    color:white;
    text-decoration:none;
}

/* SOCIAL */

.social-sidebar{
    display:flex;
    gap:15px;

    margin-top:20px;
}

.social{
    width:45px;
    height:45px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    text-decoration:none;

    transition:0.3s;
}

.instagram{
    background:#E1306C;
}

.facebook{
    background:#1877F2;
}

.twitter{
    background:#000;
}

.linkedin{
    background:#0A66C2;
}

.social:hover{
    transform:translateY(-5px);
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    background:#25d366;
    color:white;

    padding:14px 20px;

    border-radius:50px;

    text-decoration:none;

    font-weight:bold;

    z-index:999;
}

/* COPYRIGHT */

.copyright{
    text-align:center;
    padding:20px;
}

/* MOBILE */

@media(max-width:900px){

    header{
        flex-direction:column;
        height:auto;

        padding:20px;
    }

    nav{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .home-section{
        grid-template-columns:1fr;
    }

    .home-content-img img{
        height:400px;
    }

    .footer-divider{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-sidebar{
        justify-content:center;
    }
}