/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Definição das fontes */
body {
    font-family: 'Spectral', serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600; /* Peso médio para títulos */
}

/* Ajustes específicos para títulos */
header h1 {
    font-size: 2.5rem;
    font-weight: 700; /* Peso mais forte para o título principal */
}

header p {
    font-family: 'Spectral', serif;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    color: #b5942f;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.sobre h2, .atendimento h2, .atuacao h2, .depoimentos h2, .contato h2 {
    font-size: 2rem;
    font-weight: 600;
}

/* Ajustes para textos longos */
p {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #333333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #2c3e50;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

header nav ul {
    list-style: none;
    margin-top: 20px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #d4af37; /* Dourado ao passar o mouse */
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
    color: #2c3e50;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero .btn-primary {
    background: #d4af37; /* Dourado */
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero .btn-primary:hover {
    background: #b5942f; /* Dourado mais escuro */
}

/* Seção Sobre */
.sobre {
    padding: 50px 0;
    text-align: center;
    background: #f4f4f4; /* Cinza claro */
}

.sobre h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2c3e50; /* Azul marinho */
}

.sobre-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sobre-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37; /* Dourado */
}

/* Seção Atendimento Online */
.atendimento {
    padding: 50px 0;
    background: #ffffff;
    text-align: center;
}

.atendimento h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2c3e50; /* Azul marinho */
}

.atendimento-content {
    max-width: 600px;
    margin: 0 auto;
}

.atendimento-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333333; /* Cinza escuro */
}

.atendimento .btn-primary {
    background: #d4af37; /* Dourado */
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.atendimento .btn-primary:hover {
    background: #b5942f; /* Dourado mais escuro */
}

/* Seção Áreas de Atuação */
.atuacao {
    padding: 50px 0;
    background: #f4f4f4; /* Cinza claro */
    text-align: center;
}

.atuacao h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2c3e50; /* Azul marinho */
}

.carrossel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carrossel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrossel-item {
    min-width: 100%;
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #d4af37; /* Dourado */
}

.carrossel-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50; /* Azul marinho */
}

.carrossel-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #2c3e50; /* Azul marinho */
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 62, 80, 0.7); /* Azul marinho com transparência */
    color: #ffffff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.carrossel-btn:hover {
    background: rgba(44, 62, 80, 0.9); /* Azul marinho mais escuro */
}

.carrossel-btn.prev {
    left: 10px;
}

.carrossel-btn.next {
    right: 10px;
}

/* Seção Depoimentos */
.depoimentos {
    padding: 50px 0;
    background: #ffffff;
    text-align: center;
}

.depoimentos h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2c3e50; /* Azul marinho */
}

.depoimentos .carrossel-item {
    background: #f4f4f4; /* Cinza claro */
    border: 1px solid #d4af37; /* Dourado */
}

/* Seção Contato */
.contato {
    padding: 50px 0;
    background: #f4f4f4; /* Cinza claro */
    text-align: center;
}

.contato h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2c3e50; /* Azul marinho */
}

.contato form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

.contato input, .contato textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #d4af37; /* Dourado */
    border-radius: 5px;
}

.contato button {
    padding: 10px;
    background: #2c3e50; /* Azul marinho */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contato button:hover {
    background: #1a2a3a; /* Azul marinho mais escuro */
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366; /* Verde do WhatsApp */
    color: #ffffff;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.whatsapp-float:hover {
    background: #128c7e; /* Verde mais escuro */
}

/* Footer */
footer {
    background: #2c3e50; /* Azul marinho */
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    color: #b5942f;
}