/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background-color: #0a2c54;
    color: white;
    padding: 20px 0;
    position: relative;
}

header h1 {
    display: inline-block;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(10,44,84,0.8), rgba(10,44,84,0.8)), url('https://stoprodcastor.blob.core.windows.net/images/IMG_Fundo_Site.png') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2em;
}

.btn {
    background-color: #00aaff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.sobre {
    padding: 60px 0 40px 0; /* Reduzido o padding-bottom */
}

.sobre h2 {
    text-align: center;
    margin-bottom: 20px;
}

.sobre p {
    max-width: 800px;
    margin: 20px auto 0 auto;
    text-align: center;
    line-height: 1.8;
}

.servicos {
    padding: 60px 0;
}

.servicos h2 {
    text-align: center;
    margin-bottom: 20px;
}

.servicos .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 10px;
    color: #0a2c54;
}

.contato {
    padding: 60px 0;
}

.contato h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contato p {
    margin: 10px 0;
    text-align: center;
}

footer {
    background-color: #0a2c54;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* 🔥 Menu Responsivo */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    nav {
        float: none;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #0a2c54;
        position: absolute;
        top: 70px;
        right: 5%;
        width: 90%;
        border-radius: 8px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        padding: 20px;
        z-index: 1000;
    }

    nav ul li {
        display: block;
        margin: 15px 0;
        text-align: center;
    }

    nav ul.showing {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 5%;
    }

    header h1 {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
}
