:root {
    --primary-color: #74B9DB; /* Tom de azul do projeto solicitado */
    --primary-dark: #5aa1c4; /* Um pouco mais escuro para hover */
    --secondary-color: #f7f9fc; /* Fundo ainda mais claro */
    --text-color: #555; /* Texto mais suave */
    --heading-color: #74B9DB;
    --bg-color: #fff;
    --modal-bg: rgba(0, 0, 0, 0.4); /* Overlay mais suave */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.logo {
    max-width: 250px; /* Logo maior */
    width: 100%;
    margin-bottom: 40px; /* Mais espaço entre logo e card */
}

.container {
    background-color: var(--bg-color);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(116, 185, 219, 0.15); /* Sombra suave azulada */
    text-align: center;
    width: 100%;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #777;
    font-weight: 400;
}

.domain {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 30px 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px; /* Botão mais arredondado */
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 185, 219, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 185, 219, 0.4);
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: var(--modal-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px); /* Efeito de desfoque no fundo */
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto; 
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    color: #ccc;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #666;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(116, 185, 219, 0.1);
    background-color: #fff;
}

textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 185, 219, 0.3);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 185, 219, 0.4);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#formStatus {
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}
