:root {
            --primary: #0056b3;
            --primary-dark: #0B3457;
            --secondary: #FFAE30;
            --terceira: rgb(0,157,95);
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #FAFAFA;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Almarai', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            }

        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            width: 100%;
            }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--terceira);
            margin: 15px auto 30px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
        }

        .btn-large {
            padding: 15px 40px;
            font-size: 1.1rem;
        }
        .btn-verde{
            background-color: var(--terceira);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        header.scrolled {
            padding: 5px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            flex-direction:row;
            align-items: center;
        }
        .logo > img{
            height: 4.5rem;
        }
        .logo > .marca{
            display: flex;
            flex-direction: column;
            align-items: start;
            gap:1px;
             line-height: 1;
        }
        .logo > .marca > p{
            margin: 0px;
            padding: 0px;
        }
        .representacao{
            font-size: 1.3rem;
            
        }
        

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

         .hero {
            height: auto;
            min-height: 100vh;
            background: none;
            display: flex;
            align-items: center;
            padding: 100px 0 50px;
        }

        .hero-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-content {
            flex: 1;
            text-align: left;
            color: var(--dark);
            padding: 20px;
        }

        .hero-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--primary-dark);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--gray);
        }


        .about-edson {
        background-color: var(--light, #f9f9f9);
        padding: 60px 20px;
        }

        .about-edson-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 50px;
        }

        .about-edson-image {
        flex: 1 1 400px;
        
        
        
        }

        .about-edson-image img {
            border-radius: 10px;
            width: auto;
            height: 35rem;
            display: block;
            transition: transform 0.4s ease;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        }

        .about-edson-image:hover img {
        transform: scale(1.05);
        }

        .about-edson-text {
        flex: 1 1 400px;
        color: #333;
        }

        .about-edson-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--primary, #2a7ae4);
        }

        .about-edson-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
        }

        .about-edson-text strong {
        color: var(--primary, #2a7ae4);
        }

        .about-edson-text em {
        font-style: italic;
        color: #555;
        }

        .about-edson-cta {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 24px;
        background-color: var(--primary, #2a7ae4);
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 6px;
        transition: background-color 0.3s ease;
        }

        .about-edson-cta:hover {
        background-color: var(--primary-dark, #1d5fbf);
        }

       /* About Section Modernizada */
.about {
    background: linear-gradient(135deg, #f1f4f9 0%, #dfe8f1 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: float 12s infinite ease-in-out;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 10px) rotate(2deg); }
    50% { transform: translate(-10px, 5px) rotate(-2deg); }
    75% { transform: translate(5px, -5px) rotate(1deg); }
}



.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    min-width: 300px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.founder-quote {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin-top: 30px;
    position: relative;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.founder-quote:hover {
    transform: translateX(0);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 0;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 10px;
}

.quote-text {
    font-style: italic;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-weight: bold;
    color: var(--primary-dark);
    text-align: right;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.floating-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.floating-img:hover {
    transform: scale(1.05) translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 
                0 0 0 2px rgba(255,255,255,0.1),
                0 0 40px 10px rgba(58, 125, 233, 0.1);
}

/* Cards com Efeito 3D Impactante */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 80px;
    perspective: 1000px;
}

.feature-card {
    background: transparent;
    border-radius: 20px;
    position: relative;
    height: 280px;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.03);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateZ(20px);
    transition: all 0.6s ease;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
}

.feature-card:hover .feature-bg {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateZ(30px);
}

.feature-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-bg::before {
    left: 100%;
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateZ(40px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--terceira);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    text-shadow: 0 5px 15px rgba(58, 125, 233, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) translateY(-5px);
    text-shadow: 0 10px 20px rgba(58, 125, 233, 0.4);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary-dark);
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover p {
    color: #444;
}

.feature-underline {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin-top: auto;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-underline {
    width: 80px;
    background: var(--primary-dark);
}

/* Efeito de profundidade nos cards */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

        /* Diferenciais */
        .diferenciais {
            background: white;
            padding: 100px 0;
            }
            .selo-destaque img{
                width: 20rem;
            }

            .diferenciais-grid {
               
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
            }

            .diferencial-card {
                
            
            background-size: 20rem;
           
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            perspective: 1000px;
            }

            .diferencial-card:hover {
            transform: translateY(-10px) rotateX(3deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

            .diferencial-icon {
            margin-bottom: 20px;
            color: var(--primary);
            }

            .diferencial-icon svg {
            width: 48px;
            height: 48px;
            fill: var(--primary);
            }

            

        /* Produtos */
        .produtos {
            background: var(--light);
        }

        .produtos-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tab-btn {
            padding: 12px 25px;
            background: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .tab-btn.active {
            background: var(--primary);
            color: white;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        .produtos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .produto-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .produto-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .produto-image {
            height: 200px;
            overflow: hidden;
        }

        .produto-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .produto-card:hover .produto-image img {
            transform: scale(1.1);
        }

        .produto-info {
            padding: 20px;
        }

        .produto-categoria {
            display: inline-block;
            background: var(--light-gray);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            margin-bottom: 10px;
            color: var(--gray);
        }

        .produto-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Serviços */
        .servicos {
            background: white;
        }

        .servicos-processo {
            display: flex;
            justify-content: center;
            position: relative;
            margin: 60px auto;
            max-width: 900px;
        }

        .processo-step {
            text-align: center;
            padding: 0 30px;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .processo-step::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--light-gray);
            z-index: -1;
        }

        .processo-step:first-child::before {
            left: 50%;
        }

        .processo-step:last-child::before {
            right: 50%;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
        }

        .step-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

      .valores {
        background: linear-gradient(rgba(0, 86, 179, 0.85), rgba(0, 86, 179, 0.85));
       
        color: white;
        padding: 80px 20px;
        }

        .valores-wrapper {
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
        align-items: center;
        justify-content: center;
        }

        .valores-imagem img {
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
        }

        .valores-conteudo {
        flex: 1;
        min-width: 300px;
        text-align: center;
        }

        


        .valores-quote {
        font-size: 1.5rem;
        font-style: italic;
        max-width: 800px;
        margin: 0 auto 60px;
        position: relative;
        }

        .valores-quote::before,
        .valores-quote::after {
        content: '"';
        font-size: 3rem;
        color: rgba(255, 255, 255, 0.3);
        position: absolute;
        }

        .valores-quote::before {
        top: -20px;
        left: -25px;
        }

        .valores-quote::after {
        bottom: -30px;
        right: -25px;
        }

        .valores-list {
            position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        }
        .valores-bg-frame {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: auto;
            opacity: 0.1;
            z-index: 0;
            pointer-events: none;
            }


        .valor-item {
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 30px 20px;
            width: 260px;
            text-align: center;
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
            transition: all 0.4s ease;
        }

        .valor-item:hover {
        transform: translateY(-10px) rotateX(4deg);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .valor-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: white;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        .valor-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        }

        .valor-item p {
        font-size: 0.95rem;
        line-height: 1.5;
        }

        /* Estrutura */
        .estrutura {
            background: var(--light);
        }

        .estrutura-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .estrutura-text {
            flex: 1;
        }

        .estrutura-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        }

        .estrutura-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .estrutura-image:hover img {
            transform: scale(1.05);
        }
        .cta {
            background: var(--primary);
           
            color: white;
            padding: 80px 20px;
        }

        .cta-container {
            max-width: 1400px;
            margin: 0 auto;
        }

       .cta-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cta-text-content {
            max-width: 600px;
        }

        .cta-image {
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.5s ease;
        }

        .cta-image:hover img {
            transform: scale(1.05);
        }
        .cta-image {
            border: 5px solid rgba(255,255,255,0.1);
            transition: all 0.5s ease;
            
        }

        .cta-image:hover {
            border-color: rgba(255,255,255,0.3);
        }
        

        .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
        }

        .cta-text {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 40px;
        opacity: 0.9;
        }

        .cta-ou {
        margin: 50px 0 20px;
        font-size: 1.3rem;
        font-weight: bold;
        opacity: 0.95;
        }

        .cta-form {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

        .cta-form input,
        .cta-form textarea {
        padding: 18px;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        outline: none;
        transition: background 0.3s, box-shadow 0.3s;
        }

        .cta-form input::placeholder,
        .cta-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
        }

        .cta-form input:focus,
        .cta-form textarea:focus {
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 0 2px #fff;
        }

        .cta-form button {
        padding: 15px;
        font-size: 1.1rem;
        border: none;
        border-radius: 8px;
        background-color: #fff;
        color: var(--primary);
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        }

        .cta-form button:hover {
        background-color: #f0f0f0;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;            
            padding-bottom: 10px;
            border-bottom: 1px solid #1d5fbf;
        }
        .footer-column img {
            height: 20rem;
            border-radius: 8px;
        }
        .footer-column-img{
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--gray);
        }
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .whatsapp-float img {
            width: 28px;
            height: 28px;
            filter: invert(1);
            }

            .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            }
            .image-frame {
                position: relative;
                width: 300px;
                height: 400px;
            }
            
            .frame-svg {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }
            
            .framed-image {
                position: relative;
                width: 90%;
                height: 90%;
                object-fit: cover;
                margin: 5%;
                border-radius: 120px; /* Aproximado do SVG */
            }

       

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 992px) {
            /* Responsivo */

        .cta-content {
        grid-template-columns: 1fr;
        }
        
        .cta-image {
            height: 400px;
            order: -1;
        }

            .hero-container {
                flex-direction: column;
            }
            
            .hero-image {
                width: 100%;
                max-height: 400px;
                order: -1;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .about-content,
            .estrutura-content {
                flex-direction: column;
            }
            
            .about-image,
            .estrutura-image {
                margin-top: 30px;
                width: 100%;
            }
            
            .processo-step {
                padding: 0 15px;
            }
            
            .step-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
           .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .servicos-processo {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .processo-step {
                padding: 0;
            }
            
            .processo-step::before {
                display: none;
            }
            
            .valores-quote {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 600px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .features,
            .diferenciais-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }