/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Botão geral */
.btn {
    display: inline-block;
    background-color: #36b436;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(54, 180, 54, 0.3);
}

.btn:hover {
    background-color: #2a8e2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(54, 180, 54, 0.4);
}

/* Seções gerais */
section {
    padding: 80px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: #333;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffce00;
    border-radius: 2px;
}