@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #34D399;
    --background-color: #000000;
    --background-gradient: linear-gradient(135deg, #000000 0%, #0A0F1F 100%);
    --text-color: #FFFFFF;
    --text-secondary: #A1A1AA;
    --box-bg: rgba(18, 18, 18, 0.95);
    --header-bg: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-gradient);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.logo img {
    height: 32px;
}

nav ul {
    display: flex;
    list-style-type: none;
    gap: 32px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
    padding: 8px 0;
}

nav ul li a:hover,
nav ul li a.active {
    opacity: 1;
}

nav ul li a.active {
    border-bottom: 2px solid var(--primary-color);
}

.btn-contato {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-contato:hover {
    background-color: #2EBE8B;
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.star-rating {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
}

.star:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-veja-mais {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-veja-mais:hover {
    background-color: #2EBE8B;
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.5);
}

.subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 80px;
}

/* Stats Section */
.stats {
    padding: 0 0 100px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--box-bg);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px -1px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::after {
    opacity: 1;
    transform: translate(25%, 25%);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
        padding: 16px 0;
    }

    header .container {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .stats .container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-item h2 {
        font-size: 36px;
    }
}

/* ======================================= beneficio ===================================*/

/* Benefícios Section */
.benefits {
    padding: 100px 0;
    background-color: var(--box-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(52, 211, 153, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefits-badge:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.benefits-badge .star-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.benefits-description {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 211, 153, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.2);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.benefit-item:hover .benefit-icon svg {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.benefit-item:hover h3 {
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 28px;
    }

    .benefits-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 25px 15px;
    }
}



/* =============================== POTENCIALIZE O SEU NEGOCIO ======================== */
/* Solutions Section */
.solutions-wrapper {
    width: 100%;
    background-color: var(--box-bg);
    padding: 100px 0;
}

.solutions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(52, 211, 153, 0.1);
    color: #34D399;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solutions-badge .star-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.solutions-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.3;
}

.solutions-description {
    font-size: 18px;
    color: #94A3B8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-item.large {
    grid-column: span 2;
    padding: 20px;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 211, 153, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 211, 153, 0.2);
}

.solution-item:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 10px;
    color: #34D399;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.solution-icon svg {
    width: 20px;
    height: 20px;
}

.solution-item:hover .solution-icon {
    background-color: rgba(52, 211, 153, 0.2);
}

.solution-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.solution-item p {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
}

.solution-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    margin-top: 16px;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .solutions-wrapper {
        padding: 60px 0;
    }

    .solutions-title {
        font-size: 28px;
    }

    .solutions-description {
        font-size: 16px;
    }

    .solution-item {
        padding: 20px;
    }
}


/* =========================================== NEGÓCIO ================================ */

/* Expertise Section */
.expertise-wrapper {
    width: 100%;
    background-color: var(--box-bg);
    padding: 100px 0;
}

.expertise {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(52, 211, 153, 0.1);
    color: #34D399;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.expertise-badge .crown-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.expertise-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.3;
}

.expertise-description {
    font-size: 18px;
    color: #94A3B8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expertise-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 32px;
}

.expertise-item.reverse {
    flex-direction: row-reverse;
}

.expertise-content {
    flex: 1;
}

.expertise-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 12px;
    color: #34D399;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.expertise-icon svg {
    width: 24px;
    height: 24px;
}

.expertise-item:hover .expertise-icon {
    background-color: rgba(52, 211, 153, 0.2);
}

