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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.w-dkmcc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #001a4d;
    color: white;
}

.top-bar {
    background-color: #001233;
    padding: 5px 0;
    font-size: 12px;
    text-align: right;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.n-rnbgu {
    padding: 15px 0;
}

.n-rnbgu .w-dkmcc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}





.social-icons a {
    margin-left: 10px;
}

.social-icons img {
    width: 20px;
}

/* Slider */
.s-jlslv {
    position: relative;
    overflow: hidden;
}

.sc-eqwrk {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .slide img {
        height: auto; /* Deixar proporcional de ponta a ponta */
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .slide img {
        height: auto;
        min-height: 200px;
    }
}

.s-jlslv button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
}

.s-jlslv .prev { left: 10px; }
.s-jlslv .next { right: 10px; }

/* Help Section */
.help-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.bw-uycat {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Carousel */
.pc-lhsbz {
    padding: 50px 0;
    position: relative;
}

.cc-pyodd {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.carousel-slide {
    min-width: 100%;
    text-align: center;
}

.carousel-slide img {
    width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Budget Section */
.budget-section {
    text-align: center;
    padding: 50px 0;
    background-color: #001a4d;
    color: white;
}

.bb-xosbx {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}



/* Services */
.ss-hkhly {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
}

.card-content {
    padding: 20px;
}

.card-content span {
    color: #e67e22;
    font-weight: bold;
    font-size: 12px;
}

.btn-more {
    display: inline-block;
    margin-top: 15px;
    color: #001a4d;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #001233;
    color: white;
    padding: 50px 0 20px;
}



.fb-knazw {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #00264d;
    padding-top: 20px;
    font-size: 12px;
}



@media (max-width: 768px) {
    .social-icons { display: none; }
    .services-grid {
        grid-template-columns: 1fr;
    }
}
