/* Reset básico e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #0066cc;
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo img {
    max-width: 200px;
}

nav {
    margin-top: 20px;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.hero {
    background-color: #00bcd4;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
}

.services {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

.services .service-item {
    margin-bottom: 20px;
}

#portfolio {
    background-color: #e0e0e0;
    padding: 40px 20px;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

button {
    margin: 10px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    transition: 1s;
}


.prev {
    left: 10px;
}

.next {
    right: 10px;
}

#contact {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;

}



#contact input,
#contact textarea {
    background-color: rgba(12, 12, 151, 0.115);
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 15px;
    border-color: #1400cc4a;
}
::placeholder{

    font-family: sans-serif;
    font-size:smaller;
    font-weight: 700;
    color: rgb(16, 6, 70);
}
.submit-btn {
    background-color: #0066cc;
    color:  rgb(0, 0, 0);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 15px;
   
}

footer {

    text-align: center;
    background-color: #29127c;
    color: white;
    padding: 20px;
}
