* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    color: #fff;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header img {
    height: 350px;
    width: auto;
    object-fit: contain;
}

.header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(51, 51, 51, 0.8));
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.header .btn {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.header .btn:hover {
    background-color: #e5c100;
}

.servicos, .produtos, .galeria, .agendamento, .contato {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.servicos h2, .produtos h2, .galeria h2, .agendamento h2, .contato h2 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
}

.servico-lista, .produto-lista, .fotos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.servico-item, .produto-item {
    background-color: #333;
    padding: 20px;
    width: 220px;
    border-radius: 25px;
    transition: transform 0.3s, background 0.3s;
}

.servico-item h3, .produto-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.servico-item p, .produto-item p {
    font-size: 1em;
}

.servico-item:hover, .produto-item:hover {
    background-color: #444;
    transform: scale(1.05);
}

.fotos img {
    width: 30%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.fotos img:hover {
    transform: scale(1.05);
}

.agendamento form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.agendamento label {
    font-size: 1.2em;
    color: #FFD700;
    margin-top: 15px;
}

.agendamento input[type="text"],
.agendamento input[type="tel"],
.agendamento input[type="date"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #FFD700;
    border-radius: 25px;
    background: #333;
    color: #FFD700;
    width: 100%;
}

.agendamento button {
    margin-top: 20px;
    padding: 15px;
    background-color: #FFD700;
    color: #333;
    font-size: 1.2em;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.agendamento button:hover {
    background-color: #e5c100;
}

.contato p {
    font-size: 1.2em;
    color: #e5c100;
    margin-bottom: 20px;
}

.contato iframe {
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    height: 300px;
}

footer {
    background: #1a1a1a;
    color: #FFD700;
    text-align: center;
    padding: 20px 0;
    font-size: 1em;
}

.produto-item img {
    width: 100%;
    max-width: 150px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-compra {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 12px 25px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-compra:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.button-compra:active {
    background-color: #cca300;
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.produto-item .button-compra {
    margin-top: 15px;
    width: 100%;
    text-align: center;
}


@media (max-width: 622px) {
    .header h1 { font-size: 2em; }
    .header p { font-size: 1.1em; }
    .servico-item, .produto-item { width: 100%; }
    .fotos img, .header img { width: 100%; }
    .agendamento form { width: 90%; }
    footer { font-size: 0.9em; }
    .contato iframe { width: 100%; height: 180px; }
}

@media (max-width: 480px) {
    .header h1 { font-size: 1.5em; }
    .header p { font-size: 1em; }
    .servicos h2, .agendamento h2 { font-size: 2em; }
    .agendamento button { font-size: 1em; padding: 12px; }
    footer { font-size: 0.8em; }
    .header img { height: 250px; }
    .contato iframe { height: 150px; }
}
