/* Variáveis */
:root {
    --primary-color: #2F4858; /* Deep teal/blue-gray */
    --primary-light: #455B6B; /* Lighter teal */
    --primary-dark: #1D3040; /* Darker teal */
    --accent-color: #6D9FB2; /* Complementary blue accent */
    --dark-color: #333;
    --light-color: #fff;
    --text-color: #444;
    --text-light: #777;
    --bg-color: #fafafa;
    --border-color: #eee;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --border-radius-sm: 6px;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* .footer-container {
    max-width: 100%;
    padding: 0 20px;
} */

section {
    padding: 80px 0;
    position: relative;
}

/* Botões e CTAs */
.cta-button, .cta-primary, .cta-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cta-button, .cta-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(47, 72, 88, 0.3);
}

.cta-secondary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-button:hover, .cta-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 72, 88, 0.4);
}

.cta-secondary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(47, 72, 88, 0.3);
}

.text-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    transition: var(--transition);
}

.text-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary-dark);
}

.text-link:hover i {
    transform: translateX(5px);
}

/* Cabeçalhos de Seção */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Header e Navegação */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Encontre esta seção no CSS */
.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 800;
    /* Adicione a nova fonte aqui */
    font-family: 'Cinzel', sans-serif;
}

.logo span {
    color: var(--primary-color);
}

.logo p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    /* Adicione a nova fonte aqui também, se quiser que o subtexto combine */
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

nav a:hover::after, 
nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: grayscale(30%); /* Adds some grayscale to the video */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Updated gradient with light gray (#e0e0e0) mixed with the teal colors */
    background: linear-gradient(to right, 
    rgba(47, 72, 88, 0.7), 
    rgba(109, 159, 178, 0.7)), 
    rgba(224, 224, 224, 0.3); /* Light gray overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
}

.hero h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Serviços */
.services {
    background-color: var(--light-color);
}

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

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(47, 72, 88, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Abordagem */
.approach {
    background-color: var(--bg-color);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.approach-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.approach-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.approach-text p {
    margin-bottom: 20px;
}

.approach-text ul {
    margin-bottom: 30px;
}

.approach-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.approach-text li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

.approach-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Depoimentos */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: none;
    border: 1px solid var(--border-color);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-color);
}

.client-info h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background-color: var(--primary-light);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-light);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 16px 35px;
    font-size: 1.1rem;
}

.cta-section .cta-primary:hover {
    background-color: var(--light-color);
    color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: #2a2a2a;
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    /* margin-bottom: 40px; */
}

.footer-info {
    max-width: 350px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    opacity: 0.7;
    margin-bottom: 15px;
}

.footer-bio {
    opacity: 0.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.footer-contact h4,
.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after,
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-contact ul,
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Página Sobre */
.page-header {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    padding: 120px 0 60px;
}

.page-header h2 {
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-section {
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.badge {
    background-color: var(--primary-light);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    font-size: 0.8rem;
}

.about-text h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 20px;
}

.experience-list {
    margin-bottom: 30px;
}

.experience-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.experience-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

.approach-highlights {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.approach-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.approach-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(147, 112, 219, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.approach-item h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.approach-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

.education-list {
    margin-bottom: 30px;
}

.education-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.education-year {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 120px;
}

.education-list h4 {
    margin-bottom: 5px;
}

.education-list p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.languages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.language-badge {
    background-color: rgba(147, 112, 219, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.language-badge small {
    font-weight: normal;
    opacity: 0.8;
}

/* Página Contato */
.contact-section {
    background-color: var(--light-color);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(147, 112, 219, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background-color: var(--primary-color);
    color: white;
}

.contact-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.contact-card:hover .contact-link i {
    transform: translateX(5px);
}

.contact-form {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(147, 112, 219, 0.1);
}

.privacy-policy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-policy input {
    width: auto;
    margin-top: 5px;
}

.privacy-policy label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form .cta-button {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.faq-section {
    margin-top: 70px;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsividade */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        padding: 120px 0 80px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .approach-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-image,
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav li {
        margin: 10px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .approach-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .approach-icon {
        margin-bottom: 15px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .education-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .education-year {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info {
        grid-column: span 1;
    }
}


/* Acessibilidade */
:focus {
    outline: 3px solid rgba(147, 112, 219, 0.5);
    outline-offset: 2px;
}

/* Estilos de Validação de Formulário */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--accent-color);
}

.form-group .error-message {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Mensagem de Sucesso */
.form-success {
    background-color: rgba(92, 184, 92, 0.1);
    border: 1px solid #5cb85c;
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-bottom: 20px;
    color: #5cb85c;
    display: none;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}


.language-switcher {
    margin-left: 20px;
    font-size: 14px;
}

.language-switcher a {
    color: #666;
    text-decoration: none;
    padding: 3px 5px;
}

.language-switcher a.active {
    color: #4a90e2;
    font-weight: bold;
}

.language-switcher a:hover {
    text-decoration: underline;
}
