* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabe�alho */
header {
    background-color: #1a2b49;
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header h1 a {
    color: white;
    text-decoration: none;
    font-size: 28px;
}

header nav ul {
    list-style: none;
    float: right;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

header nav ul li a:hover {
    color: #ff6f61;
}

/* Banner */
.hero {
    background: url('img/hero-bg.jpg') no-repeat center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    align-content: center;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Sombra preta suave */
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background-color: #ff6f61;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}

.btn:hover {
    background-color: #e65b50;
}

/* Servi�os */
.services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.service-item h3 {
    margin: 15px 0;
    font-size: 22px;
}

/* Sobre */
.about {
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Contato */
.contact {
    padding: 60px 0;
    background-color: #1a2b49;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact textarea {
    height: 150px;
}

.contact button {
    background-color: #ff6f61;
    border: none;
    cursor: pointer;
}

/* Rodap� */
footer {
    background-color: #0f1a2e;
    color: white;
    text-align: center;
    padding: 20px 0;
}