/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta baseada em #3cb2c3 */
    --primary-color: #3cb2c3;
    --primary-dark: #2a8a9b;
    --primary-light: #5fc4d3;
    --secondary-color: #2c7a89;
    --accent-color: #60d4e8;
    --warm-accent: #f39c12;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --background-light: #f8fcfd;
    --background-section: #ffffff;
    --border-light: #e1f4f7;
    --shadow-light: rgba(60, 178, 195, 0.1);
    --shadow-medium: rgba(60, 178, 195, 0.2);
    --gradient-primary: linear-gradient(135deg, #3cb2c3 0%, #2c7a89 100%);
    --gradient-hero: linear-gradient(135deg, #3cb2c3 0%, #2a8a9b 50%, #1e6b7a 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 25px var(--shadow-light);
    transition: all 0.3s ease;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-nav:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--background-light), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo .logo-image {
    width: 320px;
    height: 320px;
    object-fit: contain;
    margin-bottom: 2rem;
    margin-top: 4rem;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: var(--accent-color);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 1rem 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(60, 178, 195, 0.05);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    position: relative;
}


.about-features li:hover {
    background: rgba(60, 178, 195, 0.1);
    transform: translateX(10px);
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow-light);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Services Section */
#servicos {
    background: linear-gradient(135deg, var(--background-light) 0%, #ecf8fa 100%);
    padding: 6rem 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

#servicos h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

#servicos h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.servico {
    background: var(--background-section);
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
    max-width: 800px;
}

.servico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.servico::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.servico:hover::before {
    transform: scaleX(1);
}

.servico:hover::after {
    opacity: 0.1;
}

.servico h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    position: relative;
    padding-left: 3rem;
    display: flex;
    align-items: center;
}

/* Ícones específicos para cada serviço */
.servico h3::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-weight: normal;
}

.servico:nth-child(2) h3::before { content: '🎯'; } /* Orientação Vocacional */
.servico:nth-child(3) h3::before { content: '👥'; } /* Avaliação Psicossocial */
.servico:nth-child(4) h3::before { content: '🧠'; } /* Avaliação Neurológica */
.servico:nth-child(5) h3::before { content: '📋'; } /* Avaliação para Concursos */
.servico:nth-child(6) h3::before { content: '🛡️'; } /* Avaliação de Porte de Arma */
.servico:nth-child(7) h3::before { content: '🚀'; } /* Treinamento Motivacional */
.servico:nth-child(8) h3::before { content: '💼'; } /* Orientação Profissional */

.servico p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-left: 3rem;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-item {
    background: rgba(60, 178, 195, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-item:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 10px 30px var(--shadow-light);
    transform: translateY(-8px);
}

.mission-item:hover::before {
    transform: scaleX(1);
}

.mission-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-hero);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaPattern)"/></svg>');
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin: 0.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
    text-decoration: none;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.blue {
    background: var(--primary-color);
    color: white;
}

.cta-button.blue:hover {
    background: var(--primary-dark);
    color: white;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    background: var(--background-light);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-detail {
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.contact-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-detail h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.contact-detail-content strong {
    color: var(--primary-color);
}

/* Mapa */
.mapa-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    box-shadow: 0 8px 20px var(--shadow-light);
    margin-top: 2rem;
}

.mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(60, 178, 195, 0.02);
}

.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 var(--shadow-light);
    background: white;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Notifications */
.form-notification {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    animation: slideInDown 0.3s ease;
}

.form-notification.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.notification-icon {
    margin-right: 1rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
}

.notification-message {
    flex: 1;
    color: #155724;
}

.form-notification.error .notification-message {
    color: #721c24;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    margin-left: 1rem;
}

.char-counter {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #104851;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footerPattern)"/></svg>');
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #e8f4f8;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-subtitle {
    color: #bdc3c7;
    font-style: italic;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 280px;
    height: auto;
    filter: brightness(1.2);
}

.footer-badge {
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.footer-contact .contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    margin: 30px 0;
}

