/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 120px;
    width: auto;
}

.nav-menu {
    display: none; /* Menu antigo removido */
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 1001;
}

.menu-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a2332;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: white;
}

.close-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.close-icon {
    position: relative;
    width: 25px;
    height: 25px;
}

.close-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 2px;
    background: white;
    transform-origin: center;
}

.close-icon span:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.close-icon span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

.menu-content {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-link {
    color: white;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #C8860D;
}

.menu-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
    text-align: right;
}

.menu-section h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.menu-section p {
    color: #8892b0;
    font-size: 16px;
    line-height: 1.5;
}

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

.social-links a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.menu-cta .cta-button {
    background: #C8860D;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-cta .cta-button:hover {
    background: #a06f0a;
    transform: translateY(-2px);
}o Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
    color: white;
    z-index: 1;
    padding-left: 60px;
    padding-top: 120px;
}

.hero-content {
    text-align: left;
    z-index: 2;
    max-width: 600px;
}

.hero-text {
    /* Container para o texto */
}

.hero-welcome {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #C8860D;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-animated-text {
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-animated-text span {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #C8860D;
    display: block;
    text-align: left;
    transition: opacity 0.5s ease;
}

/* Seções com animação de scroll reveal */
.about,
.services,
.projects,
.cta {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.about.reveal,
.services.reveal,
.projects.reveal,
.cta.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #C8860D;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #C8860D;
}

.cta-button:hover {
    background: transparent;
    color: #C8860D;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 134, 13, 0.3);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C8860D;
    border-radius: 50%;
    color: white;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #1a1a2e;
    color: white;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    color: #C8860D;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services .section-title {
    color: white;
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 134, 13, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(200, 134, 13, 0.1);
    border-color: #C8860D;
    box-shadow: 0 20px 50px rgba(200, 134, 13, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: white;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: #C8860D;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #C8860D;
}

.cta-button-outline:hover {
    background: #C8860D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 134, 13, 0.3);
}

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

.project-card {
    height: 300px;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.project-content {
    position: relative;
    z-index: 2;
}

.project-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.project-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.cta-label {
    color: #C8860D;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #0f0f1a;
    color: white;
}

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

.footer-info p {
    color: #ccc;
    margin-bottom: 5px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a1a2e;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        order: -1;
    }
    
    .hero {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 100px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-animated-text span {
        text-align: center;
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .menu-content {
        flex-direction: column;
        padding: 60px 30px;
        gap: 60px;
        text-align: center;
    }
    
    .menu-info {
        align-items: center;
        text-align: center;
    }
    
    .menu-link {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .menu-close {
        top: 20px;
        right: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .about,
    .services,
    .projects,
    .cta-section {
        padding: 60px 0;
    }
    
    .service-card,
    .project-card {
        margin: 0 10px;
    }
}

