@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    /* Fundo Levemente Cinza */
}

/* Estilização para o título das seções */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 4px;
    background-color: #70763b;
    /* Verde Esmeralda (Emerald-500) */
    border-radius: 9999px;
}

/* Efeito de hover suave nos botões */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3), 0 4px 6px -2px rgba(16, 185, 129, 0.1);
}

.img-logo {
    max-width: 150px;
}

body > header {
    align-items: center;
}

body > header nav {
    align-items: center;
}

.bg-green-expert {
    background-color: #70763b;
}

.text-green-expert {
    color: #abb45b;
}

.bg-expert {
    background-image: url(./img/capa.jpg);
}

.img-trator img {
    height: 100%;
    border-radius: 20px;
}

.img-brita {
    border-radius: 20px;
    height: 100%;
}

.text-marron-expert {
    color: #52421f;
}