.expertise-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.expertise-item p {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.expertise-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-image img {
    filter: grayscale(0%);
}

/* Feature Badges */
.feature-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    background-color: rgba(52, 211, 153, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.badge-label {
    color: #34D399;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.badge-description {
    color: #94A3B8;
    font-size: 14px;
}

/* Metrics */
.feature-metrics {
    display: flex;
    gap: 24px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    color: #34D399;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.metric-label {
    color: #94A3B8;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .expertise-item, .expertise-item.reverse {
        flex-direction: column;
    }

    .expertise-image {
        order: -1;
    }

    .feature-metrics {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .expertise-wrapper {
        padding: 60px 0;
    }

    .expertise-title {
        font-size: 28px;
    }

    .expertise-description {
        font-size: 16px;
    }

    .expertise-item {
        padding: 24px;
    }

    .feature-badges {
        justify-content: center;
    }

    .feature-metrics {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}


/* ======================== SOLUÇÕES =========================== */

.solutions-wrapper {
    background-color: var(--box-bg);
    padding: 80px 0;
}

.solutions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 48px;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(52, 211, 153, 0.1);
    color: #34D399;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.solutions-badge .resource-icon {
    width: 16px;
    height: 16px;
}

.solutions-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.solutions-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94A3B8;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 20px;
    height: 20px;
    color: #34D399;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .solutions-wrapper {
        padding: 40px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-title {
        font-size: 28px;
    }

    .solution-card {
        padding: 20px;
    }
}


/* ============================== CONTATO RESULT ======================== */

/* Existing Contact Styles */
.contact-wrapper {
    background-color: var(--box-bg);
    padding: 100px 0;
}

.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 100px;
    display: flex;
    gap: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-content {
    flex: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(52, 211, 153, 0.1);
    color: #34D399;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.contact-badge:hover {
    background-color: rgba(52, 211, 153, 0.2);
}

.contact-badge .contact-icon {
    width: 16px;
    height: 16px;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #34D399;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #34D399;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 32px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34D399;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
}

.submit-button {
    background: #34D399;
    color: #000000;
    padding: 16px 32px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    align-self: flex-start;
}

.submit-button:hover {
    background: #3BD9A0;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: #34D399;
}

.social-link .follow {
    margin-left: auto;
    color: #34D399;
    font-size: 14px;
    font-weight: 600;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.1);
}

/* CTA Section */
.cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-question {
    color: #94A3B8;
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #34D399;
    color: #000000;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.cta-button:hover {
    background: #3BD9A0;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

/* New Notification Styles */
.notification {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease-out;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification.success {
    background-color: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: #34D399;
}

.notification.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        padding: 40px;
    }

    .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 32px;
    }

    .social-links {
        flex-direction: column;
    }

    .cta-title {
        font-size: 28px;
    }

    .notification {
        margin: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 30px;
    }

    .submit-button {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .notification {
        margin: 0 15px 15px 15px;
        padding: 12px;
        font-size: 13px;
    }
}

.hidden {
    display: none !important;
}

/* ========================= FOOTER ==================== */

.footer {
    background-color: var(--box-bg);
    color: #FFFFFF;
    padding: 60px 0 20px;
    position: relative;
}

.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #34D399 50%,
        transparent 100%);
    background-size: 200% 100%;
    animation: borderAnimation 3s linear infinite;
}

@keyframes borderAnimation {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex-basis: 100%;
    margin-bottom: 40px;
}

.footer-logo .logo {
    width: 140px;
    height: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-section {
    flex-basis: calc(33.333% - 20px);
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #34D399;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
}

.footer-section p {
    color: #94A3B8;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #34D399;
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(52, 211, 153, 0.2);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-section {
        flex-basis: 100%;
    }
}

/* =========================== SCROLL ====================== */

/* Adicione isso ao seu CSS existente */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    overflow: hidden;
}

.scroll-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #34D399, #34D399);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
    animation: glow 1.5s linear infinite;
}

@keyframes glow {
    50% {
        box-shadow: 0 0 20px rgba(52, 211, 153, 0.8);
    }
}

/* ============================== SCROLL ========================= */

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    background-size: 200% 200%;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px #34D399;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
  }
  
  #scrollToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: #34D399;
  }
  
  #scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
  }
  
  .button-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #scrollToTopBtn svg {
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
  }
  
  #scrollToTopBtn:hover svg {
    transform: translateY(-3px);
  }
  
  .tech-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
  }
  
  #scrollToTopBtn:hover .tech-circle {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @media (max-width: 768px) {
    #scrollToTopBtn {
      width: 50px;
      height: 50px;
      font-size: 16px;
    }
  
    .tech-circle {
      width: 30px;
      height: 30px;
    }
  
    #scrollToTopBtn:hover .tech-circle {
      width: 40px;
      height: 40px;
    }
  }

  /* =============================== COOKIE ======================= */

  .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #34D399;
    color: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  .cookie-consent.hidden {
    transform: translateY(100%);
    opacity: 0;
  }
  
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .cookie-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .cookie-content a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }
  
  .cookie-content a:hover {
    opacity: 0.8;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 12px;
  }
  
  .btn-accept, .btn-preferences {
    background-color: #fff;
    color: #34D399;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .btn-accept:hover, .btn-preferences:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
  }
  
  .cookie-balloon {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Alterado de right para left */
    background: #34D399;
    color: #fff;
    padding: 16px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    display: none;
    animation: popIn 0.3s ease-out;
    cursor: pointer; /* Adiciona o cursor pointer */
  }
  
  @keyframes popIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .balloon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .balloon-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }
  
  
  .preferences-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .modal-content h2 {
    color: #34D399;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .modal-content label {
    display: flex;
    align-items: center;
    margin: 16px 0;
    color: #333;
    font-size: 16px;
  }
  
  .modal-content input[type="checkbox"] {
    margin-right: 10px;
  }
  
  .modal-buttons {
    margin-top: 30px;
    text-align: right;
  }
  
  .btn-save, .btn-close-modal {
    background-color: #34D399;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 12px;
  }
  
  .btn-save:hover, .btn-close-modal:hover {
    background-color: #2EBE8B;
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .cookie-buttons {
      margin-top: 16px;
      width: 100%;
    }
  
    .btn-accept, .btn-preferences {
      flex: 1;
    }
  
    .modal-content {
      width: 95%;
      margin: 5% auto;
      padding: 20px;
    }
  }
  
  /* TOP BANNER */

  /* Estilos para o top banner */
