/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* HEADER */
header {
    background: #000;
    color: white;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #000, #444);
    color: white;
    padding: 50px;
    text-align: center;
}

/* SEÇÕES */
section {
    padding: 30px;
    text-align: center;
}

/* VÍDEO */
.video iframe {
    width: 90%;
    max-width: 600px;
    height: 300px;
    border-radius: 10px;
}

/* IMAGEM */
.imagem img {
    width: 90%;
    max-width: 350px;
    border-radius: 10px;
}

/* FORMULÁRIO PADRÃO */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input, textarea {
    width: 90%;
    max-width: 400px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BOTÃO PADRÃO */
button {
    padding: 12px 20px;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #444;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

.cartoes img {
    width: 50px;
    margin-left: 10px;
}

/* ========================= */
/* CONTATO DESIGN MODERNO */
/* ========================= */

.contato-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #000, #333);
}

.box-contato {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.topo {
    text-align: center;
    margin-bottom: 20px;
}

.input-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 10px;
}

.input-box i {
    margin-right: 10px;
    color: #555;
}

.input-box input,
.input-box textarea {
    border: none;
    outline: none;
    width: 100%;
}

.textarea textarea {
    height: 100px;
}

/* BOTÃO CONTATO */
.box-contato button {
    width: 100%;
    border-radius: 8px;
}

/* WHATSAPP */
.whats-box {
    display: block;
    margin-top: 15px;
    text-align: center;
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* ========================= */
/* CONTATO LAYOUT LATERAL */
/* ========================= */

.contato-container {
    display: flex;
    flex-wrap: wrap;
    background: white;
    margin: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.info-contato {
    flex: 1;
    background: #111;
    color: white;
    padding: 40px;
}

.info-contato p {
    margin: 15px 0;
}

.btn-whats {
    display: inline-block;
    margin-top: 20px;
    background: #25d366;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.form-contato {
    flex: 1;
    padding: 40px;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    margin-bottom: 15px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        margin: 10px;
    }

    .box-contato {
        padding: 20px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}