/* Fontes */
body {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section - Bare Metal Style */
.hero-bare-metal {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-title-italic {
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    color: #000;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #7c3aed;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #4a5568;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(5px);
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #1f2937 0%, #111827 100%);
}

/* Header */
header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-title,
    .hero-title-italic {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .hero-title,
    .hero-title-italic {
        font-size: 2rem;
    }
}


/* Diferenciais Section */
.diferenciais-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 70px 0;
    position: relative;
}

.diferenciais-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 60px;
}

.diferenciais-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.text-purple {
    color: #7c3aed;
}

.diferenciais-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
    border-color: #e9d5ff;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.icon-purple {
    background: #7c3aed;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.diferencial-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.3);
}

.icon {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.diferencial-card:hover .card-title {
    color: #7c3aed;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    padding: 100px 0;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #4b5563;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .diferenciais-title {
        font-size: 2rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 2rem;
    }
}


/* Empresas Section - Carrossel Infinito */
.empresas-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 60px 0;
    overflow: hidden;
}

.empresas-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.badge-cases {
    display: inline-block;
    background: white;
    color: #7c3aed;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 2px solid #e9d5ff;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.empresas-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 14px;
}

.text-purple-gradient {
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empresas-subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Carrossel Container */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #faf5ff, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #f3e8ff, transparent);
}

/* Carrossel Track */
.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Carousel Items */
.carousel-item {
    flex-shrink: 0;
}

.empresa-card-carousel {
    background: white;
    padding: 25px 35px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
    border: 2px solid transparent;
    min-width: 200px;
    height: 100px;
}

.empresa-card-carousel:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.2);
    border-color: #e9d5ff;
}

.empresa-logo-carousel {
    max-width: 180px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
}

.empresa-card-carousel:hover .empresa-logo-carousel {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* CTA Dark Section */
.cta-dark-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 60px 0;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-cta-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-cta-outline:hover {
    background: white;
    color: #111827;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-cta-outline:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Planos Section */
.planos-section {
    background: white;
    padding: 60px 0;
}

.planos-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.planos-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 18px;
}

.planos-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plano-card {
    background: white;
    padding: 35px 25px;
    border-radius: 14px;
    border: 2px solid #f3f4f6;
    text-align: center;
    transition: all 0.3s ease;
}

.plano-card:hover {
    border-color: #7c3aed;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.18);
}

.plano-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-purple-bg {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.plano-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.plano-desc {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 40px;
}

.plano-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.plano-price .price-value {
    font-size: 2.9rem !important;
    font-weight: 900;
    color: #000;
}

.price-value {
    font-size: 3.2rem;
    font-weight: 900;
    color: #000;
}

.price-cents {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

.price-period {
    font-size: 0.85rem;
    color: #6b7280;
    margin-left: 4px;
}

.btn-plano {
    background: #7c3aed;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-plano:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* Botão Topo */
.btn-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #7c3aed;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.btn-topo.show {
    opacity: 1;
    visibility: visible;
}

.btn-topo:hover {
    background: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
}

/* Responsive */
@media (max-width: 768px) {

    .empresas-title,
    .cta-title,
    .planos-title {
        font-size: 2rem;
    }

    .empresas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }
}


/* FAQ Section */
.faq-section {
    background: white;
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 14px;
}

.faq-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e9d5ff;
}

.faq-item.active {
    border-color: #7c3aed;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #faf5ff;
}

.faq-item.active .faq-question {
    background: #faf5ff;
    color: #7c3aed;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #7c3aed;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 24px;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Contato Section */
.contato-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 60px 0;
}

.contato-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contato-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 14px;
}

.contato-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
}

.contato-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
    border-color: #e9d5ff;
}

.contato-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-purple-light {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.contato-card:hover .contato-icon {
    transform: scale(1.1);
}

.contato-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.contato-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 90px;
}

.btn-contato {
    background: #1f2937;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.btn-contato:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.3);
    color: white;
    text-decoration: none;
}

.btn-contato:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {

    .faq-title,
    .contato-title {
        font-size: 1.75rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}


/* CTA Footer Section */
.cta-footer-section {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
    padding: 50px 0;
}

.cta-footer-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-footer-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-footer-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-cta-footer {
    background: white;
    color: #7c3aed;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-cta-footer:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #7c3aed;
    text-decoration: none;
}

.btn-cta-footer:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #94a3b8;
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.footer-logo-icon-simple {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 258px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #a78bfa;
    font-weight: 600;
}

.footer-badge svg {
    width: 16px;
    height: 16px;
}

.footer-column-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #7c3aed;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #a78bfa;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    padding: 35px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright svg {
    width: 16px;
    height: 16px;
    color: #7c3aed;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    border-color: #7c3aed;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-footer-title {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}


/* Header Navigation with Dropdown */
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.group:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #f3f4f6;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    transform: translateX(4px);
}

.dropdown-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.dropdown-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
    margin-bottom: 2px;
}

.dropdown-desc {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.dropdown-item:hover .dropdown-title {
    color: #7c3aed;
}

/* Dropdown Arrow Indicator */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid #f3f4f6;
    border-top: 1px solid #f3f4f6;
    transform: translateX(-50%) rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 8px;
    }

    .dropdown-menu::before {
        display: none;
    }
}

