body {
    margin: 0;
    font-family: Arial, sans-serif;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 64px;
    width: auto;
}

.desktop-menu {
    display: none;
    margin-left: 40px;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e40af;
}

.mobile-menu-button {
    display: block;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.mobile-menu.show {
    display: block;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #1e40af;
}

#about {
    margin-top: 40px;
    background: #c5cfd8;
    padding-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    /* background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); */
    background: linear-gradient(135deg, #f1f5f9 0%, #c5cfd8 100%);
    padding-bottom: 5rem;
    text-align: center;
}

.hero-content {
    max-width: 768px;
    margin: 0 auto;
    padding-top: 5rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-button {
    background: #1e40af;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: black;
    max-width: 768px;
    margin: 0 auto;
    text-align: justify;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #1e40af;
    border-radius: 50%;
}

.services-card {
    background: linear-gradient(135deg, #dbeafe 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 8px;
}

.services-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f9fafb;
    padding-top: 2rem;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info {
    background: #e4e9ed;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    margin-top: 10px;
}

.contact-text {
    color: #4b5563;
}

/* Contact Form */
.contact-form-card {
    background: #e4e9ed;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

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

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

.form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: arial;
}

.form-submit-btn {
    background: #1d547c;
    color: white;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100px;
}

.form-submit-btn:hover {
    background: #1d4ed8;
}

.icone-form {
    margin-right: 5px;
}

.link-form {
    text-decoration: none;
    color: black;
}

.link-form:hover {
    color: #3f3c3c;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 1rem 0;
}

.footer-grid {
    display: grid;
    gap: 10rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #d1d5db;
    margin-bottom: 1rem;
    margin-top: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-list {
    list-style: none;
    color: #d1d5db;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-contact {
    color: #d1d5db;
}

.footer-contact p {
    margin-bottom: 0.8em;
    margin-top: 0;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-copyright {
    color: #d1d5db;
}

.icone-social {
    color: #fff;
    font-size: 20px;
}

.social-link {
    margin-right: 10px;
    text-decoration: none;
}

.link-rodape {
    text-decoration: none;
    color: #fff;
}

.icone-rodape {
    margin-right: 5px;
}

.footer-localizacao {
    margin-left: 17px;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

.nav-link,
.mobile-nav-link,
.cta-button,
.form-submit-btn {
    transition: all 0.3s ease;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

svg#LinceWeb {
    cursor: pointer;
}

.link-rodape:hover {
    color: #a7a6a6;
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 1rem;
    }

    .footer {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        margin-top: -20px;
        align-items: center;
    }
}

#label-nome {
    margin-top: 10px;
}