.elementor-355 .elementor-element.elementor-element-85ceed2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-76659cd */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

header h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

header p {
    font-size: 1rem;
    color: #7f8c8d;
}

.content {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    text-align: center;
}

.info-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.feature-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.feature-item strong {
    display: block;
    margin-bottom: 5px;
    color: #2980b9;
}

.form-section {
    width: 100%;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.input-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

button {
    background-color: #3498db;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

button:hover {
    background-color: #2980b9;
}

.status-message {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #95a5a6;
    width: 100%;
}

/* Ajustes finos para telas muito pequenas */
@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .content {
        padding: 20px 15px;
    }
}/* End custom CSS */