body {
    background-color: #01000F;
    color: #fff;
    margin: 0;
    padding: 100px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    line-height: 1;
}
.container-eps {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 2.5rem 0;
    padding: 0 1rem;
}
.header {
    text-align: left;
    flex: 1;
    max-width: 50%;
}
.header h1 {
    margin: 0;
    font-size: 3em;
    display: flex;
    align-items: center;
    font-weight: 900;
}

.header .logo-eps{
    max-width: 100%;
    width: auto;
}
.header h1 span {
    color: #FAAB18;
    margin-left: 0.5rem;
}
.header p {
    margin: 1.5rem 0 2rem;
    font-size: 1.15em;
    max-width: 400px;
    line-height: 1.8;
    opacity: 0.85;
}
.register-box {
    background: #fff;
    color: #000;
    padding: 1.75rem;
    border-radius: 20px;
    width: 400px;
    max-width: 100%;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    align-self: flex-start;
    display: grid;
    justify-items: center;
}
.register-box h2 {
    margin: 0 0 1.25rem;
    font-size: 1.4em;
    font-weight: 700;
}
.register-box input[type="text"],
.register-box input[type="email"] {
    width: 100%;
    margin: 0.75rem 0;
    padding: 0.85rem;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 0.95em;
    color: #333;
    background-color: #f5f5f5;
    transition: border-color 0.3s;
}
.register-box input[type="text"]:focus,
.register-box input[type="email"]:focus {
    outline: none;
    border-color: #FAAB18;
}
.register-box input[type="text"]::placeholder,
.register-box input[type="email"]::placeholder {
    color: #888;
}
.register-box label {
    display: flex;
    align-items: flex-start;
    margin: 1rem 0;
    font-size: 0.85em;
    position: relative;
    line-height: 1.5;
}
.register-box label input[type="checkbox"] {
    display: none;
}
.register-box label .checkmark {
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 2px solid #d1d1d1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    font-size: 0.9em;
    color: #fff;
    flex-shrink: 0;
    transition: border-color 0.3s;
}
.register-box label input[type="checkbox"]:checked + .checkmark {
    background-color: #28a745;
    border-color: #28a745;
}
.register-box label input[type="checkbox"]:checked + .checkmark::after {
    content: "✔";
}
.register-box button {
    width: 100%;
    padding: 0.85rem;
    background-color: #FAAB18;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 1em;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}
.register-box button:hover {
    background-color: #e08b00;
}
/* Exemplo de estilos mínimos para mensagens */

.register-box input[type="text"],
.register-box input[type="email"] {
    width: 100%;
    margin: 0.75rem 0;
    padding: 0.85rem;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 0.95em;
    color: #333;
    background-color: #f5f5f5;
    transition: border-color 0.3s;
}

.register-box input[type="text"]:focus,
.register-box input[type="email"]:focus {
    outline: none;
    border-color: #FAAB18;
}

.register-box input.error-input {
    border-color: #d90000;
}

.error-message {
    color: #d90000;
    font-size: 0.8em;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    background: #ffdede;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
}

#mensagem {
    margin-top: 20px;
}

.sucesso-box {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.sucesso-box h3 {
    margin-bottom: 1rem;
    color: #000;
    font-size: 1.3em;
    font-weight: 700;
}

.sucesso-box p {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1em;
    line-height: 1.5;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20b857;
}

.btn-whatsapp img {
    width: 20px;
    height: 20px;
}

.register-box button[type="submit"] {
    width: 100%;
    padding: 0.85rem;
    background-color: #FAAB18;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 1em;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    position: relative;
}

.register-box button[type="submit"]:disabled {
    background-color: #f0c040;
    cursor: not-allowed;
}

.erro {
    color: #d90000;
    background: #ffdede;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9em;
    text-align: center;
}  




.features {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 2.5rem 0;
    width: 90%;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 1rem;
}
.feature {
    border-radius: 100px;
    padding: 0.85rem 1.75rem 0.85rem 0.15rem;
    text-align: center;
    color: #fff;
    font-size: 1em;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap:5px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 200px;
    max-width: 100%;
    word-wrap: break-word;    /* Quebra palavras muito longas */
  overflow-wrap: break-word;
  white-space: normal;      /* Permite quebra de linha */
  text-align: left;
}

.icon {
    padding: 5px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    width: 40px;             /* ou defina um tamanho fixo, se necessário */
    height: 40px;            /* idem */
  }
  
  .icon-svg {
    width: 35px;             /* ou defina o tamanho desejado */
    height: 35px;
    padding: 2.5px;
  }

.feature:nth-child(1) { background: linear-gradient(90deg, #4361ee, #3b5bdb); }
.feature:nth-child(2) { background: linear-gradient(90deg, #7209b7, #560bad); }
.feature:nth-child(3) { background: linear-gradient(90deg, #f72585, #b5179e); }
.feature:nth-child(4) { background: linear-gradient(90deg, #f72585, #b5179e); }
.feature:nth-child(5) { background: linear-gradient(90deg, #7209b7, #560bad); }
.feature span {
    margin-left: 0.75rem;
}
.benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}
.benefit {
    background: #fff;
    color: #000;
    padding: 1.25rem;
    border-radius: 15px;
    text-align: center;
    width: 340px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.benefit h3 {
    margin: 0 0 1rem;
    color: #FAAB18;
    font-size: 1.2em;
    font-weight: 700;
}
.benefit table {
    width: 100%;
    border-collapse: separate;
    margin-bottom: 1rem;
}
.benefit td {
    padding: 0.6rem;
    text-align: center;
    font-size: 0.95em;
    
}

.benefit .highlight {
    background-color: #FAAB18;
    color: #fff;
    border-radius: 10px;
    padding: 0.6rem;
    font-weight: 600;
    font-size: 1.6em;
}
.benefit .price {
    font-size: 1.3em;
    font-weight: 700;
    margin: 0.75rem 0;
    color: #FAAB18;
}
.benefit .note {
    font-size: 0.85em;
    color: #666;
    line-height: 1.5;
}

/* Tablet and smaller screens */
@media (max-width: 1024px) {
    .container-eps {
        display: grid;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        gap: 2rem;
    }
    .header {
        text-align: center;
        flex: none;
        max-width: 100%;
    }
    .header h1 {
        font-size: 2.5em;
        justify-content: center;
    }
    .header p {
        max-width: 90%;
        margin: 1.25rem auto 1.75rem;
        font-size: 1.1em;
    }
    .register-box {
        width: 90%;
        max-width: 360px;
    }
    .features {
        gap: 1rem;
    }
    .feature {
        width: 45%;
        max-width: 320px;
        font-size: 0.95em;
        padding: 0.75rem 1.5rem;
    }
    .benefits {
        gap: 1.5rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .container-eps {
        margin: 1.5rem 0;
        padding: 0 0.75rem;
    }
    .header h1 {
        font-size: 2em;
    }
    .header p {
        font-size: 1em;
        max-width: 100%;
    }
    .register-box {
        padding: 1.25rem;
        width: 100%;
        max-width: 320px;
    }
    .register-box h2 {
        font-size: 1.2em;
    }
    .register-box input[type="text"],
    .register-box input[type="email"] {
        padding: 0.75rem;
        font-size: 0.9em;
    }
    .register-box label {
        font-size: 0.8em;
    }
    .register-box button {
        padding: 0.75rem;
        font-size: 0.95em;
    }
    .features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin: 2rem 0;
    }
    .feature {
        width: 90%;
        max-width: 300px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9em;
    }
    .benefits {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    .benefit {
        width: 90%;
        max-width: 320px;
        padding: 1rem;
    }
    .benefit h3 {
        font-size: 1.1em;
    }
    .benefit td {
        font-size: 0.9em;
    }
    .benefit .note {
        font-size: 0.8em;
    }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
    .container-eps {
        margin: 1rem 0;
    }
    .header h1 {
        font-size: 1.6em;
    }
    .header p {
        font-size: 0.95em;
    }
    .register-box {
        padding: 1rem;
    }
    .register-box input[type="text"],
    .register-box input[type="email"] {
        padding: 0.6rem;
        font-size: 0.85em;
    }
    .register-box label {
        font-size: 0.75em;
    }
    .register-box button {
        padding: 0.6rem;
        font-size: 0.9em;
    }
    .feature {
        width: 95%;
        padding: 0.6rem 1rem;
        font-size: 0.85em;
    }
    .benefit {
        padding: 0.75rem;
    }
    .benefit h3 {
        font-size: 1em;
    }
    .benefit td {
        font-size: 0.85em;
        padding: 0.5rem;
    }
    .benefit .highlight {
        padding: 0.5rem;
    }
    .benefit .note {
        font-size: 0.75em;
    }
}