/* Estilos básicos para o plugin Análise VAR Médicos */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

h1,
h2,
h3 {
    color: #333;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    margin-top: 30px;
}

h3 {
    font-size: 1.5em;
    margin-top: 20px;
}

p {
    margin-bottom: 10px;
}

strong {
    font-weight: bold;
}

/* Estilos para o botão QUERO PARTICIPAR */
.wp-block-button__link {
    display: inline-block;
    background-color: #4CAF50; /* Cor verde similar ao site */
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 20px;
}

.wp-block-button__link:hover {
    background-color: #45a049;
}

/* Estilos para a seção de preço */
.price-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #e0ffe0; /* Um verde claro para destacar */
    border-radius: 8px;
}

.price-section h2 {
    color: #28a745;
}

.price-section .value {
    font-size: 3em;
    font-weight: bold;
    color: #28a745;
}

.price-section ul {
    list-style: none;
    padding: 0;
}

.price-section ul li {
    margin-bottom: 10px;
}

/* Estilos para a seção de garantia */
.guarantee-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #fff3cd; /* Amarelo claro para destaque */
    border-radius: 8px;
    border: 1px solid #ffeeba;
}

.guarantee-section strong {
    color: #856404;
}

/* Estilos para a seção de dúvidas frequentes */
.faq-section {
    margin-top: 40px;
}

.faq-section h3 {
    cursor: pointer;
    background-color: #eee;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.faq-section p {
    padding: 10px;
    border-left: 3px solid #4CAF50;
    background-color: #f9f9f9;
    margin-left: 10px;
}

/* Estilos para o rodapé */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 0.9em;
}


