
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9; 
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CABECALHO */
header {
    background-color: #00284c; 
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    max-height: 175px; 
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.5rem;
}

main section {
    padding: 60px 0;
    text-align: center;
}

main section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* LINHAS TITULOS */
main section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffc107; 
    margin: 8px auto 0;
}

/* SERVICOS */
.acordeao {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.acordeao-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden; 
}

.acordeao-input {
    display: none;
}

.acordeao-titulo {
    display: block;
    padding: 20px;
    color: #0d2c4e;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.acordeao-titulo:hover {
    background-color: #f0f4f8;
}

.acordeao-titulo::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #0d2c4e;
    transition: transform 0.3s ease;
}

.acordeao-conteudo {
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
}

.acordeao-conteudo p {
    padding: 0 20px 20px 20px; 
    margin: 0;
}


.acordeao-input:checked + .acordeao-titulo + .acordeao-conteudo {
    max-height: 500px;
    transition: max-height 1s ease-in-out; 
}


.acordeao-input:checked + .acordeao-titulo::after {
    transform: rotate(45deg);
}

/* SOBRE */
#sobre {
    background-color: #fff;
}
#sobre p {
    max-width: 800px;
    margin: 0 auto; 
    text-align: justify;
}

/* CONTATO */
#contato p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.botoes-contato {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-whatsapp {
    background-color: #25d366; 
}
.btn-whatsapp:hover {
    background-color: #1ebe5a;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.btn-instagram:hover {
    opacity: 0.9;
}

/* RODAPE */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}