@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff4081;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #7ed958;
    padding: 40px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    background: #7ed958;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    font-size: 18px;
    padding: 10px 15px;
    color: #f2309c;
    display: block;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar ul li a:hover {
    background-color: #ff4081;
    color: #fff;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    color: #f2309c;
    text-transform: uppercase;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 60px;
    padding: 20px;
    text-align: center;
}

.header-txt {
    width: 50%;
}

.header-txt h1 {
    line-height: 1.2;
    color: #0e0701;
    text-transform: uppercase;
    font-size: 48px;
    margin-bottom: 15px;
}

.header-txt p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.header-img {
    width: 40%;
}

.header-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-1 {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f655e0;
    color: #fff;
    border-radius: 15px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-1:hover {
    background-color: #ff4081;
}

.barra1 {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.barra1-img {
    width: 50%;
}

.barra1-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.barra1-txt {
    width: 50%;
}

.barra1-txt h2 {
    color: #0e0701;
    font-size: 48px;
    margin-bottom: 15px;
}

.barra1-txt p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}