:root {
    --primary-color: #212529;
    --secondary-color: #f8f9fa;
    --accent-color: #d4a373;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.navbar-brand img {
    height: 40px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/8e9f1f67-ba0e-4b1c-b256-b16ea8f35f7f.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #b08a5f;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    font-weight: 700;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.service-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.contact-form {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Deixando Responsivo para telas pequenas */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 390px) {
    .hero-content h1 {
        font-size: 2.7rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 344px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.8rem;
    }
}
