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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #374151;
    scroll-behavior: smooth;
}

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

/* Header */
.navbar {
    background: #6204bf;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #F23827;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: #F23827 !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(242, 56, 39, 0.3) !important;
}

.nav-cta:hover {
    background: #d32f2f !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(242, 56, 39, 0.4) !important;
}

.nav-cta::after {
    display: none !important;
}



/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(98, 4, 191, 0.9) 0%, rgba(139, 92, 246, 0.9) 50%, rgba(16, 185, 129, 0.9) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=1080&fit=crop&crop=center') center/cover;
    color: white;
    padding: 150px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(98, 4, 191, 0.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
}

.hero-devices {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.device-laptop {
    width: 800px;
    max-width: 100%;
    height: auto;
    transform: scale(1.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: scale(1.1) translateY(0px);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
}

.hero-devices .hero-logo {
    height: 80px;
    width: auto;
    animation: fadeInUp 1s ease-out;
}

.hero-text h1 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-text p {
    text-align: left;
    margin-bottom: 2rem;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #F23827 !important;
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(242, 56, 39, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button2 {
    display: inline-block;
    background: #6104bd !important;
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(97, 4, 189, 0.47);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #d32f2f !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 56, 39, 0.4);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 2rem;
    transition: transform 0.3s;
}

.section-logo:hover {
    transform: scale(1.05);
}

.mec-certification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.mec-badge {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.2));
}

.mec-certification p {
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
}

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

.section p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Segmentos Grid */
.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.segmento-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
    transition: all 0.3s;
    border-left: 4px solid #F23827;
    color: #1e3a8a;
}

/* Tabs System */
.tabs-container {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-btn {
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.tab-btn:hover {
    border-color: #6204bf;
    color: #6204bf;
}

.tab-btn.active {
    background: #6204bf;
    border-color: #6204bf;
    color: white;
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

.tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-text h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tab-text h4 {
    color: #F23827;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tab-text p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tab-text h3,
.tab-text h4 {
    text-align: center;
}

.tab-image {
    text-align: center;
}

.tab-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    transition: transform 0.3s;
}

.tab-image img:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Pages */
.hero-page {
    background: 
        linear-gradient(135deg, rgba(98, 4, 191, 0.9) 0%, rgba(139, 92, 246, 0.9) 50%, rgba(16, 185, 129, 0.9) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=1080&fit=crop&crop=center') center/cover;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.hero-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-page p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.segmento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    border-left-color: #fbbf24;
}

/* Recursos Grid */
.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Devices Showcase */
.devices-showcase {
    background: white;
}

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

.device-item {
    text-align: center;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
}

.device-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
}

.device-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.device-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.device-item p {
    color: #4b5563;
    font-size: 1rem;
    margin: 0;
}

.smartphone-img {
    width: 90% !important;
    height: 180px !important;
    object-fit: contain !important;
    margin-top: 20px !important;
}

.recurso-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.recurso-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.recurso-icon {
    margin-bottom: 1.5rem;
}

.user-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10b981;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.recurso-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    font-weight: 700;
}

.recurso-card ul {
    list-style: none;
}

.recurso-card li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #10b981;
    transition: border-color 0.3s;
}

.recurso-card:hover li {
    border-left-color: #fbbf24;
}

/* Depoimentos Carousel - Estilo Card Clean */
.depoimentos-carousel {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
}

.depoimento-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 320px;
}

.testimonial-reverse .testimonial-content {
    grid-template-columns: 1fr 300px;
}

.testimonial-left {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.testimonial-purple .testimonial-left {
    background: linear-gradient(135deg, #6204bf 0%, #8b5cf6 100%);
}

.testimonial-red .testimonial-left {
    background: linear-gradient(135deg, #F23827 0%, #ef4444 100%);
}

.testimonial-blue .testimonial-left {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.autor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.autor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info strong {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.autor-info span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-right {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    background: white;
}

.testimonial-text {
    width: 100%;
}

.testimonial-text p {
    font-size: 1.4rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.testimonial-text p::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: serif;
    opacity: 0.2;
}

.testimonial-text p::after {
    content: '"';
    font-size: 5rem;
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
    opacity: 0.2;
}

.testimonial-purple .testimonial-text p::before,
.testimonial-purple .testimonial-text p::after {
    color: #6204bf !important;
}

.testimonial-red .testimonial-text p::before,
.testimonial-red .testimonial-text p::after {
    color: #F23827 !important;
}

.testimonial-blue .testimonial-text p::before,
.testimonial-blue .testimonial-text p::after {
    color: #1e3a8a !important;
}

.testimonial-purple .testimonial-text p::before {
    color: #6204bf;
}

.testimonial-red .testimonial-text p::before {
    color: #F23827;
}

.testimonial-reverse .testimonial-text p::before {
    left: -10px;
    right: auto;
}

.testimonial-reverse .testimonial-text p::after {
    right: -10px;
    left: auto;
}

.testimonial-blue .testimonial-text p::before {
    color: #1e3a8a;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #6204bf;
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: 
        linear-gradient(135deg, rgba(5, 2, 89, 0.9) 0%, rgba(98, 4, 191, 0.9) 100%),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&h=1080&fit=crop&crop=center') center/cover;
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(98, 4, 191, 0.1);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-weight: 700;
}

.cta-section p {
    color: #e5e7eb;
}

/* Contato */
.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contato-info p {
    text-align: left;
    margin-bottom: 1rem;
}

.contato-info a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.contato-info a:hover {
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    background: #1e3a8a;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.social-links a:hover {
    background: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Conclusão */
.conclusao {
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(98, 4, 191, 0.95) 50%, rgba(16, 185, 129, 0.95) 100%),
        url('images/segmentos/tecnica.jpeg') center/cover;
    color: white;
    position: relative;
    overflow: hidden;
}

.conclusao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 56, 39, 0.1) 0%, transparent 50%);
}

.conclusao .container {
    position: relative;
    z-index: 2;
}

.conclusao h2 {
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.conclusao > .container > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.conclusao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.conclusao-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}



.conclusao-item:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.conclusao-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fbbf24;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.final-message {
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(242, 56, 39, 0.2) 100%);
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.final-message::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 2rem;
    background: linear-gradient(45deg, #fbbf24, #F23827);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why Choose Section */
.why-choose {
    background: white;
    padding: 100px 0;
}

.why-choose h2 {
    color: #1e3a8a;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-text h3 {
    color: #F23827;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.why-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #374151;
    text-align: center;
    margin: 0;
}

.why-badge {
    text-align: center;
}

.large-mec-badge {
    height: 250px;
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

/* Perfect Complete Section */
.perfect-complete {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    padding: 80px 0;
}

.perfect-complete h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.perfect-complete p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
}

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

/* Footer */
footer {
    background: #f8fafc;
    color: #374151;
    padding: 3rem 0 1rem;
    border-top: 3px solid #F23827;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 1;
}

.social-media {
    text-align: center;
}

.social-media h4 {
    color: #F23827;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    background: transparent;
    color: #4b5563;
    padding: 12px;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #4b5563;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-btn.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-btn.instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; }

.aws-partner {
    text-align: right;
}

.aws-logo {
    height: 80px;
    width: auto;
    opacity: 0.8;
}

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

.footer-bottom p {
    color: #1e3a8a;
    margin: 0;
}





/* App Stores */
.app-stores {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.app-stores h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.store-btn {
    transition: transform 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-badge {
    height: 60px;
    width: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}

/* Escolas Conveniadas */
.escolas-conveniadas {
    background: #f8fafc;
    padding: 80px 0;
    overflow: hidden;
}

.escolas-conveniadas h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.escolas-conveniadas p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
    width: calc(200% + 3rem);
}

.escola-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 2rem;
    transition: all 0.3s;
    min-width: 250px;
    height: 150px;
}

.escola-logo:hover {
    transform: scale(1.1);
}

.escola-logo img {
    max-width: 200px;
    max-height: 110px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.escola-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #6204bf;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    

    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
        padding: 1rem;
    }
    
    .nav-cta {
        margin: 0 1rem;
        display: inline-block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1,
    .hero-text p {
        text-align: center;
    }
    
    .device-laptop {
        width: 100%;
        max-width: 500px;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .recursos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .tab-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-image {
        order: -1;
    }
    
    .tab-image img {
        height: 250px;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .testimonial-left {
        padding: 2rem;
        flex-direction: row;
        gap: 1rem;
        text-align: left;
    }
    
    .autor-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }
    
    .testimonial-right {
        padding: 2rem;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .testimonial-text p::before {
        font-size: 3rem;
        top: -20px;
    }
    
    .depoimento-card {
        padding: 3rem 2rem;
    }
    
    .testimonial-content {
        gap: 1.5rem;
    }
    
    .autor-avatar {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
    
    .testimonial-text p::before,
    .testimonial-text p::after {
        font-size: 3rem;
    }
    
    .testimonial-indicators {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-dot {
        width: 12px;
        height: 12px;
    }
    
    .device-laptop {
        transform: scale(1);
    }
    
    .why-choose h2 {
        font-size: 2rem;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-text h3 {
        font-size: 1.5rem;
    }
    
    .why-text p {
        font-size: 1rem;
    }
    
    .large-mec-badge {
        height: 180px;
    }
    
    .carousel-track {
        gap: 2rem;
    }
    
    .escola-logo {
        min-width: 150px;
        height: 100px;
        padding: 1.5rem;
    }
    
    .escola-logo img {
        max-width: 120px;
        max-height: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .aws-partner {
        text-align: center;
    }
    
    .social-buttons {
        gap: 0.5rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .social-btn svg {
        width: 20px;
        height: 20px;
    }
}
/* Botão flutuante WhatsApp */
.whatsapp-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-bubble {
    position: absolute;
    right: 70px;
    bottom: 15px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: bubbleAppear 8s ease-in-out forwards, bubbleFloat 3s ease-in-out 8s infinite;
}

.whatsapp-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes bubbleAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    99% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    100% {
        opacity: 0.9;
        transform: scale(1) translateY(0px);
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.whatsapp-float {
    position: relative;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-container {
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-bubble {
        right: 60px;
        bottom: 10px;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Página de Demonstração - Estilos específicos */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item .contact-icon {
    width: 40px;
    height: 40px;
    background: #F23827;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 15px rgba(242, 56, 39, 0.3);
    transition: all 0.3s ease;
}

.contact-item .contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 56, 39, 0.4);
}

.contact-item .contact-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-size: 1.1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.demo-form-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 250, 252, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: none;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}



.demo-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    color: #374151;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F23827;
    box-shadow: 
        0 0 0 3px rgba(242, 56, 39, 0.1),
        inset 0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(242, 56, 39, 0.15);
    transform: translateY(-1px);
}

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





.benefits-demo {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(98, 4, 191, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 56, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-demo h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6204bf 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.benefit-item:hover::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #F23827 0%, #fbbf24 100%);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6204bf 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 
        0 8px 25px rgba(98, 4, 191, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(98, 4, 191, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.benefit-item h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #4b5563;
    margin: 0;
    text-align: center;
}

/* Responsive para página de demonstração */
@media (max-width: 768px) {
    .demo-form-container {
        padding: 2rem;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .aws-logo {
        height: 60px;
    }
    
    .social-buttons {
        gap: 1rem;
    }
}

/* Página de Recursos - Estilos específicos */
.hero-recursos {
    background: 
        linear-gradient(135deg, rgba(98, 4, 191, 0.9) 0%, rgba(139, 92, 246, 0.9) 50%, rgba(16, 185, 129, 0.9) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=1080&fit=crop&crop=center') center/cover;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-recursos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(98, 4, 191, 0.05);
    z-index: 1;
}

.hero-recursos .container {
    position: relative;
    z-index: 2;
}

.hero-recursos h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-recursos p {
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Seções de recursos por perfil */
.recursos-gestor,
.recursos-professor,
.recursos-aluno {
    padding: 80px 0;
}

.recursos-gestor {
    background: white;
}

.recursos-professor {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.recursos-aluno {
    background: white;
}

.todos-recursos {
    background: white;
    padding: 80px 0;
}

.todos-recursos h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

/* Seção recursos por função */
.recursos-por-funcao {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.recursos-por-funcao h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

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

.funcao-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.funcao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.funcao-card h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.funcao-card p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.saiba-mais-btn {
    display: inline-block;
    background: #F23827;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.saiba-mais-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 56, 39, 0.4);
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.recurso-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
    text-align: center;
}

.recurso-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6204bf 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(98, 4, 191, 0.3);
    flex-shrink: 0;
}

.recurso-icon svg {
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.recurso-header div h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: left;
}

.recurso-header div p {
    color: #4b5563;
    font-size: 1.2rem;
    margin: 0;
    text-align: left;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.recurso-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.recurso-card.featured {
    border: 2px solid #F23827;
    box-shadow: 
        0 12px 35px rgba(242, 56, 39, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #F23827 0%, #ff6b6b 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(242, 56, 39, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.card-icon svg {
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.recurso-card:hover .card-icon {
    transform: scale(1.1);
}

.recurso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6204bf 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.recurso-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.recurso-card:hover::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #F23827 0%, #fbbf24 100%);
}

.recurso-card h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.recurso-card p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* Seção CTA final */
.cta-demonstracao {
    background: 
        linear-gradient(135deg, rgba(5, 2, 89, 0.9) 0%, rgba(98, 4, 191, 0.9) 100%),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&h=1080&fit=crop&crop=center') center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.cta-demonstracao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(98, 4, 191, 0.1);
}

.cta-demonstracao .container {
    position: relative;
    z-index: 2;
}

.cta-demonstracao h2 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-demonstracao p {
    color: #e5e7eb;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive para página de recursos */
@media (max-width: 768px) {
    .hero-recursos h1 {
        font-size: 2.2rem;
    }
    
    .hero-recursos p {
        font-size: 1rem;
    }
    
    .recurso-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .recurso-header div h2,
    .recurso-header div p {
        text-align: center;
    }
    
    .recurso-header div h2 {
        font-size: 2rem;
    }
    
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recurso-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-demonstracao h2 {
        font-size: 2rem;
    }
    
    .cta-demonstracao p {
        font-size: 1rem;
    }
}

/* Seção de Estatísticas */
.stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #6204bf 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 56, 39, 0.1) 0%, transparent 50%);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Segmentos Cards Vertical */
.segmentos-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.segmento-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid white;
}



.segmento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-left: 4px solid white;
}

.segmento-card .card-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.segmento-card .card-text {
    flex: 1;
}

.segmento-card .card-text h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.segmento-card .card-text h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.segmento-card .card-text p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: normal;
}

.segmento-card .card-image {
    flex-shrink: 0;
}

.segmento-card .card-image img {
    width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.segmento-card .saiba-mais-btn {
    display: inline-block;
    background: #F23827;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 56, 39, 0.3);
}

.segmento-card .saiba-mais-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 56, 39, 0.4);
}

.segmento-card:nth-child(1) .saiba-mais-btn {
    background: #F23827;
    box-shadow: 0 4px 15px rgba(242, 56, 39, 0.3);
}

.segmento-card:nth-child(1) .saiba-mais-btn:hover {
    background: #d32f2f;
    box-shadow: 0 6px 20px rgba(242, 56, 39, 0.4);
}

.segmento-card:nth-child(2) .saiba-mais-btn {
    background: #6204bf;
    box-shadow: 0 4px 15px rgba(98, 4, 191, 0.3);
}

.segmento-card:nth-child(2) .saiba-mais-btn:hover {
    background: #4c1d95;
    box-shadow: 0 6px 20px rgba(98, 4, 191, 0.4);
}

.segmento-card:nth-child(3) .saiba-mais-btn {
    background: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.segmento-card:nth-child(3) .saiba-mais-btn:hover {
    background: #059669;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

#segmentos h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #1e3a8a;
}

/* Responsive para estatísticas */
@media (max-width: 768px) {
    .stats-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .badge {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .segmento-card {
        padding: 20px;
    }
    
    .segmento-card .card-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .segmento-card .card-text h3 {
        font-size: 1.4rem;
    }
    
    .segmento-card .card-text h4 {
        font-size: 1rem;
    }
    
    .segmento-card .card-image {
        order: -1;
    }
    
    .segmento-card .card-image img {
        width: 100%;
        max-width: 100%;
        height: 180px;
    }
    
    #segmentos h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .segmentos-cards-vertical {
        gap: 30px;
    }
}