/* Configurações Gerais */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Um azul bem claro para o fundo */
    color: #005f99;
}

/* Cabeçalho com as Vinhas */
header {
    background-color: #007acc;
    text-align: center;
    padding: 40px 20px;
    color: #ffffff;
    position: relative; /* Necessário para posicionar as vinhas */
}

/* Criando as Vinhas via Pseudo-elementos */
header::before, header::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px; /* Largura da vinha */
    height: 500px; /* Altura que a vinha vai descer */
    background-image: url('vinha.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

header::before {
    left: 5%; /* Posicionamento na esquerda */
}

header::after {
    right: 5%; /* Posicionamento na direita */
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3));
}

h1 {
    margin: 0;
    font-size: 2.8em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Seção de Planos */
h2 {
    text-align: center;
    color: #005f99;
    margin-top: 40px;
}

#planos {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.plano {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    width: 220px;
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e6f3ff;
}

.plano:hover {
    transform: translateY(-10px); /* Efeito de flutuar ao passar o mouse */
    border-color: #007acc;
}

.plano h3 {
    color: #007acc;
    margin-top: 0;
}

/* Botões e Interatividade */
.botao {
    display: inline-block;
    background-color: #0e79c1;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.botao:hover {
    background-color: #005f99;
}

/* Seções de Texto */
#contratar, #contato {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    line-height: 1.6;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #e6f3ff;
    color: #005f99;
    margin-top: 40px;
}

/* Ajustes para Celular */
@media (max-width: 768px) {
    header::before, header::after {
        width: 50px; /* Vinhas menores no celular */
        height: 150px;
    }
    
    h1 {
        font-size: 2em;
    }
}