body {
    font-family: 'Arial', sans-serif;
    background-color: #ffe100;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    flex-grow: 1;
}

section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contato-polen{
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.2em;
    color: #e67e22;
    margin-bottom: 20px;
    text-align: center;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

#introducao .introducao-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.introducao-texto {
    flex: 1;
    text-align: center;
}

.introducao-texto h2 {
    color: #e67e22;
    margin-bottom: 15px;
}

.introducao-imagem {
    flex: 0 0 auto;
    text-align: center;
}

.introducao-imagem img {
    max-width: 100%;
    height: auto;
}

img{
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    #introducao .introducao-conteudo {
        flex-direction: row;
        text-align: left;
    }

    .introducao-texto {
        text-align: left;
    }

    .introducao-imagem {
        max-width: 40%;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li a {
        padding: 8px 10px;
        font-size: 1em;
    }

    main {
        margin: 20px auto;
        padding: 0 15px;
    }

    section {
        padding: 20px;
    }

    #contato-polen{
        padding: 20px;
    }

    h2 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fcfcfc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #f7d04e;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #e0e0e0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.formulario {
    display: flex;
    flex-direction: column;
}

.formulario label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #e67e22;
}

.formulario input[type="text"],
.formulario input[type="email"],
.formulario textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

.formulario input[type="text"]:focus,
.formulario input[type="email"]:focus,
.formulario textarea:focus {
    border-color: #f7d04e;
    outline: none;
    box-shadow: 0 0 5px rgba(247, 208, 78, 0.5);
}

button[type="submit"] {
    background-color: #e67e22;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

button[type="submit"]:hover {
    background-color: #cf6d1d;
}

@media (max-width: 600px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    table tr {
        border: 1px solid #ccc;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    table td {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    table td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #e67e22;
    }
    
}

@media (max-width: 480px) {
    button[type="submit"] {
        width: 100%;
    }
}