html {
    scroll-behavior: smooth;
}

header {
    background-color: #111111;
    color: white;
    padding: 20px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 85px;
}

header h1 {
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 5px; 
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #7d7d7d;
}


.hero {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 50px 0;
    background: url('imagens/bg/background-hero.png') no-repeat center center;
    background-size: cover;
    height: 400px;
    overflow: hidden;
}

.hero h2,
.hero p,
.hero .btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero h2 {
    top: 30%;
    font-size: 2em;
    margin: 0;
}

.hero p {
    top: 50%;
    font-size: 1.2em;
    margin: 10px 0;
}

.hero .btn {
    top: 70%;
    padding: 10px 20px;
    background-color: #0955d7;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #0941d1; 
}

.sobre {
    padding: 50px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.sobre h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.sobre p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.sobre h3 {
    font-size: 28px;
    margin: 20px 0 10px;
    color: #333;
}

.sobre ul {
    list-style-type: none;
    padding: 0;
}

.sobre ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.sobre ul li strong {
    color: #333;
}

.services .card {
    transition: transform 0.2s;
    text-align: center;
}

.services .card:hover {
    transform: scale(1.05);
}

.container {
    text-align: center;
    padding: 20px;
}

.clientes {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.clientes h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #333;
}

.review-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.review-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.review-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}
.review-section {
    position: relative;
    padding: 20px;
    text-align: center;
  }
  
.review-container {
    display: inline-block;
    width: 100%;
  }
  
.reviews-nav {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.thumbnail-container {
    margin-bottom: 15px;
}

.thumbnail-container img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 15px;
}


.modal-dialog {
    max-width: 90%;
}

.modal-body img {
    width: 100%;
    height: auto;
}

.contact-info a {
    text-align: center;
    color: #fff;
}

.contact-info a:hover {
    color: #d4edda;
}

footer {
    background-color: #111111;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center; 
}

.footer-logo {
    height: 50px; 
    margin-right: 15px; 
}

footer p {
    margin: 0; 
}

.localizacao {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.localizacao h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.mapa {
    max-width: 500px; 
    text-align: center;
    margin: 0 auto;
}

.mapa iframe {
    border: 0;
    height: 500px; 
    width: 500px;  
    border-radius: 0; 
}

.contact {
    background-color: #f5f5f5;
    text-align: center;
    padding: 30px;
}

.contact-info {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.contact button {
    padding: 10px;
    background-color: #0955d7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #0941d1; 
}

a:focus, button:focus {
    outline: 2px dashed #0955d7;
    outline-offset: 4px;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 15px;
    }
}

