/* Variáveis e Reset */
:root {
    --primary: #2C3E50;
    --secondary: #29b540;
    --accent: #0064a0;
    --light: #ECF0F1;
    --dark: #2C3E50;
    --text: #333333;
    --text-light: #7F8C8D;
    
    --font-main: 'Poppins', sans-serif;
    
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

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

img {
    max-width: 100%;
    height: auto;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--secondary);
}

.btn-primaryV {
    color: white;
    border: 2px solid var(--secondary);
}


.btn-primaryV:hover {
    background: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
    padding: 12px 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 30px;
}

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

.nav-list {
    display: flex;
    list-style: none;
    align-items: center; /* Isso alinha todos os itens verticalmente */

}

.nav-list li {
    margin-right: 20px; /* Reduzi um pouco o espaçamento */
    display: flex;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover {
    color: var(--accent);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero */
.hero {
    padding: 150px 0 10px;
    background: 
        linear-gradient(
            135deg, 
            rgba(44, 62, 80, 0.9) 50%,  /* Gradiente com opacidade */
            rgba(41, 181, 64, 0.9) 100%
        ),
        url(../Imagens/Diversas/hero-dashboard.png) center/cover no-repeat fixed;
    color: white;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.hero-content {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Solutions */
.solutions {
    padding: 80px 0;
    background: var(--light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.solution-icon {
    margin-bottom: 20px;
}

.solution-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

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

/* Features */
.features {
    padding: 80px 0;
}

.features .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.features-content {
    flex: 1;
}

.features-image {
    flex: 1;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    background: url('images/icons/check.svg') no-repeat center;
    background-size: contain;
}

.features-list h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Clients */
.clients {
    padding: 80px 0;
    background: var(--light);
}

.clients-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.client-logo {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 200px;
    cursor: pointer;
}

.client-logo img {
    max-height: 90%;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    padding: 10px;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA */
.cta {
    padding: 60px 0;
    background: var(--accent);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact .container {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 1;
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info li img {
    margin-right: 15px;
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 0;
}

.footer .container {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 992px) {
    .hero .container,
    .features .container,
    .contact .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .features-content,
    .features-image,
    .contact-form,
    .contact-info {
        width: 100%;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .footer .container {
        flex-wrap: wrap;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        flex: 1 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        flex: 1 0 100%;
    }
}