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

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.5;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.content-wrapper {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col {
    text-align: center;
}

.footer-email {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 36px;
    color: #0077B6;
    transition: transform 0.3s, color 0.3s;
}

.logo-icon:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.logo-text {
    font-weight: bold;
    font-size: 1.3rem;
    color: #0077B6;
}

nav ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0077B6;
}

.active-link {
    color: #0077B6;
    border-bottom: 2px solid #0077B6;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon i {
    font-size: 36px;
    width: 36px;
    text-align: center;
    line-height: 1;
    transition: transform 0.3s, color 0.3s;
    cursor: pointer;
}

.social-icon.whatsapp i {
    color: #25D366;
}

.social-icon.email i {
    color: #FF9800;
}

.social-icon.instagram i {
    color: #E4405F;
}

.social-icon.facebook i {
    color: #1877F2;
}

.social-icon.youtube i {
    color: #FF0000;
}

.social-icon.tiktok i {
    color: #000000;
}

.social-icon i:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: url("./img/bg.jpg") center/cover no-repeat;
    color: #fff;
    position: relative;
    min-height: 400px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #FFA500;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #cc8400;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1200px;
    gap: 1.5rem;
    padding: 0 2rem;
}

.benefit-box {
    flex: 1 1 250px;
    background-color: #f7f7f7;
    padding: 1.2rem;
    border-radius: 6px;
    text-align: center;
    min-width: 200px;
}

.benefit-box h3 {
    margin-bottom: 0.5rem;
    color: #0077B6;
    font-size: 1.1rem;
}

.about {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.about img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #0077B6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.services {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.services h2 {
    text-align: center;
    color: #0077B6;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1.2rem;
    text-align: center;
    background-color: #f7f7f7;
}

.service-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.testimonials {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
    text-align: center;
}

.testimonials h2 {
    color: #0077B6;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.testimonial-item {
    flex: 1 1 250px;
    min-width: 200px;
    max-width: 300px;
    border: 1px solid #ddd;
    padding: 1.2rem;
    border-radius: 6px;
    background-color: #fafafa;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-item span {
    font-weight: bold;
    color: #555;
}

.final-cta {
    background-color: #0077B6;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-cta-button {
    background-color: #FFA500;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.final-cta-button:hover {
    background-color: #cc8400;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-section {
        justify-content: center;
        margin-bottom: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .header-socials {
        margin-top: 1rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .benefits {
        padding: 0 1rem;
    }

    .benefit-box {
        padding: 1rem;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }

    .final-cta {
        padding: 1.5rem 1rem;
    }
}