/* Cores base do logo: #1a1a1a (preto), #e0b04a (dourado) */

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Fundo claro */
}

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

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 10vh;
    margin-right: 10px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e0b04a; /* Cor dourada do logo no hover */
}

/* Hero Section */
.hero-section {
    background-color: #1a1a1a; /* Fundo escuro para a seção de destaque */
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh; /* Ocupa pelo menos 60% da altura da tela */
}

.hero-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #e0b04a; /* Dourado para o título principal */
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #e0b04a;
    color: #1a1a1a;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #cd9a36; /* Um dourado ligeiramente mais escuro */
    color: #ffffff;
}

/* General Section Styling */
section {
    padding: 80px 0;
    text-align: center;
}

section:nth-of-type(even) { /* Para alternar cores de fundo entre seções */
    background-color: #f1f1f1;
}

section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

section h4 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Alinhar texto do parágrafo à esquerda */
}

section ul {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 20px auto;
    text-align: left; /* Alinhar lista à esquerda */
}

section ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
}

section ul li::before {
    content: '›'; /* Marcador personalizado */
    color: #e0b04a;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    top: -2px;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-item h4 {
    color: #e0b04a;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1em;
    color: #555;
    text-align: center;
}


/* Contact Section */
.contact-info {
    margin-top: 30px;
    font-size: 1.1em;
}

.contact-info p {
    margin-bottom: 10px;
    text-align: center;
}

.contact-info strong {
    color: #1a1a1a;
}

.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        padding-left: 0;
    }

    nav ul li {
        margin: 0 10px;
        display: block; /* Links de navegação em coluna */
        margin-bottom: 10px;
    }

    .hero-section h2 {
        font-size: 2.2em;
    }

    section h3 {
        font-size: 2em;
    }

    .service-grid {
        grid-template-columns: 1fr; /* Coluna única em telas menores */
    }
}
