/* HEADER */
.header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff; /* Fundo branco */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-elements {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-logo img {
    max-height: 50px;
}

/* Menu Hamburguer */
.hamburger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    z-index: 1100;
}

.hamburger-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #004080; /* Azul escuro */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-toggle:hover span {
    background: #0288a7; /* Azul vibrante ao passar o mouse */
}

/* Navegação Hamburguer */
.hamburger-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #004080; /* Fundo azul escuro */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 1000;
}

.hamburger-nav.active {
    left: 0;
}

.hamburger-nav ul {
    list-style: none;
    padding: 0;
}

.hamburger-nav ul li {
    margin: 15px 0;
}

.hamburger-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.hamburger-nav ul li a:hover {
    color: #00bcd4;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* SEÇÕES */
section {
    padding: 80px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.light-section {
    background: #f7f9fc; /* Azul acinzentado claro */
    color: #333;
}

.dark-section {
    background: #e3eaf3; /* Azul acinzentado mais escuro */
    color: #333;
}

/* TÍTULOS */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #004080;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #00bcd4;
    margin: 10px auto 0;
}

/* Ícones */
.section-icon, .section-icon-title {
    display: block;
    margin: 20px auto;
    width: 80px;
    height: auto;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* BANNER */
.banner-area {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Escurece a imagem */
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Botões de Ação */
.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #0288a7;
    transform: scale(1.1);
}

/* CARDS */
.category {
    margin-bottom: 40px;
}

.category h3 {
    text-align: center;
    font-size: 2rem;
    color: #004080;
    margin-bottom: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card h4 {
    font-size: 1.5rem;
    color: #0288a7;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #333;
}

/* Formulário de Contato */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: #aaa;
}

input:focus, textarea:focus {
    border-color: #00bcd4;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}

button.cta-button {
    width: 100%;
    padding: 15px;
    background: #00bcd4;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

button.cta-button:hover {
    background: #0288a7;
    transform: scale(1.05);
}
/* Seção de Contato */
.contact {
    padding: 80px 20px;
    background: #f7f9fc;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    font-size: 1.5rem;
    color: #004080;
    margin-right: 10px;
}

.contact-link {
    text-decoration: none;
    color: #004080;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0288a7;
}

/* Formulário de Contato */
.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: #aaa;
}

input:focus, textarea:focus {
    border-color: #00bcd4;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}

button.cta-button {
    width: 100%;
    padding: 15px;
    background: #00bcd4;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

button.cta-button:hover {
    background: #0288a7;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        max-width: 100%;
    }
}
