:root {
    --primary-color: #3498db;
    --accent-color: #ff6b24;
    --dark-bg: #1a2432;
    --light-text: #ffffff;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn:hover {
    background-color: #e55e20;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background-color: var(--dark-bg);
    background-image: url("img/fundo-site.png");
    background-size: cover;
    color: var(--light-text);
    padding: 20px 0;
    position: relative;
    height: 1080px;

    padding-top: 80px;
}



.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 1;
    /*max-width: 600px;*/
    background-color: #1a243299;
    padding: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
}

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

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

/* nav */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(20, 30, 45, 0.8);
    border-radius: 0;
    /* Removido o border-radius para ocupar a largura total */
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 1000;
    /* Aumentado para garantir que esteja acima de outros elementos */
    width: 100%;
    /* Ocupando a largura total */
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    /* Transição suave para mudanças de estilo */
}

/* Estilo para o menu quando rolado */
nav.scrolled {
    padding: 10px 20px;
    /* Reduz o padding quando rolado */
    background-color: rgba(20, 30, 45, 0.95);
    /* Cor mais sólida quando rolado */
}

/* Ajuste para conteúdo dentro do nav */
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}


.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}



/* Menu responsivo para dispositivos móveis */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        /* Ajuste conforme a altura do seu nav */
        left: 0;
        width: 100%;
        background-color: rgba(20, 30, 45, 0.95);
        flex-direction: column;
        padding: 20px 0;
        clip-path: circle(0px at 90% -10%);
        -webkit-clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
        display: flex;
        padding-left: 30px;
    }

    .nav-links li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-links li.fade {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    color: var(--primary-color);
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
}

.contact-section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Media Contact Grid */
.social-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.social-media-grid .contact-item {
    margin: 5px 0;
    background: none;
    padding: 5px;
    justify-content: flex-start;
}

.social-media-grid .contact-item i {
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .social-media-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.service-icon {
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 24px;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.industry-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.industry-item i {
    margin-right: 15px;
    font-size: 24px;
    color: var(--accent-color);
}

/* Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 107, 36, 0.3);
    z-index: 0;
}

/* Support Section */
.support-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.support-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #666;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
}

.support-card h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.support-card ul {
    list-style-type: none;
}

.support-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.support-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}




/* partner Section */
.partner-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #666;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
}

.partner-card h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.partner-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.partner-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.partner-icon img {
    max-width: 200px;
    max-height: 100px;
    height: auto;
}

.partner-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

/* Ajuste opcional para dispositivos móveis */
@media (max-width: 576px) {
    .partner-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .partner-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}



/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-item i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 20px;
}

.contact-item a {
    color: var(--light-text);
    text-decoration: none;
}

.contact-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    min-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*
        .contact-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }*/

.contact-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-box .contact-item {
    background: none;
    padding: 5px;
    justify-content: center;
}

.contact-box .contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-box p a {
    color: var(--light-text);
    text-decoration: none;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #142638;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .process-line {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .nav-links {
        display: none;
    }
}