body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}
/* Logo */
:root {
    --primary-yellow: #ffdd00;
    --dark-brown: #212121;
    --text-color: #424242;
}

.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.btn-orcamento {
    background-color: var(--primary-yellow) !important;
    color: var(--dark-brown) !important;
    font-weight: bold;
    border-radius: 25px;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.btn-orcamento:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* Header & Nav */
.nav-wrapper {
    background-color: var(--dark-brown) !important;
}

.logo {
    height: 50px;
    margin-top: 7px;
}

nav ul a {
    font-weight: bold;
}

.sidenav {
    background-color: var(--dark-brown);
}

.sidenav li > a {
    color: white;
}

.hero {
    min-height: 60vh;
    background-image: url('imagens/360x200.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.2rem;
    text-shadow: 3px 3px 6px #000000;
    margin-bottom: 0;
}

.hero p {
    text-shadow: 2px 2px 4px #000000;
}

#servicos .card {
    text-align: center;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

#servicos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.large-icon {
    font-size: 7rem;
    color: var(--dark-brown);
    margin-top: 20px;
}

.card .card-content {
    color: var(--text-color);
}

#como-funciona {
    background-color: #ffffff;
}

.medium-icon {
    font-size: 5rem;
    color: var(--dark-brown);
}

#como-funciona h5 {
    color: var(--dark-brown);
}

#galeria {
     background-color: #ffffff;
}

.carousel {
    height: 300px;
}

.carousel .carousel-item {
    border-radius: 10px;
}

.carousel.carousel-slider {
    height: 250px;
}

#depoimentos .carousel-item {
    padding: 20px;
    color: var(--text-color);
}

#depoimentos .carousel-slider .indicators .indicator-item.active {
    background-color: var(--primary-yellow);
}

.page-footer {
    background-color: var(--dark-brown);
}

.page-footer .left {
    margin-right: 10px;
}
