* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #003d5c;
            --secondary-color: #ff5722;
            --dark-blue: #002838;
            --light-blue: #e6f2f7;
            --text-dark: #1a1a1a;
            --text-light: #666;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background: #f5f7fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 15px rgba(0,61,92,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-container img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95em;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .header-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .portal-btn {
            background: white;
            color: var(--primary-color);
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            font-size: 0.9em;
            border: 2px solid var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .portal-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 61, 92, 0.2);
        }

        .portal-btn i {
            font-size: 1.1em;
        }

        /* Tooltip para mobile */
        .portal-btn::after,
        .header-cta::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            background: var(--dark-blue);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.75em;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s;
            pointer-events: none;
            z-index: 1000;
        }

        @media (max-width: 480px) {
            .portal-btn:hover::after,
            .header-cta:hover::after {
                opacity: 1;
                transform: translateX(-50%) scale(1);
            }
        }

        .header-cta {
            background: var(--secondary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            font-size: 0.95em;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            animation: pulse-border 2s infinite;
        }

        @keyframes pulse-border {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 87, 34, 0);
            }
        }

        .header-cta:hover {
            background: #e64a19;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
            animation: none;
        }

        .header-cta i {
            font-size: 1.1em;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
            padding: 80px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,87,34,0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 3.2em;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-text h1 span {
            color: var(--secondary-color);
            display: block;
        }

        .hero-text p {
            font-size: 1.25em;
            line-height: 1.6;
            margin-bottom: 35px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: 900;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9em;
            opacity: 0.9;
        }

        /* Partner Form */
        .partner-form-container {
            background: white;
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 25px 70px rgba(0,61,92,0.25);
            animation: fadeInRight 0.8s ease-out 0.4s both;
            position: relative;
            border: 3px solid var(--secondary-color);
        }

        .partner-badge {
            position: absolute;
            top: -20px;
            right: 30px;
            background: var(--secondary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85em;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
            z-index: 10;
        }

        .form-header {
            margin-bottom: 30px;
        }

        .form-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #ff7043 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            animation: bounceIn 1s ease-out 0.6s both;
        }

        .form-icon i {
            font-size: 2em;
            color: white;
        }

        .form-title {
            color: var(--primary-color);
            font-size: 1.8em;
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .form-subtitle {
            color: var(--text-light);
            font-size: 1.05em;
            line-height: 1.5;
        }

        .partner-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-label i {
            color: var(--secondary-color);
            font-size: 0.9em;
        }

        .form-input,
        .form-select {
            padding: 15px;
            border: 2px solid #e0e7ed;
            border-radius: 10px;
            font-size: 1em;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            background: #f8fafb;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--secondary-color);
            background: white;
            box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
        }

        .form-input.valid {
            border-color: #10b981;
            background: #f0fdf4;
        }

        .form-input.invalid {
            border-color: #ef4444;
            background: #fef2f2;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: var(--light-blue);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .checkbox-group:hover {
            background: #d4e9f2;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--secondary-color);
        }

        .checkbox-group label {
            cursor: pointer;
            font-size: 0.95em;
            color: var(--primary-color);
            font-weight: 500;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #ff7043 100%);
            color: white;
            padding: 20px;
            border: none;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1.15em;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        .success-message {
            display: none;
            background: #10b981;
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Features Section */
        .features {
            padding: 100px 20px;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-tag {
            color: var(--secondary-color);
            font-weight: 800;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 15px;
            display: inline-block;
        }

        .section-title {
            font-size: 2.8em;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.2em;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-card {
            padding: 40px;
            background: linear-gradient(135deg, #f8fafb 0%, white 100%);
            border-radius: 20px;
            transition: all 0.4s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,61,92,0.15);
            border-color: var(--secondary-color);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            margin-bottom: 25px;
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #ff7043 100%);
            transform: rotate(5deg) scale(1.1);
        }

        .feature-title {
            font-size: 1.5em;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .feature-text {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1.05em;
        }

        /* Modules Section */
        .modules {
            padding: 100px 20px;
            background: linear-gradient(135deg, var(--light-blue) 0%, #f0f7fa 100%);
            position: relative;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .module-card {
            background: white;
            padding: 35px;
            border-radius: 18px;
            text-align: center;
            transition: all 0.4s;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }

        .module-card:hover::before {
            opacity: 1;
        }

        .module-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0,61,92,0.2);
            border-color: var(--secondary-color);
        }

        .module-icon {
            font-size: 3em;
            margin-bottom: 15px;
            transition: all 0.4s;
            position: relative;
            z-index: 1;
        }

        .module-card:hover .module-icon {
            transform: scale(1.2);
        }

        .module-name {
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.1em;
            position: relative;
            z-index: 1;
            transition: color 0.4s;
        }

        .module-card:hover .module-name {
            color: white;
        }

        .module-desc {
            font-size: 0.9em;
            color: var(--text-light);
            position: relative;
            z-index: 1;
            transition: color 0.4s;
        }

        .module-card:hover .module-desc {
            color: rgba(255,255,255,0.9);
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 20px;
            background: var(--primary-color);
            color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-top: 60px;
        }

        .benefit-card {
            text-align: center;
        }

        .benefit-number {
            font-size: 3.5em;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 15px;
            display: block;
            text-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
        }

        .benefit-label {
            font-size: 1.15em;
            font-weight: 600;
            opacity: 0.95;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 3em;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 1.3em;
            color: var(--text-light);
            margin-bottom: 45px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #ff7043 100%);
            color: white;
            padding: 20px 45px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1em;
            box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary-color);
            padding: 20px 45px;
            border: 3px solid var(--primary-color);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s;
            font-size: 1.1em;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 70px 20px 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-about img {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            font-size: 1.05em;
        }

        .footer-links h4 {
            margin-bottom: 25px;
            font-size: 1.2em;
            color: var(--secondary-color);
            font-weight: 800;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

        .footer-bottom strong {
            color: var(--secondary-color);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .partner-form-container {
                max-width: 600px;
                margin: 0 auto;
                padding: 45px 30px 30px;
                border: 3px solid var(--secondary-color);
            }

            .partner-badge {
                top: 10px;
                right: 20px;
            }

            .features-grid,
            .modules-grid,
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-text h1 {
                font-size: 2.5em;
            }

            .nav-links {
                display: none;
            }

            .header-buttons {
                flex-wrap: wrap;
                gap: 10px;
            }

            .portal-btn {
                padding: 10px 20px;
                font-size: 0.85em;
            }

            .header-cta {
                padding: 10px 20px;
                font-size: 0.85em;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                gap: 15px;
            }

            .logo-container {
                width: 100%;
                justify-content: center;
            }

            .header-buttons {
                width: 100%;
                justify-content: center;
            }

            .portal-btn,
            .header-cta {
                flex: 1;
                justify-content: center;
                font-size: 0.75em;
                padding: 10px 12px;
                white-space: nowrap;
            }

            .partner-form-container {
                max-width: 500px;
                margin: 0 auto;
                padding: 45px 20px 25px;
                border: 3px solid var(--secondary-color);
            }

            .partner-badge {
                top: 10px;
                right: 10px;
                font-size: 0.8em;
            }

            .hero-text {
                text-align: center;
            }

            .hero-stats {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .features-grid,
            .modules-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2em;
            }

            .section-title {
                font-size: 2em;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .partner-form-container {
                max-width: 100%;
                margin: 0 auto;
                padding: 45px 15px 20px;
                border-radius: 15px;
                border: 3px solid var(--secondary-color);
            }

            .form-title {
                font-size: 1.5em;
            }

            .form-subtitle {
                font-size: 0.95em;
            }

            .partner-badge {
                font-size: 0.75em;
                padding: 6px 15px;
                top: 10px;
                right: 10px;
            }

            .portal-btn span,
            .header-cta span {
                display: none;
            }

            .portal-btn,
            .header-cta {
                padding: 12px 20px;
            }

            .portal-btn i,
            .header-cta i {
                margin: 0;
                font-size: 1.3em;
            }
        }

/* ==================== CARROSSEL ==================== */
.carousel-section {
    background: #f5f7fa;
    padding: 60px 0;
    overflow: hidden !important;
    width: 100%;
}

.carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-title {
    font-size: 2.5em;
    color: #003d5c;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff5722, #003d5c);
    border-radius: 2px;
}

.carousel-container {
    width: 100%;
    overflow: hidden !important;
}

.carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    animation: scrollCarousel 30s linear infinite;
}

.carousel-slide {
    flex: 0 0 450px !important;
    width: 450px !important;
    height: 280px !important;
    min-width: 450px !important;
    max-width: 450px !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    background: white;
}

.carousel-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* TABLET */
@media (max-width: 1024px) {
    .carousel-title {
        font-size: 2.2em;
    }
    
    .carousel-header {
        margin-bottom: 35px;
    }
    
    .carousel-slide {
        flex: 0 0 380px !important;
        width: 380px !important;
        height: 240px !important;
        min-width: 380px !important;
        max-width: 380px !important;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .carousel-section {
        padding: 50px 0;
    }
}

/* MOBILE LANDSCAPE / TABLET PEQUENO */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 1.8em;
    }
    
    .carousel-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .carousel-slide {
        flex: 0 0 320px !important;
        width: 320px !important;
        height: 200px !important;
        min-width: 320px !important;
        max-width: 320px !important;
    }
    
    .carousel-track {
        gap: 12px;
    }
    
    .carousel-section {
        padding: 40px 0;
    }
}

/* MOBILE PORTRAIT */
@media (max-width: 480px) {
    .carousel-title {
        font-size: 1.5em;
    }
    
    .carousel-title::after {
        width: 40px;
        height: 3px;
    }
    
    .carousel-header {
        margin-bottom: 25px;
    }
    
    .carousel-slide {
        flex: 0 0 280px !important;
        width: 280px !important;
        height: 175px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }
    
    .carousel-track {
        gap: 10px;
    }
    
    .carousel-section {
        padding: 30px 0;
    }
    
    .carousel-slide:hover {
        transform: scale(1.02);
    }
}

/* MOBILE MUITO PEQUENO */
@media (max-width: 360px) {
    .carousel-title {
        font-size: 1.3em;
    }
    
    .carousel-slide {
        flex: 0 0 240px !important;
        width: 240px !important;
        height: 150px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }
    
    .carousel-track {
        gap: 8px;
    }
}