.top-banner {
    background: linear-gradient(135deg, #34D399 0%, #3B82F6 100%);
    color: #fff;
    font-size: 16px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-banner.hidden {
    transform: translateY(-100%);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.banner-content p {
    margin: 0;
    flex-grow: 1;
    text-align: left;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ver-mensagem-btn {
    background-color: #ffffff;
    color: #3B82F6;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ver-mensagem-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ver-mensagem-btn .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.ver-mensagem-btn:hover .icon {
    transform: translateX(3px);
}

.close-banner {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.close-banner:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.close-banner svg {
    width: 24px;
    height: 24px;
}

/* Estilos para o popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.popup.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

.popup-content h2 {
    color: #3B82F6;
    margin-bottom: 20px;
    font-size: 24px;
}

.popup-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.fechar-popup-btn {
    background-color: #34D399;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fechar-popup-btn:hover {
    background-color: #2EBE8B;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Ajustes para o header principal */
header {
    transition: margin-top 0.3s ease-in-out;
}

/* Classe para ajustar o espaçamento quando o banner está visível */
.banner-visible {
    margin-top: 60px; /* Ajuste este valor conforme a altura do seu banner */
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content p {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .banner-buttons {
        width: 100%;
        justify-content: center;
    }

    /* Ajuste para o header em dispositivos móveis */
    .banner-visible {
        margin-top: 100px; /* Ajuste este valor para dispositivos móveis */
    }
}

.Pedro {
    color: white;
}

/* ====================== LOADER ============= */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  position: relative;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  0%, 100% {
    stroke: #34D399;
  }
  40% {
    stroke: #3B82F6;
  }
  66% {
    stroke: #F59E0B;
  }
  80%, 90% {
    stroke: #EF4444;
  }
}


/* EMPRESAS QUE CONFIAM EM NÓS */

/* Trusted Companies Section */
.trusted-section {
    padding: 60px 0;
    background-color: #000;
    color: #fff;
    position: relative;
    margin-bottom: 100px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
}

.carousel-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.carousel {
    display: flex;
    animation: scroll 15s linear infinite;
}

.carousel-slide {
    flex: 0 0 160px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-slide:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-190px * 15));
    }
}

@media (max-width: 1024px) {
    .carousel-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        width: 95%;
    }

    .carousel-slide {
        flex: 0 0 120px;
        margin: 0 20px;
    }
    
    .carousel-container::before,
    .carousel-container::after {
        width: 50px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 15));
        }
    }
}

  /* ================================= sistema de tour */

  /* Cursor personalizado */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(52, 211, 153, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    transition: all 0.1s ease-out;
    animation: cursorAnim 0.5s infinite alternate;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #34D399;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    transition: all 0.15s ease-out;
}

/* Animações */
@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Estados do cursor */
.cursor-hover {
    background: rgba(52, 211, 153, 0.1);
    border-color: #34D399;
    width: 50px;
    height: 50px;
}

.cursor-dot-hover {
    background-color: #34D399;
    width: 12px;
    height: 12px;
}

.cursor-click {
    animation: cursorClick 0.5s forwards;
}

.cursor-dot-click {
    animation: cursorDotClick 0.5s forwards;
}

@keyframes cursorClick {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes cursorDotClick {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(1);
    }
}

/* Desativar em dispositivos touch */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .cursor-dot {
        display: none !important;
    }
    * {
        cursor: auto !important;
    }
}

/* Desativar em telas pequenas */
@media (max-width: 768px) {
    .custom-cursor,
    .cursor-dot {
        display: none !important;
    }
    * {
        cursor: auto !important;
    }
}