/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4A6;
    --gold-dark: #B8941F;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-light: #F8F8F8;
    --gray-medium: #E5E5E5;
    --gray-dark: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 100px;
    height: 60px;
    border-radius: 5%;
    object-fit: cover;
    border: 0px solid var(--gold);
}

.logo-fet {
    width: 250px;
    height: 150px;
    border-radius: 5%;
    object-fit: cover;
}

.logo-perf {
    width: 350px;
    height: 550px;
    border-radius: 0%;
    object-fit: cover;
	border: 0px solid var(--gold);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--black);
    margin: 0;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--gold);
    margin: 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.8) 0%), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0.8;
    animation: float 2s ease-in-out infinite;
    position: relative;
}

.hero-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3) url('logocirc.png');
    backdrop-filter: blur(10px);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-mission {
    font-size: 1.1rem;
    color: var(--black);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gold-light), rgba(244, 228, 166, 0.3));
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.about-highlight i {
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.about-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--black);
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--gray-light);
}

.services2 {
    padding: 6rem 0;
    background: var(gold-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}


.info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--black);
    font-weight: 300;
}

.info-value {
    color: var(--gray-dark);
    font-weight: 300;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.price-details p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.price-details ul {
    list-style: none;
    text-align: left;
}

.price-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
}

.price-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: bold;
}

.pricing-info {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--gold-dark);
}

/* Contact Form */
.contact-form-container {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-info h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
}

.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-dark);
    color: var(--gray-medium);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-circle {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-circle {
        width: 250px;
        height: 250px;
    }
    
    .service-card,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

/* Tertiary Button */
.btn-tertiary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-tertiary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Self-Assessment Section */
.self-assessment {
    padding: 6rem 0;
    background: var(--gray-light);
}

.assessment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.assessment-intro {
    position: sticky;
    top: 120px;
}

.intro-text h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.assessment-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.assessment-note i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.assessment-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--black);
}

/* Assessment Form */
.assessment-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.assessment-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.question-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.radio-option:hover {
    background: var(--gray-light);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-medium);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--gold);
    background: var(--gold);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.radio-option span:not(.radio-custom) {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.4;
}

/* Assessment Results */
.assessment-result {
    margin-top: 2rem;
    padding: 2.5rem;
    background: var(--gray-light);
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.result-header h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin: 0;
}

.result-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.score-label {
    color: var(--gray-dark);
    font-weight: 500;
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.score-total {
    color: var(--gray-dark);
    font-weight: 500;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-interpretation {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.result-interpretation h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.result-interpretation p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-interpretation ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.result-interpretation li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
}

.result-interpretation li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.result-recommendation {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
}

.result-recommendation h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.result-recommendation p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Score-based styling */
.score-excellent {
    color: #27ae60;
}

.score-good {
    color: #2ecc71;
}

.score-moderate {
    color: #f39c12;
}

.score-concerning {
    color: #e67e22;
}

.score-critical {
    color: #e74c3c;
}

/* Responsive Design for Assessment */
@media (max-width: 768px) {
    .assessment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .assessment-intro {
        position: static;
    }
    
    .assessment-form-container {
        padding: 2rem;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .result-actions .btn {
        width: 100%;
    }
    
    .radio-group {
        padding-left: 0;
    }
    
    .radio-option {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .assessment-form-container {
        padding: 1.5rem;
    }
    
    .assessment-result {
        padding: 1.5rem;
    }
    
    .result-interpretation,
    .result-recommendation {
        padding: 1.5rem;
    }
    
    .question-label {
        font-size: 1rem;
    }
    
    .score-value {
        font-size: 1.5rem;
    }
}

/* Animation for results */
.assessment-result {
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for form submission */
.assessment-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.assessment-form.loading .btn {
    position: relative;
}

.assessment-form.loading .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Estilo para o campo de data */
input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: arial;
}

/* Garantir que todos os selects tenham a mesma aparência */
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background-color: white;
}
