:root {
    --primary: #1E3D59;     /* Azul escuro mais elegante */
    --secondary: #3685B5;   /* Azul médio profissional */
    --accent: #47B5FF;      /* Azul claro para destaques */
    --text-dark: #2C3E50;   /* Cor principal para textos */
    --text-light: #607D8B;  /* Cor secundária para textos */
    --bg-light: #F8FAFC;    /* Fundo claro */
    --white: #FFFFFF;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--primary);
    padding: 0.8rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Brand Styles */
.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand i {
    font-size: 2rem;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.brand-description {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

/* Nav Links */
.navbar-nav {
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-2px);
}

.nav-link:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

.nav-link.active {
    background: rgba(71, 181, 255, 0.2);
    color: white !important;
}

.nav-link.active i {
    color: var(--accent);
}

/* Contact Button */
.contact-btn {
    background: var(--accent);
    color: white !important;
    font-weight: 600;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(71, 181, 255, 0.3);
}

.contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 161, 227, 0.4);
}

.contact-btn i {
    color: white !important;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(30, 61, 89, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-link {
        padding: 0.8rem !important;
        justify-content: flex-start;
    }

    .contact-btn {
        margin-top: 0.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .brand-description {
        font-size: 0.8rem;
    }
}

/* Animação do Menu Mobile */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #152A3E 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.svg');
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 2rem;
}

.hero-subtitle {
    position: relative;
    display: inline-flex;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.badge-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.badge-content i {
    color: #FFD700;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.badge-content span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--secondary),
        var(--accent)
    );
    filter: blur(15px);
    opacity: 0.3;
    z-index: 0;
    border-radius: 8px;
    animation: glowAnimation 3s infinite;
}

@keyframes glowAnimation {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.hero-subtitle:hover .badge-content {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-subtitle:hover .badge-glow {
    opacity: 0.4;
    filter: blur(20px);
}

/* Responsivo */
@media (max-width: 768px) {
    .badge-content {
        padding: 10px 20px;
    }
    
    .badge-content span {
        font-size: 0.8rem;
    }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.text-accent {
    color: #47B5FF;
}

/* Efeitos hover */
.text-accent:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Adicionar brilho no hover */
.text-accent:hover {
    animation: shine 2s linear infinite;
}

/* Efeito de brilho lateral */
.text-accent span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.hero-features {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #B0C4DE;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.feature-icon i {
    color: white;
    font-size: 0.8rem;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom.primary {
    background-color: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(71, 181, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-custom.primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-custom.primary:hover {
    background-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(71, 181, 255, 0.3);
}

.btn-custom.primary:hover i {
    transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 768px) {
    .btn-custom.primary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Stats Section */
.hero-stats {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
                rgba(71, 181, 255, 0.5), 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #B0C4DE;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.stat-icon {
    margin-bottom: 15px;
    order: -1;
    font-size: 1.8rem;
    color: var(--accent);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    opacity: 0.9;
    transform: scale(1.1);
    color: var(--accent);
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        gap: 80px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 25px;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .stat-value {
        font-size: 2.4rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 4rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .feature-item {
        justify-content: center;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero .container {
        gap: 60px;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section h2 {
    color: var(--azul-escuro);
    text-align: center;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--azul-claro);
    margin-bottom: 1rem;
}

/* Segment Cards */
.segment-card {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.segment-card i {
    font-size: 2.5rem;
    color: var(--azul-claro);
    margin-bottom: 1rem;
}

/* Footer Styles */
.footer {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(54, 133, 181, 0.1), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
}

.footer-brand .brand-container {
    margin-bottom: 20px;
}

.footer-brand .brand-container i {
    font-size: 2.5rem;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.company-description {
    color: #B0C4DE;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #B0C4DE;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #B0C4DE;
    font-size: 0.9rem;
}

.dev-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dev-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.clients-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #152A3E 100%);
    overflow: hidden;
}

.clients-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #152A3E 100%);
    z-index: 1;
}

/* Ajuste nas cores do texto do cabeçalho para melhor contraste */
.clients-header .about-subtitle .highlight {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.clients-header .about-title {
    color: var(--white);
}

.clientes-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2.5rem;
}

.clientesSwiper {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cliente-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.cliente-card:hover {
    transform: translateY(-5px);
}

.cliente-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.cliente-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cliente-card p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

.swiper-pagination-bullet-active {
    background: #333;
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-content {
        padding: 60px 0 30px;
    }
}

/* Nova Seção About/Quem Somos */
.about-section-new {
    position: relative;
    padding: 120px 0;
    background: #F8F9FA;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 1;
}

/* Círculos decorativos */
.about-background::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    opacity: 0.03;
    top: -100px;
    right: -100px;
}

.about-background::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0.03;
    bottom: -50px;
    left: -50px;
}

.about-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    transform: none;
    transition: none;
}

.about-subtitle {
    margin-bottom: 20px;
}

.about-subtitle .highlight {
    display: inline-block;
    background: rgba(71, 181, 255, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(71, 181, 255, 0.2);
}

.highlight-text {
    background: linear-gradient(120deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-accent {
    position: absolute;
    top: -20px;
    right: -40px;
    color: var(--accent);
    opacity: 0.3;
    font-size: 1.5rem;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 300;
}

.support-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transform: none;
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(71, 181, 255, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .about-section-new {
        padding: 80px 0;
    }

    .about-title {
        font-size: 3rem;
    }

    .lead-text {
        font-size: 1.3rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .title-accent {
        display: none;
    }

    .about-card {
        padding: 25px;
        transform: none;
    }

    .about-background::before,
    .about-background::after {
        width: 150px;
        height: 150px;
    }
}

/* Seção de Serviços */
.services-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #152A3E 100%);
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-header {
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    margin-bottom: 20px;
}

.services-header .highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-header .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    position: relative;
    display: inline-block;
}

.services-header .highlight-text {
    background: linear-gradient(120deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-accent {
    position: absolute;
    top: -20px;
    right: -40px;
    color: var(--accent);
    opacity: 0.3;
    font-size: 1.5rem;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(71, 181, 255, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(71, 181, 255, 0.15) 0%,
        rgba(71, 181, 255, 0.05) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 10px 30px rgba(71, 181, 255, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.3;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: translateY(-5px) scale(1.05);
}

.service-card:hover .icon-wrapper::after {
    opacity: 0.6;
    filter: blur(15px);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
    transform: translateY(2px);
}

.card-header h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.service-list li {
    color: #B0C4DE;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.9;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '•';
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.3em;
    opacity: 0.8;
}

.service-list li:hover {
    color: var(--white);
    transform: translateX(8px);
    opacity: 1;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 1.7rem;
    }
}

/* Seção de Segmentos - Novo Design */
.segments-section {
    position: relative;
    padding: 120px 0;
    background: #F8F9FA;
    overflow: hidden;
}

.segments-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 1;
}

/* Círculos decorativos */
.segments-background::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    opacity: 0.03;
    top: -150px;
    left: -100px;
}

.segments-background::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0.03;
    bottom: -100px;
    right: -50px;
}

.segments-wrapper {
    margin-top: 60px;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.segments-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.segment-box {
    width: 300px;
    height: 200px;
    perspective: 1000px;
    position: relative;
}

.segment-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.segment-box:hover::after {
    opacity: 0.3;
}

.segment-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.segment-box:hover .segment-inner {
    transform: rotateY(180deg);
}

.segment-front, .segment-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.segment-front {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.segment-box:hover .segment-front {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(71, 181, 255, 0.1);
}

.segment-front i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.segment-front h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.segment-back {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    transform: rotateY(180deg);
    box-shadow: 0 15px 35px rgba(71, 181, 255, 0.2);
}

.segment-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.segment-back li {
    color: white;
    font-size: 1.1rem;
    padding: 8px 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.segment-back li:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Efeitos de Hover */
.segment-box:hover .segment-front i {
    transform: scale(1.1);
    color: var(--secondary);
}

/* Responsivo */
@media (max-width: 1200px) {
    .segments-row {
        flex-wrap: wrap;
    }
    
    .segment-box {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .segments-row {
        flex-direction: column;
        align-items: center;
    }
    
    .segment-box {
        width: 100%;
        max-width: 300px;
    }

    .segments-tip {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* Dica de interação */
.segments-tip {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 10px 20px;
    background: rgba(71, 181, 255, 0.1);
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(71, 181, 255, 0.2);
}

.pulse-icon {
    color: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo-container img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

.footer-logo-container img:hover {
    transform: translateY(-3px);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-text h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.footer-brand-text span {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .footer-logo-container img {
        height: auto;
        width: 150px;
    }

    .footer-brand-text h3 {
        font-size: 1.8rem;
    }

    .footer-brand-text span {
        font-size: 0.9rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(71, 181, 255, 0.15);
    border-color: var(--accent);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
}

.stat-icon {
    color: var(--accent);
    font-size: 1.8rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-image {
        margin-top: 40px;
    }

    .stats-section {
        margin-top: -50px;
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Círculo adicional para os cards */
.about-cards::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    opacity: 0.02;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Seção de Clientes */
.clients-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #152A3E 100%);
    overflow: hidden;
}

.clients-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #152A3E 100%);
    z-index: 1;
}

/* Círculos decorativos */
.clients-background::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    opacity: 0.03;
    top: -100px;
    right: -100px;
}

.clients-background::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0.03;
    bottom: -50px;
    left: -50px;
}

.clients-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.clients-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.client-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(71, 181, 255, 0.1);
    border-color: var(--accent);
}

.client-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-card:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-info h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-category {
    color: var(--text-light);
    font-size: 0.9rem;
}

.clients-cta {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.trust-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 80px 0;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .client-logo {
        width: 100px;
        height: 100px;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20ba57;
    color: white;
    width: auto;
    padding: 0 20px;
    text-decoration: none;
}

.whatsapp-float i {
    margin-right: 0;
    transition: margin 0.3s ease;
}

.whatsapp-float:hover i {
    margin-right: 10px;
}

.whatsapp-text {
    display: none;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo do Formulário */


/* Seção de Serviços */
.contact-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #152A3E 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: transparent;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    color: var(--primary-color);
}

/* Estilo das Informações de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-header i {
    font-size: 24px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
}

.info-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--dark);
}

.info-card p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper,
    .info-card {
        padding: 20px;
    }
}

/* Estilo apenas para o botão do formulário de contato */
.contact-form .btn-custom.primary {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
    margin-top: 20px;
}

.contact-form .btn-custom.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.contact-form .btn-custom.primary i {
    transition: transform 0.3s ease;
}

.contact-form .btn-custom.primary:hover i {
    transform: translateX(5px);
}