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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-secondary-custom {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-custom {
    background: white;
    color: #667eea;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-custom:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Soluções Section */
.solucoes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solucao-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
}

.solucao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.solucao-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.solucao-card p {
    color: #718096;
    line-height: 1.8;
}

/* Recursos Section */
.recursos-section {
    padding: 80px 0;
    background: white;
}

.recursos-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.recursos-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recurso-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.recurso-item i {
    font-size: 1.8rem;
    color: #667eea;
    margin-top: 5px;
}

.recurso-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.recurso-item p {
    color: #718096;
}

.recursos-image {
    display: flex;
    justify-content: center;
}

.stats-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    text-align: center;
}

.stat {
    margin-bottom: 2rem;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* Acesso Section */
.acesso-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
}

.acesso-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.acesso-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.acesso-form .form-group {
    margin-bottom: 1.5rem;
}

.acesso-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.acesso-form label i {
    color: #667eea;
    margin-right: 5px;
}

.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-control-custom:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-access {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-access:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-access i {
    margin-right: 8px;
}

.acesso-info {
    margin-top: 1.5rem;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

.acesso-info i {
    color: #667eea;
}

/* Parceria Section */
.parceria-section {
    padding: 80px 0;
    background: white;
}

.parceria-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.parceria-text {
    padding-right: 2rem;
}

.parceria-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.parceria-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.parceria-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.parceria-item i {
    font-size: 1.6rem;
    color: #667eea;
    margin-top: 3px;
    min-width: 30px;
}

.parceria-item div {
    flex: 1;
}

.parceria-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: #2d3748;
}

.parceria-item p {
    color: #718096;
    font-size: 0.95rem;
}

.btn-womm {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-womm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.btn-womm i {
    margin-right: 8px;
}

.parceria-logo {
    display: flex;
    justify-content: center;
}

.logo-box {
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.logo-box img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.logo-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.logo-box p {
    color: #718096;
    font-size: 0.95rem;
}

/* Footer */
.footer-section {
    background: #2d3748;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li i {
    margin-right: 8px;
    color: #667eea;
}

.whatsapp-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #25D366;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 500;
}

.whatsapp-link:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

.whatsapp-link i {
    font-size: 1.3rem;
    margin-right: 8px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-bottom p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-divider {
    margin: 0 15px;
    color: rgba(255,255,255,0.4);
}

.footer-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Loading */
#loading {
    display: none;
    background-color: rgba(255,255,255,0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.loader {
    border: 5px solid rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    border-top: 5px solid #667eea;
    width: 130px;
    height: 130px;
    -webkit-animation: spin 0.7s linear infinite;
    animation: spin 0.7s linear infinite;
    margin-top: 300px;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .solucoes-grid {
        grid-template-columns: 1fr;
    }

    .recursos-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-box {
        width: 100%;
    }

    .acesso-form {
        padding: 2rem 1.5rem;
    }

    .parceria-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .parceria-text {
        padding-right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-divider {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}