/* Reseta o estilo padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

html {
    scroll-behavior: smooth;
  }
  

/* Centralização e espaçamento do conteúdo */
.center {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Header */
header {
    background: #000;
    color: #fff;
    padding: 20px 0;
    animation: slideInDown 1s ease-in-out;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; /* Para evitar rolagem horizontal */
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o container ocupe toda a altura da viewport */
}

main {
    flex: 1; /* Permite que o conteúdo principal ocupe o espaço disponível */
}

footer {
    background: #333; /* Cor de fundo do footer */
    color: white; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
    padding: 20px 0; /* Garantir espaçamento interno */
    width: 100%; /* Ocupa toda a largura */
    margin-top: auto; /* Garante que o footer fique no final do container */
}


.logo img {
    max-width: 100px;
    margin-bottom: -30px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.2);
}

/* Menu */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffcc00;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.menu a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu a:hover {
    color: #000;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Seção hero */
.hero {
    background: #333;
    color: #ffcc00;
    padding: 100px 0;
    animation: slideInLeft 1s ease-in-out;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3em;
    animation: bounceIn 1s ease-in-out;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.2em;
    animation: fadeInUp 1s ease-in-out;
}

.hero button {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    animation: fadeInUp 1s ease-in-out;
}

.hero button:hover {
    background: #ffc700;
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

/* Seção Sobre */
.sobre {
    background: #f4f4f4;
    padding: 40px 0;
    animation: slideInRight 1s ease-in-out;
    overflow: hidden; /* Garante que não haverá rolagem extra */
}

.sobre h2 {
    margin-bottom: 20px;
    font-size: 2em;
    animation: fadeInDown 1s ease-in-out;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slide {
    display: none;
    padding: 20px;
    color: #333;
    font-size: 1.2em;
    animation: fadeIn 1s ease-in-out;
    text-align: center;
}

.active {
    display: block;
}


.dot-container {
    text-align: center;
    padding: 20px;
    background: #ddd;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
    background-color: #717171;
}

/* Seção serviços */
.servicos {
    background: #fff;
    padding: 40px 0;
    animation: slideInLeft 1s ease-in-out;
}

.servicos h2 {
    margin-bottom: 20px;
    font-size: 2em;
    animation: fadeInDown 1s ease-in-out;
}

.servicos-boxes {
    display: flex;
    justify-content: center; /* Centraliza os boxes */
    gap: 20px;
    flex-wrap: wrap;
}

.servico-box {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s;
    animation: fadeInUp 1s ease-in-out;
}

.servico-box:hover {
    transform: scale(1.05);
}

.servico-box img {
    max-width: 80px;
    margin-bottom: 10px;
    animation: bounceIn 1s ease-in-out;
}

.servico-box h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
    animation: fadeInDown 1s ease-in-out;
}

.servico-box p {
    font-size: 1.1em;
    color: #666;
    animation: fadeInUp 1s ease-in-out;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 20px 0;
    animation: slideInUp 1s ease-in-out;
}

footer p {
    margin: 0;
}

/* Animações */
@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes bounceIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .menu a {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero button {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .sobre h2, .servicos h2 {
        font-size: 1.5em;
    }

    .sobre p, .servicos p {
        font-size: 1em;
    }

    .servicos-boxes {
        flex-direction: column;
        gap: 20px;
    }

    .servico-box {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .menu {
        padding: 10px 5px;
    }

    .menu a {
        font-size: 1em;
        padding: 10px 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .hero button {
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .sobre h2, .servicos h2 {
        font-size: 1.2em;
    }

    .sobre p, .servicos p {
        font-size: 0.9em;
    }

    .servico-box {
        padding: 15px;
    }
}

/* PAGINA CONTATO */

/* Seção contato */
.contato {
    background: #fff;
    padding: 40px 0;
}

.contato h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

/* Container de contato */
.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-info {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    margin-bottom: 20px;
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
}

.contact-info p {
    font-size: 1.2em;
    color: #666;
}

/* Botões de contato */
.contact-info button {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border-radius: 5px;
    margin: 10px 0;
    width: 100%;
}

.contact-info button:hover {
    background: #ffc700;
    transform: scale(1.1);
}

/* Formulário */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: #ffc700;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
    }

    .menu a {
        margin: 10px 0;
    }

    .contato h2 {
        font-size: 1.5em;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-group label, .form-group input, .form-group textarea {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .menu {
        padding: 10px 5px;
    }

    .menu a {
        font-size: 1em;
        padding: 10px 15px;
    }

    .contato h2 {
        font-size: 1.2em;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info h3 {
        font-size: 1.3em;
    }

    .contact-info p {
        font-size: 1em;
    }

    .contact-info button {
        padding: 8px 12px;
        font-size: 0.9em;
    }

    .form-group label, .form-group input, .form-group textarea {
        font-size: 0.9em;
    }

    button {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes bounceIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.animated {
    animation: fadeIn 1s ease-in-out;
}

/* Classe para elementos que devem ser animados na rolagem */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero h1,
.hero p,
.hero button,
.sobre h2,
.servicos h2 {
    opacity: 0;
}

.hero h1.animated,
.hero p.animated,
.hero button.animated,
.sobre h2.animated,
.servicos h2.animated {
    opacity: 1;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.contact-image::after {
    content: "Entre em contato!";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.contact-image:hover::after {
    opacity: 1;
}


/* Estilo geral */
form {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
    color: #333;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

button {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

button:hover {
    background: #ffc700;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#chosenEmail {
    font-weight: bold;
    color: #ffcc00;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    .form-group label {
        font-size: 1em;
    }

    .form-group input, .form-group textarea, .form-group select {
        padding: 8px;
        font-size: 0.9em;
    }

    button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    form {
        padding: 10px;
    }

    .form-group label {
        font-size: 0.9em;
    }

    .form-group input, .form-group textarea, .form-group select {
        padding: 6px;
        font-size: 0.8em;
    }

    button {
        padding: 6px 12px;
        font-size: 0.8em;
    }

    #chosenEmail {
        font-size: 0.9em;
    }
}

/* Estilo para a frase "Mande seu email" */
.email-box {
    background: #ffcc00;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.email-box small {
    display: block;
    font-size: 0.9em;
    color: #333;
    margin-top: 5px;
}

/* Estilo para os botões de contato */
.contact-info {
    text-align: center; /* Centraliza o texto dentro da div .contact-info */
}

.contact-info button {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo dentro do botão */
    background: #ffcc00; /* Cor padrão do site */
    color: #000;
    border: none;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    margin: 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-info button:hover {
    background: #ffc700; /* Cor de hover */
}

.contact-info button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Seção Clientes */
.clientes {
    background: #f4f4f4;
    padding: 40px 0;
}

.clientes h2 {
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    background: #f4f4f4;
    padding: 10px;
    z-index: 1000; /* Maior z-index para garantir visibilidade */
}

.clientes-line {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 70px; /* Espaçamento para evitar sobreposição com o título */
}

.cliente-logo {
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.cliente-logo img {
    height: 60px;
    transition: transform 0.3s ease-in-out;
    object-fit: contain;
}

.cliente-logo:hover img {
    transform: scale(1.1);
}


/* Seção Apresentação */
.apresentacao {
    background: #f4f4f4;
    padding: 40px 0;
}

.apresentacao h2 {
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
}

.iframe-container {
    position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Seção Apresentação */
.apresentacao {
    background: #f4f4f4;
    padding: 40px 0;
}

.apresentacao h2 {
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #f4f4f4;
    padding: 10px;
    z-index: 1000; /* Maior z-index para garantir visibilidade */
}

.iframe-container {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.control-container {
    margin-top: 20px;
    text-align: center;
}

.control-container label {
    margin-right: 10px;
    font-size: 1.2em;
    color: #333;
}

.control-container input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 50%;
    height: 10px;
    background: #ffcc00;
    outline: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.control-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #000;
    cursor: pointer;
}

.control-container input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #000;
    cursor: pointer;
}

.control-container input[type="range"]::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #000;
    cursor: pointer;
}

.control-container input[type="range"]::-ms-track {
    width: 100%;
    height: 10px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.control-container input[type="range"]::-ms-fill-lower {
    background: #ffcc00;
    border-radius: 5px;
}

.control-container input[type="range"]::-ms-fill-upper {
    background: #ffcc00;
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .iframe-container {
        height: 400px; /* Ajuste para telas menores */
    }
    .control-container input[type="range"] {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .iframe-container {
        height: 300px; /* Ajuste para telas muito pequenas */
    }
    .control-container input[type="range"] {
        width: 100%;
    }
    .control-container label {
        font-size: 1em;
    }
}

/* Estilo do Menu */
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu ul li {
    display: inline;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.menu ul li a:hover {
    background-color: rgb(230, 190, 13);
    transform: scale(1.1);
}

/* Estilo do Header */
header {
    background-color: #000000;
    color: white;
    padding: 20px 0;
}

header .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: auto;
    width: 120px;
}

.hero {
    background-image: url('imagens/motorista.jpg'); /* Substitua 'banner.jpg' pela imagem do seu banner */
    background-size: cover;
    background-position: center;
    color: rgb(230, 190, 13);
    padding: 100px 20px; /* Espaçamento interno */
    text-align: center; /* Centraliza o texto */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Sobreposição escura */
    z-index: 1;
}

.hero .center {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3em; /* Tamanho da fonte */
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.hero p {
    font-size: 1.5em; /* Tamanho da fonte */
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero button {
    padding: 15px 30px;
    font-size: 1.2em;
    color: #000000;
    background-color: rgb(230, 190, 13); /* Cor original */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    animation: pulse 2s infinite; /* Adiciona animação de pulso */
}

.hero button:hover {
    background-color: #ffd700; /* Cor mais clara ao passar o mouse */
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .hero button {
        font-size: 1em;
    }
}

/* Animações de scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px); /* Aumenta a distância para garantir que esteja fora da tela inicialmente */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo do Footer de Contato */
.footer-contato {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300; /* Fonte mais fina */
}

.footer-contato .center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info {
    display: flex;
    justify-content: space-between; /* Distribui o espaço igualmente entre as colunas */
    width: 100%;
    max-width: 1200px; /* Aumenta a largura máxima */
    margin-bottom: 20px;
    flex-wrap: nowrap; /* Impede quebra de linha nas colunas */
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Define a largura mínima das colunas */
    padding: 0 20px;
    text-align: left; /* Alinha o texto à esquerda */
}

.footer-column h3 {
    font-size: 1.2em; /* Aumenta o tamanho da fonte */
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 1em; /* Aumenta o tamanho da fonte */
    margin: 10px 0;
    color: rgb(230, 190, 13); /* Cor amarela para os telefones e emails */
    display: flex;
    align-items: center;
}

.footer-column p img {
    margin-right: 10px; /* Aumenta o espaçamento entre o ícone e o texto */
    vertical-align: middle; /* Alinha verticalmente no meio */
}

.footer-column a {
    font-size: 1em; /* Aumenta o tamanho da fonte */
    color: rgb(230, 190, 13); /* Cor amarela para os links */
    text-decoration: none;
    font-weight: 300; /* Fonte mais fina */
}

.footer-column a:hover {
    text-decoration: underline;
}


/* Estilo do Mapa */
.footer-column .map {
    margin-top: 10px;
    width: 100%;
    height: 200px; /* Define a altura do mapa */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Estilo do Menu */
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu ul li {
    display: inline;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.menu ul li a:hover {
    background-color: rgb(230, 190, 13);
    transform: scale(1.1);
}

/* Responsividade do Menu */
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu ul li {
        display: block;
        width: 100%;
    }

    .menu ul li a {
        display: block;
        width: 100%;
    }
}

/* Estilo do Header */
header {
    background-color: #000000;
    color: white;
    padding: 20px 0;
}

header .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: auto;
    width: 120px;
}

/* Estilo do Footer de Contato */
.footer-contato {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300; /* Fonte mais fina */
}

.footer-contato .center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info {
    display: flex;
    justify-content: space-between; /* Distribui o espaço igualmente entre as colunas */
    width: 100%;
    max-width: 1200px; /* Aumenta a largura máxima */
    margin-bottom: 20px;
    flex-wrap: nowrap; /* Impede quebra de linha nas colunas */
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Define a largura mínima das colunas */
    padding: 0 20px;
    text-align: left; /* Alinha o texto à esquerda */
}

.footer-column h3 {
    font-size: 1.2em; /* Aumenta o tamanho da fonte */
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 1em; /* Aumenta o tamanho da fonte */
    margin: 10px 0;
    color: rgb(230, 190, 13); /* Cor amarela para os telefones e emails */
    display: flex;
    align-items: center;
}

.footer-column p img {
    margin-right: 10px; /* Aumenta o espaçamento entre o ícone e o texto */
    vertical-align: middle; /* Alinha verticalmente no meio */
}

.footer-column a {
    font-size: 1em; /* Aumenta o tamanho da fonte */
    color: rgb(230, 190, 13); /* Cor amarela para os links */
    text-decoration: none;
    font-weight: 300; /* Fonte mais fina */
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Estilo da Caixa de Contato */
.contact-form {
    flex: 1;
    min-width: 200px; /* Define a largura mínima */
    max-width: 250px; /* Reduz a largura máxima */
    margin: 0; /* Remove margem */
    text-align: left; /* Alinha à esquerda */
    align-self: flex-end; /* Move para a extremidade direita */
}

.contact-form h3 {
    font-size: 1.2em; /* Aumenta o tamanho da fonte */
    margin-bottom: 10px;
}

.contact-form form div {
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: rgb(230, 190, 13); /* Cor amarela para os rótulos */
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px; /* Aumenta o espaçamento interno */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em; /* Aumenta o tamanho da fonte */
}

.contact-form button {
    padding: 10px 20px; /* Aumenta o espaçamento interno */
    font-size: 1em; /* Aumenta o tamanho da fonte */
    color: #fff;
    background-color: rgb(230, 190, 13);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e6be0d;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column; /* Alinha as colunas verticalmente em telas menores */
        align-items: center;
    }

    .footer-column {
        text-align: center; /* Centraliza o texto nas colunas em telas menores */
        margin-bottom: 20px; /* Adiciona espaçamento inferior entre as colunas */
    }

    .contact-form {
        align-self: center; /* Centraliza a caixa de contato em telas menores */
    }
}

.footer-contato p {
    font-size: 0.9em; /* Aumenta o tamanho da fonte */
    margin-top: 20px;
    font-weight: 300; /* Fonte mais fina */
}

/* Estilo do Footer de Contato */
#footer-contato {
    background-color: #000000; /* Cor de fundo do footer */
    color: white; /* Cor do texto */
    padding: 20px 0; /* Espaçamento interno do footer */
    text-align: center; /* Alinhamento do texto */
    font-family: 'Helvetica Neue', sans-serif; /* Fonte */
    font-weight: 300; /* Fonte mais fina */
}

#footer-contato p {
    font-size: 0.8em; /* Tamanho da fonte reduzido */
    margin: 5px 0; /* Margem reduzida */
}

#footer-contato a {
    color: rgb(230, 190, 13); /* Cor amarela para o link */
    text-decoration: none; /* Remove sublinhado */
    font-weight: bold; /* Negrito no link */
}

#footer-contato a:hover {
    text-decoration: underline; /* Sublinhado ao passar o mouse */
}
