/* Paleta baseada no rodapé da imagem */
:root {
    --azul-escuro: #223154;
    --azul-escuro-2: #2c3a5a;
    --dourado: #bfa97a;
    --branco: #fff;
    --cinza-linha: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--azul-escuro);
    background-color: var(--branco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: none;
}
.header .nav-link {
    color: #223154;
    background: #bfa97a;
    border: 1px solid #bfa97a;
}
.header .nav-link:hover {
    color: #bfa97a;
    background: transparent;
    border: 1px solid #bfa97a;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--azul-escuro);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1px solid var(--dourado);
    border-radius: 5px;
    font-size: 14px;
    background: var(--dourado);
    box-shadow: none;
}

.nav-link:hover {
    background: transparent;
    color: var(--dourado);
    border-color: var(--dourado);
}

/* Hero Section */
.hero {
    background: var(--branco);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    text-align: center;
}

.hero-bg-lebasq {
    background: linear-gradient(rgba(34,49,84,0.7), rgba(34,49,84,0.7)), url('115A7596.jpg') center center/cover no-repeat, #fff;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    text-align: center;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: transparent;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: none;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--branco);
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dourado);
    font-weight: 600;
    opacity: 0.95;
    text-align: center;
    width: 100%;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--branco);
    text-align: center;
    width: 100%;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: 1px solid var(--dourado);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    background: var(--dourado);
    color: var(--azul-escuro);
    box-shadow: none;
}

.btn-primary {
    background: var(--dourado);
    color: var(--azul-escuro);
    border: 1px solid var(--dourado);
}

.btn-primary:hover {
    background: transparent;
    color: var(--dourado);
    border: 1px solid var(--dourado);
    box-shadow: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cadastro Section */
.cadastro {
    padding: 80px 0;
    background: var(--branco);
}

.cadastro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dourado);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--azul-escuro);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.cadastro-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
    border: 1px solid var(--cinza-linha);
}

.form-section {
    padding: 2rem;
    border-bottom: 1px solid var(--cinza-linha);
    background: var(--branco);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dourado);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--dourado);
    display: inline-block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--azul-escuro);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--cinza-linha);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--branco);
    color: var(--azul-escuro);
    box-shadow: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dourado);
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7a869a;
    opacity: 1;
    font-weight: 400;
}

/* Checkbox personalizado */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: var(--azul-escuro);
    background: transparent;
}

.checkbox-label:hover {
    background-color: #f5f5f5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--cinza-linha);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--branco);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--dourado);
    border-color: var(--dourado);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--azul-escuro);
    font-size: 12px;
    font-weight: bold;
}

/* Form Submit */
.form-submit {
    padding: 2rem;
    text-align: center;
    background: var(--branco);
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dourado);
}

/* Footer */
.footer {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-company {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dourado);
    font-size: 2rem;
}

.footer-cnpj {
    font-size: 0.9rem;
    color: var(--branco);
    margin-bottom: 1rem;
}

.footer-contact h3,
.footer-links h3 {
    margin-bottom: 1rem;
    color: var(--dourado);
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--branco);
}

.contact-item i {
    color: var(--dourado);
    width: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--dourado);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cinza-linha);
    color: var(--branco);
    font-size: 0.9rem;
}

hr, .footer-bottom {
    border-color: var(--cinza-linha);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cadastro-form {
        margin: 0 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    .hero-bg-lebasq {
        min-height: 40vh;
        padding-top: 80px;
    }
    .hero-content {
        padding: 20px 8px;
        max-width: 98vw;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cadastro-form {
        margin: 0;
        border-radius: 0;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

html {
    scroll-behavior: smooth;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.success-message::before {
    content: '✅';
    font-size: 24px;
    margin-right: 10px;
    display: inline-block;
    animation: bounce 0.6s ease-in-out;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.error-message::before {
    content: '❌';
    font-size: 24px;
    margin-right: 10px;
    display: inline-block;
    animation: shake 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid {
    border-color: var(--dourado);
}

.form-group label[for*="nome"]::after,
.form-group label[for*="cpf"]::after,
.form-group label[for*="email"]::after,
.form-group label[for*="telefone"]::after,
.form-group label[for*="dataNascimento"]::after,
.form-group label[for*="endereco"]::after,
.form-group label[for*="cidade"]::after,
.form-group label[for*="estado"]::after,
.form-group label[for*="cep"]::after {
    content: " *";
    color: #dc3545;
} 

.required {
    color: #dc3545;
    font-weight: bold;
    font-size: 1em;
    margin-left: 2px;
} 