/* Hero VPS Minimal Section */
.hero-vps-minimal {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Linhas suaves de fundo */
.hero-vps-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(229, 231, 235, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(229, 231, 235, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-vps-minimal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-vps-minimal-text {
    max-width: 550px;
}

.hero-vps-minimal-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-vps-minimal-highlight {
    color: #2563eb;
}

.hero-vps-minimal-desc {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-vps-minimal-features {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-vps-minimal-badge {
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
    padding: 8px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-vps-minimal-badge:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.hero-vps-minimal-cta {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 20px;
}

.hero-vps-minimal-price-label {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 4px;
}

.hero-vps-minimal-price {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.hero-vps-minimal-price span {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 600;
}

.hero-vps-minimal-btn {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-vps-minimal-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.hero-vps-minimal-guarantee {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-vps-minimal-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-vps-minimal-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Responsive Hero VPS Minimal */
@media (max-width: 1024px) {
    .hero-vps-minimal-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-vps-minimal-text {
        max-width: 100%;
    }

    .hero-vps-minimal-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-vps-minimal {
        padding: 60px 0;
    }

    .hero-vps-minimal-title {
        font-size: 2.2rem;
    }

    .hero-vps-minimal-price {
        font-size: 2.5rem;
    }

    .hero-vps-minimal-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-vps-minimal-btn {
        width: 100%;
    }
}

/* Benefícios Section */
.beneficios-section {
    background: #ffffff;
    padding: 70px 0;
    border-top: 1px solid #e5e7eb;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    position: relative;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.beneficio-line {
    width: 50px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
    margin-bottom: 20px;
    transition: width 0.3s ease;
}

.beneficio-card:hover .beneficio-line {
    width: 70px;
}

.beneficio-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.beneficio-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Benefícios */
@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .beneficios-section {
        padding: 50px 0;
    }

    .beneficio-card {
        padding: 24px 20px;
    }

    .beneficio-title {
        font-size: 1.1rem;
    }
}

/* Planos VPS Section */
.planos-vps-section {
    background: #ffffff;
    padding: 70px 0;
    margin-bottom: 0;
}

.planos-vps-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.planos-vps-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.planos-vps-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

.planos-vps-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.plano-vps-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.plano-vps-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.plano-vps-item.active {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.plano-vps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    gap: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.plano-vps-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.plano-vps-item.active .plano-vps-header::before {
    background: linear-gradient(to bottom, #2563eb, #3b82f6);
}

.plano-vps-header:hover {
    background: #fafafa;
}

.plano-vps-left {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
}

.plano-vps-name {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.plano-vps-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #d1d5db;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.plano-vps-item.active .plano-vps-icon {
    transform: rotate(45deg);
    color: #2563eb;
}

.plano-vps-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
}

.plano-vps-specs {
    display: flex;
    gap: 20px;
    align-items: center;
}

.spec-item {
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-item strong {
    color: #1f2937;
    font-weight: 600;
}

.spec-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
}

.plano-vps-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.plano-vps-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    min-width: 140px;
}

.price-label {
    display: none;
}

.price-old {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
    order: -1;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.price-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(22, 101, 52, 0.1);
}

.btn-contratar {
    background: #2563eb;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.btn-contratar:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-contratar:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.plano-vps-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: linear-gradient(to bottom, #fafafa, #f9fafb);
    border-top: 1px solid #e5e7eb;
}

.plano-vps-item.active .plano-vps-details {
    max-height: 600px;
    border-top: 1px solid #cbd5e1;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    padding: 28px 32px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #4b5563;
    padding: 6px 0;
}

.icon-check {
    color: #10b981;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}


/* Sistemas Disponíveis Section */
.sistemas-section {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    padding: 80px 0;
    padding-top: 100px;
    border-top: 1px solid #e5e7eb;
}

.sistemas-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sistemas-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.text-purple {
    background: linear-gradient(90deg, #a855f7 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sistemas-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.sistemas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.sistema-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sistema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sistema-card:hover::before {
    opacity: 1;
}

.sistema-card:hover {
    border-color: #a855f7;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
    transform: translateY(-6px);
}

.sistema-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sistema-card:hover .sistema-icon {
    transform: scale(1.1);
}

.sistema-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.sistema-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    position: relative;
    z-index: 1;
}

/* Recursos de Proteção Section */
.recursos-section {
    background: white;
    padding: 70px 0;
}

.recursos-header {
    text-align: center;
    margin-bottom: 50px;
}

.recursos-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    position: relative;
    display: inline-block;
}

.recursos-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #a855f7;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.recurso-card {
    background: #fafafa;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.recurso-card:hover {
    background: white;
    border-color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.recurso-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: #a855f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.recurso-icon svg {
    width: 28px;
    height: 28px;
}

.recurso-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.recurso-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Proteja Banner */
.proteja-banner {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.25);
}

.proteja-content {
    flex: 1;
}

.proteja-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.proteja-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.proteja-btn {
    background: white;
    color: #a855f7;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.proteja-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Discord Support Section */
.discord-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 101, 242, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.discord-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.discord-text {
    max-width: 550px;
}

.discord-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.discord-badge .badge-icon {
    width: 16px;
    height: 16px;
}

.discord-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.discord-highlight {
    color: #a855f7;
}

.discord-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.discord-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
}

.feature-check {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.btn-discord {
    background: white;
    color: #a855f7;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: #f3f4f6;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.discord-members {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 20px;
}

.members-icon {
    width: 20px;
    height: 20px;
}

.discord-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-mockup {
    width: 100%;
    max-width: 500px;
}

.discord-window {
    background: #36393f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.discord-header {
    background: #2f3136;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #202225;
}

.discord-dots {
    display: flex;
    gap: 6px;
}

.discord-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ed4245;
}

.dot-yellow {
    background: #fbbf24;
}

.dot-green {
    background: #10b981;
}

.discord-server-name {
    color: #b9bbbe;
    font-size: 0.9rem;
    font-weight: 600;
}

.discord-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 200px;
}

.discord-message {
    display: flex;
    gap: 12px;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-author {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bot-badge {
    background: #a855f7;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
}

.message-text {
    color: #dcddde;
    font-size: 0.85rem;
    line-height: 1.5;
}

.discord-typing {
    background: #2f3136;
    padding: 12px 20px;
    border-top: 1px solid #202225;
    display: flex;
    align-items: center;
    gap: 10px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #b9bbbe;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        opacity: 0.3;
    }

    30% {
        opacity: 1;
    }
}

.typing-text {
    color: #b9bbbe;
    font-size: 0.75rem;
}

/* Responsive Discord */
@media (max-width: 1024px) {
    .discord-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .discord-text {
        max-width: 100%;
    }

    .discord-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .discord-section {
        padding: 60px 0;
    }

    .discord-title {
        font-size: 2.2rem;
    }

    .btn-discord {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Sistemas e Recursos */
@media (max-width: 1024px) {
    .sistemas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recursos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proteja-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {

    .sistemas-section,
    .recursos-section {
        padding: 50px 0;
    }

    .sistemas-grid,
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sistemas-title,
    .recursos-title {
        font-size: 1.6rem;
    }

    .proteja-title {
        font-size: 1.3rem;
    }

    .proteja-btn {
        width: 100%;
    }
}

/* Recursos Adicionais Section */
.recursos-adicionais-section {
    background: #f9fafb;
    padding: 70px 0;
}

.recursos-adicionais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.recurso-adicional-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.recurso-adicional-card:hover {
    border-color: #a855f7;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.15);
    transform: translateY(-4px);
}

.recurso-adicional-icon {
    width: 48px;
    height: 48px;
    background: #a855f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.recurso-adicional-icon svg {
    width: 24px;
    height: 24px;
}

.recurso-adicional-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.recurso-adicional-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Infraestrutura CTA Section */
.infraestrutura-cta-section {
    background: white;
    padding: 80px 0;
}

.infraestrutura-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.infraestrutura-cta-text {
    max-width: 550px;
}

.infraestrutura-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.infraestrutura-cta-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.infraestrutura-cta-btn {
    background: #a855f7;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.infraestrutura-cta-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
}

.infraestrutura-cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.infraestrutura-cta-box {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

.infraestrutura-cta-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-green {
    background: #10b981;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-red {
    background: #ef4444;
}

.infraestrutura-cta-badge {
    background: white;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
}

/* Responsive Recursos Adicionais e Infraestrutura */
@media (max-width: 1024px) {
    .recursos-adicionais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infraestrutura-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .infraestrutura-cta-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .recursos-adicionais-section,
    .infraestrutura-cta-section {
        padding: 50px 0;
    }

    .recursos-adicionais-grid {
        grid-template-columns: 1fr;
    }

    .infraestrutura-cta-title {
        font-size: 1.8rem;
    }

    .infraestrutura-cta-btn {
        width: 100%;
    }

    .infraestrutura-cta-box {
        max-width: 100%;
        min-height: 240px;
    }
}

/* Hero Gamer Section */
.hero-gamer {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-gamer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    color: rgba(168, 85, 247, 0.3);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.floating-icon svg {
    width: 100%;
    height: 100%;
}

/* Joysticks - Aparecem e somem suavemente */
.joystick {
    animation: fadeInOut 8s ease-in-out infinite;
}

.joystick:nth-child(1) {
    animation-delay: 0s;
}

.joystick:nth-child(2) {
    animation-delay: 2s;
}

.joystick:nth-child(3) {
    animation-delay: 4s;
}

.joystick:nth-child(4) {
    animation-delay: 6s;
}

/* Foguetes - Sobem suavemente */
.rocket {
    animation: rocketUp 10s ease-in-out infinite;
    color: rgba(59, 130, 246, 0.3);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.rocket:nth-child(5) {
    animation-delay: 0s;
}

.rocket:nth-child(6) {
    animation-delay: 2s;
}

.rocket:nth-child(7) {
    animation-delay: 4s;
}

.rocket:nth-child(8) {
    animation-delay: 6s;
}

.rocket:nth-child(9) {
    animation-delay: 1s;
}

.rocket:nth-child(10) {
    animation-delay: 3s;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(10deg);
    }
}

@keyframes rocketUp {
    0% {
        transform: translateY(0) rotate(-45deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-200px) rotate(-45deg);
        opacity: 0;
    }
}

.hero-gamer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(168, 85, 247, 0.03) 2px, rgba(168, 85, 247, 0.03) 4px);
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

.hero-gamer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-gamer-text {
    max-width: 550px;
}

.hero-gamer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
    padding: 10px 20px;
    border-radius: 25px;
    color: #a855f7;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 32px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    }
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-gamer-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #a855f7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-gamer-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-gamer-features {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(168, 85, 247, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    color: #a855f7;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.feature-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-gamer-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gamer-primary {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-gamer-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gamer-primary:hover::before {
    left: 100%;
}

.btn-gamer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.6);
}

.btn-gamer-secondary {
    background: rgba(168, 85, 247, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(168, 85, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-gamer-secondary:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.hero-gamer-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamer-card {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.gamer-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gamer-dots {
    display: flex;
    gap: 8px;
}

.gamer-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.gamer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.gamer-card-body {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gamer-stat {
    background: rgba(168, 85, 247, 0.08);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.gamer-stat:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.stat-success {
    color: #10b981;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* Poder de Fogo Section */
.poder-fogo-section {
    background: white;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.poder-fogo-header {
    text-align: center;
    margin-bottom: 60px;
}

.poder-fogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.poder-fogo-card {
    background: #fafafa;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.poder-fogo-card:hover {
    background: white;
    border-color: #a855f7;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
    transform: translateY(-4px);
}

.poder-fogo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.poder-fogo-icon svg {
    width: 24px;
    height: 24px;
}

.poder-fogo-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.poder-fogo-card-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.poder-fogo-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.stat-icon {
    width: 14px;
    height: 14px;
    color: #a855f7;
    flex-shrink: 0;
}

/* Responsive Poder de Fogo */
@media (max-width: 1024px) {
    .poder-fogo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .poder-fogo-section {
        padding: 60px 0;
    }

    .poder-fogo-title {
        font-size: 2rem;
    }

    .poder-fogo-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Hero Gamer */
@media (max-width: 1024px) {
    .hero-gamer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-gamer-text {
        max-width: 100%;
    }

    .hero-gamer-features {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-gamer {
        padding: 60px 0;
    }

    .hero-gamer-title {
        font-size: 2.2rem;
    }

    .hero-gamer-cta {
        flex-direction: column;
    }

    .btn-gamer-primary,
    .btn-gamer-secondary {
        width: 100%;
        justify-content: center;
    }

    .gamer-card-body {
        grid-template-columns: 1fr;
    }
}

/* Responsive Planos VPS */
@media (max-width: 1024px) {
    .plano-vps-header {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .plano-vps-left {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .plano-vps-name {
        min-width: auto;
    }

    .plano-vps-specs {
        flex-wrap: wrap;
        gap: 12px;
    }

    .plano-vps-right {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .plano-vps-price {
        align-items: center;
        text-align: center;
        min-width: auto;
    }

    .btn-contratar {
        width: 100%;
        padding: 14px 28px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .planos-vps-section {
        padding: 50px 0;
    }

    .plano-vps-header {
        padding: 18px 20px;
    }

    .plano-vps-item {
        border-radius: 10px;
    }

    .details-grid {
        padding: 20px;
    }

    .spec-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .price-value {
        font-size: 1.2rem;
    }
}

/* ===
=====================================
   JOGOS SUPORTADOS SECTION
   ======================================== */

.jogos-suportados-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.jogos-suportados-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.jogos-suportados-section .container {
    padding-bottom: 40px;
}

.jogos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.jogos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.jogos-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient-games {
    background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jogos-subtitle {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Grid de Jogos */
.jogos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.jogo-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.jogo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.jogo-card:hover::before {
    opacity: 1;
}

.jogo-card:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4);
    transform: translateY(-8px);
    background: rgba(30, 30, 30, 0.9);
}

.jogo-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.jogo-card:hover .jogo-icon {
    transform: scale(1.15) rotate(5deg);
}

.jogo-icon svg {
    width: 36px;
    height: 36px;
}

/* Cores específicas por jogo */
.jogo-icon.minecraft {
    background: linear-gradient(135deg, #62c462 0%, #4a9d4a 100%);
    box-shadow: 0 8px 20px rgba(98, 196, 98, 0.3);
}

.jogo-icon.csgo {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.jogo-icon.rust {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.jogo-icon.ark {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.jogo-icon.fivem {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.jogo-icon.valheim {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.jogo-icon.terraria {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.jogo-icon.mta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.jogo-icon.palworld {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.jogo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.jogo-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.jogo-specs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.spec-tag {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c4b5fd;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jogo-players {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.players-icon {
    width: 16px;
    height: 16px;
    color: #a78bfa;
}

/* CTA Jogos */
.jogos-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.jogos-cta-text {
    font-size: 1.05rem;
    color: #e2e8f0;
    margin-bottom: 24px;
    font-weight: 500;
}

.btn-jogos-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.btn-jogos-cta:hover {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.5);
}

.btn-jogos-cta:active {
    transform: translateY(-1px);
}

/* Responsive Jogos Suportados */
@media (max-width: 900px) {
    .jogos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jogos-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .jogos-suportados-section {
        padding: 60px 0;
    }

    .jogos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jogos-title {
        font-size: 1.75rem;
    }

    .jogo-card {
        padding: 24px 20px;
    }

    .jogos-cta {
        padding: 30px 20px;
    }

    .btn-jogos-cta {
        width: 100%;
        justify-content: center;
    }
}

/* 
Hero n8n Section */
.hero-n8n {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-n8n-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-n8n-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-n8n-text {
    max-width: 550px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-n8n-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border: 1px solid #e9d5ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
    transition: all 0.3s ease;
}

.hero-n8n-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-icon {
    width: 14px;
    height: 14px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-n8n-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-n8n-highlight {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-n8n-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    animation: underlineExpand 1s ease-out 0.8s both;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-n8n-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-n8n-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}

.hero-n8n-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

.hero-n8n-feature:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-n8n-feature:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-n8n-feature:nth-child(3) {
    animation-delay: 0.8s;
}

.hero-n8n-feature:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.hero-n8n-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-n8n-btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-n8n-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-n8n-btn-primary:hover::before {
    left: 100%;
}

.hero-n8n-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-n8n-btn-primary:hover .btn-arrow {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.hero-n8n-btn-secondary {
    background: transparent;
    color: #7c3aed;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #e9d5ff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-n8n-btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #faf5ff;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.hero-n8n-btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-n8n-btn-secondary:hover {
    border-color: #7c3aed;
}

.hero-n8n-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6b7280;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.guarantee-icon {
    width: 18px;
    height: 18px;
    color: #10b981;
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Hero n8n Visual */
.hero-n8n-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-n8n-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.hero-n8n-card-header {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
}

.hero-n8n-card-body {
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: nodeAppear 0.6s ease-out forwards;
}

.workflow-node:nth-child(1) {
    animation-delay: 0.3s;
}

.workflow-node:nth-child(3) {
    animation-delay: 0.6s;
}

.workflow-node:nth-child(5) {
    animation-delay: 0.9s;
}

@keyframes nodeAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.node-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.node-icon svg {
    width: 28px;
    height: 28px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.node-trigger {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.node-trigger:hover {
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.node-action {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.node-action:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.node-output {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.node-output:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.node-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s ease;
}

.workflow-node:hover .node-label {
    color: #1f2937;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #d1d5db;
    font-weight: 300;
    opacity: 0;
    animation: arrowSlide 0.5s ease-out forwards;
}

.workflow-arrow:nth-of-type(2) {
    animation-delay: 0.5s;
}

.workflow-arrow:nth-of-type(4) {
    animation-delay: 0.8s;
}

@keyframes arrowSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-n8n-card-footer {
    background: #f9fafb;
    padding: 14px 20px;
    border-top: 2px solid #e5e7eb;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
}

/* Responsive Hero n8n */
@media (max-width: 1024px) {
    .hero-n8n-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-n8n-text {
        max-width: 100%;
    }

    .hero-n8n-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-n8n {
        padding: 70px 0 60px;
    }

    .hero-n8n-title {
        font-size: 2.2rem;
    }

    .hero-n8n-features {
        grid-template-columns: 1fr;
    }

    .hero-n8n-cta {
        flex-direction: column;
    }

    .hero-n8n-btn-primary,
    .hero-n8n-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-n8n-card-body {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }
}

/* Por
 que escolher n8n Section */
.porque-n8n-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 80px 0;
    position: relative;
}

.porque-n8n-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.porque-n8n-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.porque-n8n-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.porque-n8n-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
}

.porque-n8n-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.porque-n8n-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.porque-n8n-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.porque-n8n-card:hover::before {
    transform: scaleX(1);
}

.porque-n8n-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.porque-n8n-card:hover::after {
    width: 500px;
    height: 500px;
}

.porque-n8n-card:hover {
    transform: translateY(-8px);
    border-color: #e9d5ff;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
}

.card-icon-wrapper {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.4s ease;
}

.porque-n8n-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.porque-n8n-card:hover .card-icon svg {
    transform: scale(1.1);
}

.icon-purple {
    background: #7c3aed;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.porque-n8n-card:hover .icon-purple {
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.icon-blue {
    background: #7c3aed;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.porque-n8n-card:hover .icon-blue {
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.icon-green {
    background: #7c3aed;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.porque-n8n-card:hover .icon-green {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.icon-red {
    background: #7c3aed;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.porque-n8n-card:hover .icon-red {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.porque-n8n-card:hover .card-title {
    color: #7c3aed;
}

.card-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border: 1px solid #e9d5ff;
    color: #7c3aed;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.porque-n8n-card:hover .card-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Animações de entrada */
.porque-n8n-card {
    opacity: 0;
    animation: cardFadeIn 0.6s ease-out forwards;
}

.porque-n8n-card:nth-child(1) {
    animation-delay: 0.1s;
}

.porque-n8n-card:nth-child(2) {
    animation-delay: 0.2s;
}

.porque-n8n-card:nth-child(3) {
    animation-delay: 0.3s;
}

.porque-n8n-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .porque-n8n-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .porque-n8n-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .porque-n8n-section {
        padding: 60px 0;
    }

    .porque-n8n-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .porque-n8n-title {
        font-size: 1.75rem;
    }

    .porque-n8n-card {
        padding: 28px 20px;
    }
}

/* Integrações Populares Section */
.integracoes-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 90px 0;
    position: relative;
}

.integracoes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.integracoes-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border: 1px solid #e9d5ff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
}

.integracoes-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integracoes-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
}

.integracoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.integracao-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.integracao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integracao-card:hover::before {
    opacity: 1;
}

.integracao-card:hover {
    transform: translateY(-6px);
    border-color: #e9d5ff;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.12);
}

.integracao-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.integracao-logo svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.integracao-card:hover .integracao-logo svg {
    transform: scale(1.1);
}

/* Cores específicas por integração */
.slack {
    background: linear-gradient(135deg, #4A154B 0%, #611f69 100%);
    color: white;
}

.google-sheets {
    background: linear-gradient(135deg, #0F9D58 0%, #0d8549 100%);
    color: white;
}

.notion {
    background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
    color: white;
}

.airtable {
    background: linear-gradient(135deg, #FCB400 0%, #e0a200 100%);
    color: white;
}

.github {
    background: linear-gradient(135deg, #181717 0%, #2d2d2d 100%);
    color: white;
}

.trello {
    background: linear-gradient(135deg, #0079BF 0%, #026aa7 100%);
    color: white;
}

.gmail {
    background: linear-gradient(135deg, #EA4335 0%, #d33426 100%);
    color: white;
}

.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    color: white;
}

.mais {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #6b7280;
}

.integracao-card:hover .integracao-logo {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.integracao-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    position: relative;
    z-index: 1;
}

.integracao-mais {
    border: 2px dashed #d1d5db;
    background: #fafafa;
}

.integracao-mais:hover {
    border-color: #7c3aed;
    background: white;
}

.integracao-mais .integracao-name {
    color: #6b7280;
}

.integracao-mais:hover .integracao-name {
    color: #7c3aed;
}

/* CTA Integrações */

.btn-integracoes {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 1;
}

.btn-integracoes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-integracoes:hover .btn-icon {
    transform: translateX(4px);
}

/* Animações de entrada */
.integracao-card {
    opacity: 0;
    animation: cardFadeIn 0.5s ease-out forwards;
}

.integracao-card:nth-child(1) {
    animation-delay: 0.1s;
}

.integracao-card:nth-child(2) {
    animation-delay: 0.15s;
}

.integracao-card:nth-child(3) {
    animation-delay: 0.2s;
}

.integracao-card:nth-child(4) {
    animation-delay: 0.25s;
}

.integracao-card:nth-child(5) {
    animation-delay: 0.3s;
}

.integracao-card:nth-child(6) {
    animation-delay: 0.35s;
}

.integracao-card:nth-child(7) {
    animation-delay: 0.4s;
}

.integracao-card:nth-child(8) {
    animation-delay: 0.45s;
}

.integracao-card:nth-child(9) {
    animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 1024px) {
    .integracoes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .integracoes-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .integracoes-section {
        padding: 70px 0;
    }

    .integracoes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .integracoes-title {
        font-size: 1.75rem;
    }

    .integracao-card {
        padding: 24px 16px;
    }

    .integracao-logo {
        width: 48px;
        height: 48px;
    }

    .integracao-logo svg {
        width: 28px;
        height: 28px;
    }

    .integracoes-cta {
        padding: 32px 24px;
    }

    .btn-integracoes {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .integracoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Casos de Uso Section */
.casos-uso-section {
    background: white;
    padding: 90px 0;
    position: relative;
}

.casos-uso-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.casos-uso-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.title-highlight-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casos-uso-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
}

.casos-uso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.caso-uso-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.caso-uso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.caso-uso-card:hover::before {
    opacity: 1;
}

.caso-uso-card:hover {
    transform: translateY(-8px);
    border-color: #e9d5ff;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.caso-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.caso-badge.popular {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.caso-badge.facil {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #34d399;
}

.caso-badge.avancado {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
    border: 1px solid #818cf8;
}

.caso-icon-wrapper {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.caso-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.caso-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    transition: transform 0.4s ease;
}

.caso-uso-card:hover .caso-icon {
    transform: scale(1.1) rotate(-5deg);
}

.caso-uso-card:hover .caso-icon svg {
    transform: scale(1.1);
}

.icon-gradient-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.icon-gradient-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.icon-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.icon-gradient-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.icon-gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.icon-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.caso-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.caso-uso-card:hover .caso-title {
    color: #7c3aed;
}

.caso-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.caso-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.caso-integracoes {
    display: flex;
    gap: 6px;
}

.integracao-mini {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.integracao-mini svg {
    width: 18px;
    height: 18px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.caso-uso-card:hover .integracao-mini {
    opacity: 1;
    transform: scale(1.1);
}

.caso-uso-card:hover .integracao-mini svg {
    color: #7c3aed;
}

.caso-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7c3aed;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.caso-uso-card:hover .caso-link {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Casos de Uso */
.casos-uso-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.casos-uso-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateCta 15s linear infinite;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.btn-casos-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white !important;
    color: #7c3aed !important;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    text-decoration: none !important;
}

.btn-casos-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
    background: #f9fafb !important;
    color: #7c3aed !important;
}

.btn-casos-cta .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-casos-cta:hover .btn-icon {
    transform: translateY(3px);
    animation: arrowBounceDown 0.6s ease-in-out infinite;
}

@keyframes arrowBounceDown {

    0%,
    100% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Animações de entrada */
.caso-uso-card {
    opacity: 0;
    animation: cardFadeIn 0.6s ease-out forwards;
}

.caso-uso-card:nth-child(1) {
    animation-delay: 0.1s;
}

.caso-uso-card:nth-child(2) {
    animation-delay: 0.2s;
}

.caso-uso-card:nth-child(3) {
    animation-delay: 0.3s;
}

.caso-uso-card:nth-child(4) {
    animation-delay: 0.4s;
}

.caso-uso-card:nth-child(5) {
    animation-delay: 0.5s;
}

.caso-uso-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1024px) {
    .casos-uso-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .casos-uso-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .casos-uso-section {
        padding: 70px 0;
    }

    .casos-uso-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .casos-uso-title {
        font-size: 1.75rem;
    }

    .caso-uso-card {
        padding: 28px 24px;
    }

    .casos-uso-cta {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .btn-casos-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ====
====================================
   PRICING N8N SECTION - Tabela de Preços Elegante
   ======================================== */

.pricing-n8n-section {
    background: #fafafa;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.pricing-n8n-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-n8n-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pricing-n8n-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.pricing-n8n-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.pricing-n8n-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.pricing-n8n-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-n8n-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pricing-n8n-card:hover {
    transform: translateY(-6px);
    border-color: #d1d5db;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-n8n-card:hover::before {
    opacity: 1;
}

/* Card Popular - Destaque */
.pricing-popular {
    background: #ffffff;
    border: 2px solid #7c3aed;
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
}

.pricing-popular::before {
    opacity: 1;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
}

.pricing-popular:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.35);
}

/* Badges */
.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
}

.badge-discount {
    background: #ef4444;
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.badge-popular {
    top: 20px;
    right: auto;
    left: 20px;
    background: #7c3aed;
    color: white;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.pricing-popular .badge-discount {
    right: 20px;
    left: auto;
}

/* Nome do Plano */
.pricing-plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    margin-top: 40px;
    letter-spacing: -0.3px;
}

/* Preços */
.pricing-old-price {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 6px;
    font-weight: 500;
}

.pricing-current {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-right: 2px;
}

.pricing-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-period {
    font-size: 0.95rem;
    color: #6b7280;
    margin-left: 3px;
    font-weight: 500;
}

.pricing-promo-text {
    font-size: 0.8rem;
    color: #7c3aed;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Botão */
.pricing-btn {
    width: 100%;
    background: #1f2937;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.pricing-btn:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 41, 55, 0.25);
    color: #ffffff;
    text-decoration: none;
}

.pricing-btn-popular {
    background: #7c3aed;
    color: #ffffff;
    border: none;
    text-decoration: none;
}

.pricing-btn-popular:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
    color: #ffffff;
    text-decoration: none;
}

/* Garantia */
.pricing-guarantee {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f3f4f6;
    padding-top: 22px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 400;
}

.feature-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10b981;
    margin-top: 1px;
}

/* Benefícios Adicionais */
.pricing-benefits {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pricing-benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.text-purple-gradient {
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.pricing-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 400;
}

.pricing-benefit-item:hover {
    background: #fafafa;
    transform: translateX(3px);
    color: #4b5563;
}

.benefit-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10b981;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-n8n-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-popular {
        transform: scale(1);
    }

    .pricing-popular:hover {
        transform: translateY(-8px) scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-n8n-section {
        padding: 60px 0;
    }

    .pricing-n8n-title {
        font-size: 2rem;
    }

    .pricing-n8n-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-popular {
        transform: scale(1);
    }

    .pricing-value {
        font-size: 2.5rem;
    }

    .pricing-benefits {
        padding: 32px 24px;
    }

    .pricing-benefits-title {
        font-size: 1.5rem;
    }

    .pricing-benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .pricing-n8n-title {
        font-size: 1.75rem;
    }

    .pricing-n8n-card {
        padding: 28px 20px;
    }

    .pricing-value {
        font-size: 2.2rem;
    }
}


/* ========================================
   PRICING TOGGLE - Botão Ver Mais Planos
   ======================================== */

.pricing-toggle-wrapper {
    text-align: center;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.pricing-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1f2937;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-toggle-btn:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.15);
}

.toggle-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.toggle-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.pricing-toggle-btn.active .toggle-arrow {
    transform: rotate(180deg);
}

/* Planos Adicionais */
.pricing-more-plans {
    margin-top: 30px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-toggle-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

/* =====
===================================
   TOP BANNER - Banner de Cupom de Desconto COLORIDO
   ======================================== */

.top-banner {
    background: linear-gradient(45deg, #1a0033, #2d1b69, #4c1d95, #7c3aed, #a855f7, #c084fc, #7c3aed, #4c1d95, #2d1b69, #1a0033) !important;
    background-size: 400% 400% !important;
    animation: gradientMove 8s ease-in-out infinite !important;
    padding: 14px 0 !important;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(168, 85, 247, 0.6);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(168, 85, 247, 0.15) 2px,
            rgba(168, 85, 247, 0.15) 4px
        );
    pointer-events: none;
}

.top-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 181, 253, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.banner-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.banner-icon {
    width: 26px;
    height: 26px;
    color: #fbbf24;
    flex-shrink: 0;
    animation: pulseGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    }
}

.banner-text {
    font-size: 1rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coupon-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(168, 85, 247, 0.6) !important;
    border-radius: 12px !important;
    padding: 8px 16px !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    animation: couponGlow 3s ease-in-out infinite;
}

@keyframes couponGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        border-color: rgba(168, 85, 247, 0.6);
    }
    50% {
        box-shadow: 0 6px 25px rgba(124, 58, 237, 0.7);
        border-color: rgba(168, 85, 247, 0.9);
    }
}

.banner-coupon {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 2px !important;
    font-family: 'Courier New', monospace !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.copy-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .top-banner {
        padding: 16px 0;
        background-size: 300% 300% !important;
    }

    .banner-content {
        gap: 14px;
        padding: 0 12px;
    }

    .banner-text {
        font-size: 0.9rem;
        text-align: center;
        flex-basis: 100%;
        font-weight: 600;
    }

    .banner-icon {
        width: 22px;
        height: 22px;
    }

    .coupon-wrapper {
        padding: 6px 14px;
        border-radius: 10px;
    }

    .banner-coupon {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .copy-btn {
        font-size: 0.85rem;
        padding: 6px 14px;
        border-radius: 8px;
    }

    .copy-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 12px 0;
        background-size: 250% 250% !important;
    }

    .banner-content {
        gap: 10px;
        padding: 0 8px;
        flex-direction: column;
    }

    .banner-text {
        font-size: 0.8rem;
        order: 1;
    }

    .banner-icon {
        width: 20px;
        height: 20px;
        order: 0;
    }

    .coupon-wrapper {
        order: 2;
        padding: 5px 12px;
    }

    .copy-btn {
        order: 3;
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .banner-text {
        font-size: 0.8rem;
    }
}


/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    font-size: 1.5rem;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(-5deg);
    }

    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.cookie-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.cookie-description a {
    color: #7c3aed;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-description a:hover {
    color: #6d28d9;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7e22ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

.cookie-btn-decline {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.cookie-btn-decline:hover {
    background: #e5e7eb;
    color: #4b5563;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-title {
        font-size: 1rem;
    }

    .cookie-description {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .cookie-title {
        font-size: 0.95rem;
    }

    .cookie-icon {
        font-size: 1.3rem;
    }
}


/* ========================================
   TRUST SECTION - Confiança que você pode sentir
   ======================================== */

.trust-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.trust-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.trust-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.2);
    border-color: #7c3aed;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon-wrapper {
    margin-bottom: 24px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
}

.icon-blue {
    background: #7c3aed;
    color: #ffffff;
}

.icon-green {
    background: #7c3aed;
    color: #ffffff;
}

.icon-purple {
    background: #7c3aed;
    color: #ffffff;
}

.icon-orange {
    background: #7c3aed;
    color: #ffffff;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.trust-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

/* Stats de Confiança */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.trust-stat-item {
    text-align: center;
    position: relative;
}

.trust-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -1px;
}

.trust-stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Animação de entrada */
@keyframes trustFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-card {
    animation: trustFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.trust-card:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-card:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.3s;
}

.trust-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .trust-stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 70px 0;
    }

    .trust-title {
        font-size: 2rem;
    }

    .trust-subtitle {
        font-size: 0.95rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-card {
        padding: 32px 24px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 30px;
    }

    .trust-stat-item::after {
        display: none !important;
    }

    .trust-stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .trust-title {
        font-size: 1.75rem;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
    }

    .trust-icon svg {
        width: 28px;
        height: 28px;
    }

    .trust-card-title {
        font-size: 1.1rem;
    }
}


/* ========================================
   LOCALIZAÇÃO SECTION - Data Centers em São Paulo
   ======================================== */

.localizacao-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.localizacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.localizacao-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.localizacao-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.localizacao-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Grid de Data Centers */
.datacenters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.datacenter-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.datacenter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.datacenter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
    border-color: #7c3aed;
}

.datacenter-card:hover::before {
    opacity: 1;
}

/* Header do Card */
.datacenter-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.datacenter-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.datacenter-icon svg {
    width: 28px;
    height: 28px;
    color: #7c3aed;
}

.datacenter-card:hover .datacenter-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

.datacenter-card:hover .datacenter-icon svg {
    color: #ffffff;
}

.datacenter-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.datacenter-location {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.datacenter-location svg {
    width: 16px;
    height: 16px;
    color: #7c3aed;
    flex-shrink: 0;
}

/* Specs do Data Center */
.datacenter-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.spec-item {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.spec-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.spec-label {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Badges */
.datacenter-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #a7f3d0;
    transition: all 0.3s ease;
}

.feature-badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.feature-badge:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    transform: translateY(-1px);
}

/* Info do Data Center */
.datacenter-info {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    border-left: 3px solid #7c3aed;
    margin: 0;
}

/* Animação de entrada */
@keyframes datacenterFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.datacenter-card {
    animation: datacenterFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.datacenter-card:nth-child(1) {
    animation-delay: 0.1s;
}

.datacenter-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .datacenters-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .localizacao-section {
        padding: 70px 0;
    }

    .localizacao-title {
        font-size: 2rem;
    }

    .localizacao-subtitle {
        font-size: 0.95rem;
    }

    .datacenter-card {
        padding: 28px 24px;
    }

    .datacenter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .datacenter-specs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .spec-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .localizacao-title {
        font-size: 1.75rem;
    }

    .datacenter-name {
        font-size: 1.2rem;
    }

    .datacenter-icon {
        width: 48px;
        height: 48px;
    }

    .datacenter-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}




/* ========================================
   VALORES E CULTURA SECTION - Sobre Nós
   ======================================== */

.valores-cultura-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.valores-cultura-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
.valores-cultura-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.valores-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    color: #7c3aed;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #e9d5ff;
}

.valores-badge svg {
    width: 18px;
    height: 18px;
}

.valores-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.valores-title-highlight {
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.valores-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tabs */
.valores-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.valor-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.valor-tab svg {
    width: 20px;
    height: 20px;
}

.valor-tab:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.valor-tab.active {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    border-color: #7c3aed;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

/* Conteúdo */
.valores-content {
    position: relative;
    z-index: 1;
}

.valor-panel {
    display: none;
    animation: fadeInPanel 0.5s ease-out;
}

.valor-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid de Valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card de Valor */
.valor-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.valor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
    border-color: #7c3aed;
}

/* Ícone do Card */
.valor-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.valor-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: #7c3aed;
}

.valor-card:hover .valor-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

.valor-card:hover .valor-icon-wrapper svg {
    color: #ffffff;
}

/* Título do Card */
.valor-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* Descrição do Card */
.valor-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Lista do Card */
.valor-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.valor-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
}

.valor-card-list li svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .valores-cultura-section {
        padding: 70px 0;
    }
    
    .valores-title {
        font-size: 2rem;
    }
    
    .valores-subtitle {
        font-size: 0.95rem;
    }
    
    .valores-tabs {
        flex-direction: column;
        gap: 12px;
    }
    
    .valor-tab {
        width: 100%;
        justify-content: center;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .valor-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .valores-title {
        font-size: 1.75rem;
    }
    
    .valores-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .valor-icon-wrapper {
        width: 52px;
        height: 52px;
    }
    
    .valor-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
    
    .valor-card-title {
        font-size: 1.1rem;
    }
}


/* ========================================
   DIFERENCIAIS SECTION - Missão, Visão e Valores
   ======================================== */

.diferenciais-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.diferenciais-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.diferenciais-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.diferenciais-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Grid de Cards */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Card Individual */
.diferencial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
    border-color: #7c3aed;
}

.diferencial-card:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.icon-purple {
    background: #7c3aed;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.diferencial-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.3);
}

.icon {
    width: 36px;
    height: 36px;
    color: white;
}

/* Card Title */
.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.diferencial-card:hover .card-title {
    color: #7c3aed;
}

/* Card Description */
.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
}

/* Animação de entrada */
@keyframes diferencialFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.diferencial-card {
    animation: diferencialFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.diferencial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.diferencial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.diferencial-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1200px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .diferenciais-section {
        padding: 70px 0;
    }
    
    .diferenciais-title {
        font-size: 2rem;
    }
    
    .diferenciais-subtitle {
        font-size: 0.95rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .diferencial-card {
        padding: 32px 24px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .diferenciais-title {
        font-size: 1.75rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}


/* ========================================
   HERO N8N - BOTÕES CTA
   ======================================== */

.hero-n8n-btn-primary,
.hero-n8n-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.hero-n8n-btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.hero-n8n-btn-primary:hover {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.hero-n8n-btn-primary:active {
    transform: translateY(0);
}

.hero-n8n-btn-secondary {
    background: #ffffff;
    color: #7c3aed;
    border: 2px solid #e9d5ff;
}

.hero-n8n-btn-secondary:hover {
    background: #faf5ff;
    border-color: #d8b4fe;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.hero-n8n-btn-secondary:active {
    transform: translateY(0);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-n8n-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* CTA Container */
.hero-n8n-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 24px;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-n8n-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-n8n-btn-primary,
    .hero-n8n-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Badge de Localização Brasil - Servidores */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    color: #333333;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: fit-content;
}

.location-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009739 0%, #00b04f 50%, #009739 100%);
}

.location-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #ffffff;
}

.location-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-primary {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.location-secondary {
    font-size: 0.85rem;
    font-weight: 500;
    color: #718096;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* Responsivo para badge */
@media (max-width: 768px) {
    .location-badge {
        padding: 16px 24px;
        gap: 14px;
        margin-top: 18px;
    }
    
    .flag-icon {
        width: 38px;
        height: 28px;
    }
    
    .location-primary {
        font-size: 1rem;
    }
    
    .location-secondary {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .location-badge {
        padding: 14px 20px;
        gap: 12px;
    }
    
    .flag-icon {
        width: 34px;
        height: 26px;
    }
    
    .location-primary {
        font-size: 0.95rem;
    }
    
    .location-secondary {
        font-size: 0.8rem;
    }
}

/* Biblical Quote Section */
.biblical-quote-section {
    background: #f8fafc;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.biblical-quote-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.biblical-quote-text {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-bottom: 5px;
    line-height: 1.4;
}

.biblical-quote-reference {
    font-size: 12px;
    color: #7c3aed;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .biblical-quote-section {
        padding: 15px 0;
    }
    
    .biblical-quote-text {
        font-size: 13px;
    }
    
    .biblical-quote-reference {
        font-size: 11px;
    }
}

/* Mobile Menu Dropdown Styles - Enhanced Design */
.mobile-dropdown {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mobile-dropdown:hover {
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.1);
    transform: translateY(-1px);
}

.mobile-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-dropdown-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-dropdown-btn:hover::before {
    left: 100%;
}

.mobile-dropdown-btn:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #7c3aed;
}

.mobile-dropdown-btn:active {
    transform: scale(0.98);
}

.mobile-arrow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.mobile-dropdown-btn[aria-expanded="true"] .mobile-arrow {
    transform: rotate(180deg);
    color: #7c3aed;
}

.mobile-dropdown-content {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-left: 4px solid #a855f7;
    margin: 0 8px 8px 16px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(168, 85, 247, 0.1);
}

.mobile-dropdown-content.show {
    display: block !important;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 300px;
    }
}

.mobile-dropdown-content a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 4px 8px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.mobile-dropdown-content a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mobile-dropdown-content a:hover::before {
    left: 100%;
}

.mobile-dropdown-content a:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0e6ff 100%);
    transform: translateX(6px);
    color: #6b21a8;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.mobile-dropdown-content a:active {
    transform: translateX(6px) scale(0.98);
}

/* Auth Buttons Enhanced Styles */
.mobile-dropdown .pt-4 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin: 8px;
    padding: 16px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mobile-dropdown .pt-4 a {
    border-radius: 10px !important;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-dropdown .pt-4 a:first-child {
    border: 2px solid #a855f7;
    background: transparent;
}

.mobile-dropdown .pt-4 a:first-child:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.mobile-dropdown .pt-4 a:last-child {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.mobile-dropdown .pt-4 a:last-child:hover {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-dropdown {
        margin-bottom: 6px;
        border-radius: 10px;
    }
    
    .mobile-dropdown-btn {
        padding: 12px 16px !important;
    }
    
    .mobile-dropdown-content {
        margin: 0 6px 6px 12px;
        border-radius: 6px;
    }
    
    .mobile-dropdown-content a {
        padding: 10px 12px !important;
        margin: 2px 6px;
        font-size: 14px;
    }
}

.mobile-arrow.rotated {
    transform: rotate(180deg);
}

/* Mobile Header Layout Adjustments */
@media (max-width: 1023px) {
    /* Hide auth buttons on mobile - they're available in the dropdown */
    .flex.items-center.space-x-3 {
        display: none !important;
    }
    
    /* Ensure mobile menu button is properly positioned */
    #mobileMenuBtn {
        margin-left: auto;
        padding: 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: rgba(168, 85, 247, 0.05);
        border: 1px solid rgba(168, 85, 247, 0.1);
    }
    
    #mobileMenuBtn:hover {
        background: rgba(168, 85, 247, 0.1);
        border-color: rgba(168, 85, 247, 0.2);
        transform: scale(1.05);
    }
    
    #mobileMenuBtn svg {
        color: #7c3aed;
        transition: color 0.3s ease;
    }
    
    /* Improve header spacing on mobile */
    .flex.items-center.justify-between.py-4 {
        padding: 16px 0;
    }
    
    /* Logo adjustments for mobile */
    .flex.items-center.space-x-2 img {
        height: 40px;
        transition: height 0.3s ease;
    }
}

/* Hide auth buttons on mobile menu for smaller screens */
@media (max-width: 480px) {
    .mobile-dropdown-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .mobile-dropdown-content a {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* Infraestrutura CTA Section Styles */
.infraestrutura-cta-section {
    background: #f9fafb;
    padding: 100px 0;
}

.infraestrutura-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.infraestrutura-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.infraestrutura-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
}

.infraestrutura-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.infraestrutura-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
    color: white;
    text-decoration: none;
}

.infraestrutura-card {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.infraestrutura-card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.infraestrutura-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.infraestrutura-dot.red { background: #ef4444; }
.infraestrutura-dot.yellow { background: #f59e0b; }
.infraestrutura-dot.green { background: #10b981; }

.infraestrutura-status {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.infraestrutura-status svg {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.infraestrutura-status-text {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95rem;
}

.infraestrutura-status-subtext {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.85rem;
}

.infraestrutura-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.infraestrutura-stat {
    text-align: center;
}

.infraestrutura-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.infraestrutura-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Responsive Design for Infraestrutura Section */
@media (max-width: 1024px) {
    .infraestrutura-cta-section {
        padding: 80px 0;
    }
    
    .infraestrutura-grid {
        gap: 40px;
    }
    
    .infraestrutura-content h2 {
        font-size: 2.2rem;
    }
    
    .infraestrutura-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .infraestrutura-cta-section {
        padding: 60px 0;
    }
    
    .infraestrutura-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .infraestrutura-content h2 {
        font-size: 1.9rem;
        margin-bottom: 16px;
    }
    
    .infraestrutura-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .infraestrutura-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .infraestrutura-card {
        padding: 25px;
        margin-top: 20px;
    }
    
    .infraestrutura-stats {
        gap: 15px;
    }
    
    .infraestrutura-stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .infraestrutura-cta-section {
        padding: 40px 0;
    }
    
    .infraestrutura-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .infraestrutura-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .infraestrutura-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .infraestrutura-card {
        padding: 20px;
    }
    
    .infraestrutura-status {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .infraestrutura-status svg {
        width: 20px;
        height: 20px;
    }
    
    .infraestrutura-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .infraestrutura-stat-number {
        font-size: 2rem;
    }
    
    .infraestrutura-stat-label {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .mobile-dropdown-btn {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .mobile-dropdown-content a {
        padding: 10px 16px;
        font-size: 15px;
    }
    
    /* Further logo size adjustment for very small screens */
    .flex.items-center.space-x-2 img {
        height: 36px;
    }
    
    /* Adjust mobile menu button for small screens */
    #mobileMenuBtn {
        padding: 10px;
    }
}