.footer-copyright {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

.footer-tagline {
    margin: 0;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Floating Buttons */
.whatsapp-float,
.phone-float {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float {
    right: 20px;
    background: #25D366;
}

.phone-float {
    right: 90px;
    background: var(--primary-color);
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.phone-float {
    animation-name: pulse-blue;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(60, 178, 195, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(60, 178, 195, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(60, 178, 195, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo .logo-image {
        width: 250px;
        height: 250px;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .phone-float {
        right: 20px;
        bottom: 90px;
    }
    
    .servico {
        margin: 1.5rem 0;
        padding: 2rem;
    }
    
    .servico h3 {
        font-size: 1.3rem;
        padding-left: 2.5rem;
    }
    
    .servico h3::before {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .servico p {
        margin-left: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-logo .logo-image {
        width: 200px;
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .servico {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .servico h3 {
        font-size: 1.2rem;
        padding-left: 2rem;
    }
    
    .servico h3::before {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .servico p {
        margin-left: 2rem;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-detail {
        padding: 1.5rem;
    }
    
    .mission-item {
        padding: 2rem 1.5rem;
    }
    
    #servicos {
        padding: 4rem 0;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .mission {
        padding: 4rem 0;
    }
    
    .contact {
        padding: 4rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skip Link para Acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 2000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero,
    header,
    .footer,
    .whatsapp-float,
    .phone-float,
    .cta-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin: 1rem 0;
    }
    
    .servico {
        break-inside: avoid;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #2a8a9b;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-light: #666666;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-logo .logo-image {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ecf0f1;
        --text-secondary: #bdc3c7;
        --background-light: #2c3e50;
        --background-section: #34495e;
        --border-light: #4a5f7a;
    }
    
    body {
        background-color: var(--background-light);
    }
    
    .servico,
    .contact-detail,
    .contact-form {
        background: var(--background-section);
        border-color: var(--border-light);
    }
}

/* NR1 */

.nr1-alert-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .nr1-alert-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .nr1-alert-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .nr1-alert-section .nr1-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .nr1-alert-section .nr1-badge {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 30px;
            animation: nr1-pulse 2s infinite;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }

        @keyframes nr1-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .nr1-alert-section .nr1-header {
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }

        .nr1-alert-section .nr1-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            margin-top: 0;
        }

        .nr1-alert-section .nr1-header .highlight {
            color: #ffd93d;
            font-weight: 800;
        }

        .nr1-alert-section .nr1-header p {
            font-size: 22px;
            opacity: 0.95;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .nr1-alert-section .nr1-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .nr1-alert-section .nr1-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            color: white;
        }

        .nr1-alert-section .nr1-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .nr1-alert-section .nr1-card-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 217, 61, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .nr1-alert-section .nr1-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ffd93d;
            margin-top: 0;
        }

        .nr1-alert-section .nr1-card p {
            font-size: 16px;
            line-height: 1.7;
            opacity: 0.95;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .nr1-alert-section .nr1-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .nr1-alert-section .nr1-card ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 15px;
        }

        .nr1-alert-section .nr1-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ffd93d;
            font-weight: bold;
        }

        .nr1-alert-section .nr1-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0;
            padding: 40px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
        }

        .nr1-alert-section .nr1-stat {
            text-align: center;
            color: white;
        }

        .nr1-alert-section .nr1-stat-number {
            font-size: 42px;
            font-weight: bold;
            color: #ffd93d;
            display: block;
            margin-bottom: 10px;
        }

        .nr1-alert-section .nr1-stat-label {
            font-size: 15px;
            opacity: 0.9;
        }

        .nr1-alert-section .nr1-cta {
            text-align: center;
            padding: 50px 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .nr1-alert-section .nr1-cta h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #ffd93d;
            margin-top: 0;
        }

        .nr1-alert-section .nr1-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 0;
        }

        .nr1-alert-section .nr1-button {
            display: inline-block;
            background: #ffd93d;
            color: #1e3c72;
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 217, 61, 0.4);
            border: none;
            cursor: pointer;
        }

        .nr1-alert-section .nr1-button:hover {
            background: #ffed4e;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 217, 61, 0.6);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .nr1-alert-section {
                padding: 60px 20px;
            }

            .nr1-alert-section .nr1-header h2 {
                font-size: 36px;
            }

            .nr1-alert-section .nr1-header p {
                font-size: 18px;
            }

            .nr1-alert-section .nr1-content {
                grid-template-columns: 1fr;
            }

            .nr1-alert-section .nr1-stats {
                grid-template-columns: 1fr;
            }

            .nr1-alert-section .nr1-cta h3 {
                font-size: 26px;
            }

            .nr1-alert-section .nr1-cta p {
                font-size: 16px;
            }

            .nr1-alert-section .nr1-button {
                padding: 16px 40px;
                font-size: 16px;
            }
        }
        
        
        /* ============================================
   ESTILOS DO FORMULÁRIO DE CONTATO
   ============================================ */

.form-notification {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-notification.success {
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.form-notification.error {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notification-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.notification-message {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    line-height: 1;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Melhorias no formulário de contato */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-form .submit-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .submit-btn:hover:not(:disabled) {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}