/*
 Theme Name: RL Template
 Theme URI: https://chatgpt.com
 Author: ChatGPT & GSG Digital
 Description: Template do Reactions List para funcionar juntamente com o plugin ativo.
 Version: 1.6
 */

/* GERAL */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

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

h1 {
    font-family: 'Cardo';
    font-size: 40px;
    margin: 0;
}

h2 {
    font-family: 'Cardo';
    font-size: 32px;
}

section {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* BOTOES */
.buttons-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    color: whitesmoke;
    text-decoration: none;
    padding: 10px 5px 10px 5px;
    border-radius: 5px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 5px;
}

.button:hover {
    background: #3d3d3d;
}

#disable-button {
    background: none;
    color: black;
    border: 1px black solid;
}

#highlight-button {
    background: blue;
}

#highlight-button:hover {
    background: #252585;
}

/* LOGO */
header {
    text-align: center;
}

/* CTA */
.cta {
    background: whitesmoke;
    border-radius: 15px;
    padding: 50px;
    border: 2px black solid;
    margin-bottom: 80px;
    margin-top: 100px;
}

/* CARACTERISTICAS */
.features-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: whitesmoke;
    border-radius: 15px;
    margin: 0;
    padding: 16px 10px 0 10px;
    border: 2px black solid;
    width: 100%;
    max-width: 260px;
}

/* TABELA DE PRECOS */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.pricing-plan {
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid black;
    background: whitesmoke;
}

.pricing-plan h3 {
    margin-top: 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 2px solid black;
}

.table th, .table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.table th {
    background-color: #f7f7f7;
    font-weight: bold;
}

i.fas.fa-check {
    color: green;
    font-size: 18px;
}

i.fas.fa-times {
    color: red;
    font-size: 18px;
}

#exemplo {
    font-weight: normal;
    font-size: 14px;
}

/* RODAPE */

.footer p, .contact p {
    margin: 5px;
}

/* PAGINA CONTATO */
form input {
    padding: 5px;
}

.contact {
    margin-top: 100px;
}


/* Responsivo */
@media (max-width: 480px) {

    .pricing-table {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .pricing-plan {
        width: 100%;
        max-width: 256px;
    }
}
    