@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #2C3E50;
}

.header {
    background-color: #00B21D;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


.menu{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    color: #ffffff;
    font-size: 25px;
    text-transform: uppercase;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: black;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover {
    color: white;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.texto {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    text-align: justify;
}

.texto h2 {
    color: #00B21D;
    margin-bottom: 10px;
}

.texto p, .texto ul {
    margin-bottom: 15px;
    text-align: justify;
}

.texto ul {
    padding-left: 20px;
}

.content {
    margin-top: 60px;
    padding: 20px;
}

.content, h1, h2, p{
    text-align: center;
}

.cc{
    color: #00B21D;
}

.carousel {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.footer {
    background-color: #00B21D;
    color: #fff;
    padding: 20px 0;
    margin-top: 20px;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.footer .link h3 {
    margin-bottom: 10px;
    color: #fff;
}

.footer .link ul li a {
    color: #fff;
    transition: color 0.3s;
}

.footer .link ul li a:hover {
    color: #2C3E50;
}
