* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

section{
    padding: 90px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #05381e;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* HEADER */

header {
    background: #00331a;
    text-align: center;
    padding-bottom: 10px;
}

.topo-logo img {
    height: 180px;
}


/* MENU */

.menu ul {
    display: flex;
    justify-content: center;
    gap: 35px;
    list-style: none;
    padding: 15px 0;
}

.menu a {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #25D366;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: #25D366;
}


/* HERO */

.hero {
    position: relative;
    height: 90vh;

    background-image: url("../img/timur-shakerzianov-c314Gh8dXAo-unsplash.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn,
.btn-hero {
    background: #25D366;
    color: white;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover,
.btn-hero:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.hero h1{
text-shadow:0 3px 10px rgba(0,0,0,0.5);
}

.hero p{
text-shadow:0 2px 8px rgba(0,0,0,0.5);
}


/* BENEFÍCIOS */

.beneficios {
    background: white;
    padding: 30px 20px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.beneficio {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    font-weight: bold;
}


/* SERVIÇOS */

.servicos {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.servicos-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #004d26;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* ÁREAS */

.areas {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.area-card:hover {
    transform: translateY(-6px);
}


/* DIFERENCIAIS */

.diferenciais {
    padding: 80px 20px;
    background: #f5f7fa;
    text-align: center;
}

.cards-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}


/* SOBRE */

.sobre {
    padding: 80px 20px;
}

.sobre-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-imagem {
    flex: 1;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 10px;
}

.sobre-texto {
    flex: 1;
}


/* CONTATO */

.contato {
    padding: 80px 20px;
    background: #ffffff;
    color: white;
    text-align: center;
}

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


/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* FOOTER */

footer {
    background: #00331a;
    color: white;
    text-align: center;
    padding: 20px;
}


/* MOBILE */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        background: #004d26;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu.active {
        display: block;
    }

    .sobre-container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .topo-logo img {
        height: 120px;
    }

}