* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #222; 
    line-height: 1.6;
    color: #fff; 
}

header {
    background-color: #ff4500;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

   
    
 
}

header h1 {
    margin: 0;
    font-size: 40px;
    color: #fff;
}
header img{
    position: absolute;
    left: 50px;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    color: #FFC300; 
}

section {
    padding: 50px;
}

section h2 {
    color: #FF5733; 
    font-size: 36px;
    margin-bottom: 20px;
}

section p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

section ul {
    list-style-type: none;
    margin-bottom: 20px;
}

section ul li:before {
    content: "\2022";
    color: #FF5733; 
    font-size: 20px;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

footer {
    background-color: #222; 
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

footer p {
    margin-bottom: 10px;
    color: #fff;
}

button {
    background-color: #FF5733; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #FFC300; 
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#pre-venda {
    color: #fff; 
    padding: 40px; 
    text-align: left; 
    background: none; 
    margin: 40px 20px; 
}

#pre-venda h2 {
    font-size: 2.5em; 
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    color: #FF5733; 
}

#pre-venda p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#pre-venda .container {
    background-color: rgba(44, 41, 40, 0.57); 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto; 
    text-align: center; }

#pre-venda form {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
}

#pre-venda label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff; 
}

#pre-venda input[type="email"] {
    padding: 10px;
    width: 100%; 
    max-width: 400px; 
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#pre-venda .botao {
    background-color: #FF5733; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 5px;
}

#pre-venda .botao:hover {
    background-color: #FFC300; /
}

#design {
    color: #fff; 
    padding: 40px; 
    text-align: left; 
    background: none; 
    margin: 40px 20px; 
}

#design h2 {
    font-size: 2.5em; 
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    color: #FF5733; 
}

#design p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#design ul {
    list-style: none; 
    padding-left: 0;
}

#design ul li {
    background: rgba(255, 255, 255, 0.1); 
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

#design ul li:before {
    content: '✔'; 
    margin-right: 10px;
    color: #FF5733; 
}

.botao {
    background-color: #FF5733; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

#contato {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#contato h2 {
    color: #ea953a;
    margin-bottom: 20px;
}

#contato p {
    margin-bottom: 30px;
    color:white;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

label {
    font-weight: bold;
    color: white;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

input:focus, textarea:focus {
    border-color: #ea953a;
    outline: none;
}

textarea {
    height: 100px;
    resize: vertical;
}

.custom-button {
    background-color:#FF5733;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; }


.custom-button:hover {
    background-color: #cc7a2a;
}

#tecnologia {
    color: #fff; 
    padding: 40px; 
    text-align: left; 
    background: none; 
    margin: 40px 20px; 
}

#tecnologia h2 {
    font-size: 2.5em; 
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    color: #FF5733;
}

#tecnologia p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#tecnologia ul {
    list-style: none; 
    padding-left: 0;
}

#tecnologia ul li {
    background: rgba(255, 255, 255, 0.1); 
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

#tecnologia ul li:before {
    content: '✔'; 
    margin-right: 10px;
    color: #FF5733; 
}

.foco { 
    width: 100%;
    height: 500px;
    background: url(banner.jpg) no-repeat center; 
    background-size: cover;
}

.foco h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 80px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 6px black;
    text-align: right;
    margin-top: 50px;
    margin-bottom: 40px;
    line-height: 60px;
}


#inspiracao {
    color: #fff; 
    padding: 40px; 
    text-align: left; 
    background: none; 
    box-shadow: none; 
}

#inspiracao h2 {
    font-size: 3em; 
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    color:#FF5733; 
}

#inspiracao p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#inspiracao ul {
    list-style: none; 
    padding-left: 0;
}

#inspiracao ul li {
    background: rgba(255, 255, 255, 0.1); 
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

#inspiracao ul li:before {
    content: '✔'; 
    margin-right: 10px;
    color:#FF5733; 
}

#inspiracao img {
    width: 50%; 
    max-height: 600px; 
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}
#sobre {
    color: #fff; 
    padding: 40px; 
    text-align: left; 
    background: none;
    margin: 40px 20px; 
}

#sobre h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    color: #FF5733; 
}

#sobre p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#sobre img {
    width: 60%; 
    max-height: 500px; 
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container h1 {
    margin-right: 10px; 
}
