:root {
    --primary-navy: #1a2942;
    --secondary-navy: #0d1829;
    --gold: #c9a961;
    --light-bg: #f5f3ed;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--light-bg);
    color: #333;
    overflow-x: hidden;
    background-image: url('images/fundo2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.logo{
    width: 20%;
}

.logo-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0;
}

.logo-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hero-section {
    padding: 4rem 0;
    position: relative;
    border-bottom: 3px solid var(--gold);
}

.mystical-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.content-section {
    max-width: 80%;
    margin: 0 auto;
    background-color: #ddd;
}

.main-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
    margin-top: 1em;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.form-container {
    padding: 2rem;
}

.form-control {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}

.btn-submit {
    background: var(--primary-navy);
    color: white;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--secondary-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.security-note {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
}

.footer-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.social-icons {
    margin-bottom: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-navy);
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.5);
}

.social-icons img{
    width: 40px;
}

.copyright {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.success-message.show {
    display: block;
}

.success-message h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo{
        width: 40%;
    }
    .logo-title {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .content-section .container {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .logo{
        width: 60%;
    }
    .header-section {
        padding: 1.5rem 0;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .mystical-icon {
        width: 80px;
        height: 80px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .content-section .container {
        max-width: 90%;
    }
}