:root {
    --primary-color: #2D1B3B;
    /* Roxo escuro */
    --secondary-color: #FF8A00;
    /* Laranja */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f5f5f5;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

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

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
    animation: slideInDown 0.8s ease-out;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo-link {
    display: flex;
    align-items: center;
}

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

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    animation: fadeIn 0.8s ease-out;
}

.navbar-menu a:hover {
    color: var(--secondary-color);
}

.navbar-menu a.active {
    color: var(--secondary-color);
    font-weight: 500;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu a:hover {
    color: var(--secondary-color);
}

.navbar-menu a.active {
    color: #FF6B6B;
    font-weight: 500;
}

.navbar-menu a.active::after {
    width: 100%;
    background-color: #FF6B6B;
}

/* Estilo específico para o link de suporte */
.suporte-link {
    color: #FF6B00 !important;
    /* Cor laranja */
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
}

/* Remove o efeito de linha no hover para o link de suporte */
.suporte-link::after {
    display: none;
}

/* Estilo para o ícone do WhatsApp */
.whatsapp-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    /* Cor verde do WhatsApp */
    border-radius: 50%;
    position: relative;
}

/* Símbolo do telefone dentro do ícone */
.whatsapp-icon::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-top-width: 0;
    border-right-width: 0;
    transform: rotate(-45deg);
    top: 5px;
    left: 6px;
    border-radius: 0 0 0 3px;
}

.whatsapp-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    top: 5px;
    left: 8px;
}

.btn-suporte {
    background-color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out backwards;
}

.btn-suporte:hover {
    background-color: #ff9f2f;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-suporte::after {
    display: none;
}

@media (max-width: 768px) {
    .navbar .container {
        height: 70px;
    }

    .navbar-menu {
        display: none;
    }

    .navbar-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 35px;
    }
}

/* Hero Section - Mantendo o tamanho atual */
.suporte-link {
    color: #FF6B00 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
}

.suporte-link i {
    font-size: 20px;
    color: #25D366;
    /* Cor verde do WhatsApp */
}

.suporte-link:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    background: none;
    min-height: 100vh;
    /* Garantindo altura total da viewport */
    position: relative;
    overflow: hidden;
    margin-top: 0;
    animation: fadeIn 1s ease-out;
}

.hero-container {
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    /* Garantindo altura total da viewport */
}

.hero-content {
    background-color: var(--secondary-color);
    padding: 60px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    /* Garantindo altura total da viewport */
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.hero .hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    animation: slideInUp 0.8s ease-out backwards;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
    line-height: 1.3;
    animation: slideInUp 0.8s ease-out backwards;
}

.hero-subtitle span {
    color: var(--primary-color);
}

.hero-image-container {
    position: relative;
    min-height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: slideInRight 0.8s ease-out 0.5s backwards;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        min-height: auto;
        background: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        padding-top: 60px;
    }

    .hero-content {
        padding: 20px;
        min-height: auto;
        margin: 0;
        background: var(--secondary-color);
    }

    .hero-image-container {
        min-height: auto;
        margin: 0;
        padding: 0;
        background: none;
    }

    .hero-image {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        vertical-align: top;
    }

    .hero .hero-title {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 24px !important;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding-top: 50px;
    }

    .hero-content {
        padding: 15px;
    }
}

@media (max-width: 1200px) {
    .hero-image-container {
        min-height: 80vh;
    }
}

/* Responsividade */
@media (max-width: 768px) {

    .hero,
    .hero-container,
    .hero-image-container {
        min-height: 100vh;
        /* Altura total em mobile */
    }

    .hero-container {
        grid-template-columns: 1fr;
        /* Uma coluna no mobile */
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.management {
    position: relative;
    background-color: #f5f5f5;
    padding-top: 30px;
    /* Aumenta o espaço acima sem criar o "espaço branco" */
    margin-bottom: 20px;
}


.management-content {
    position: relative;
    z-index: 2;
}


.section-title-container {
    text-align: center;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
    animation: slideInUp 0.8s ease-out backwards;
}

.management-content {
    position: relative;
    width: 100%;
    display: flex;
    min-height: 400px;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.management-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40%;
    width: 60%;
    background-color: #2D1B3B;
    color: #fff;
    padding: 60px 40px;
    z-index: 2;
}

.management-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.management-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}



@media (max-width: 768px) {
    .management-content {
        flex-direction: column;
    }

    .management-image,
    .management-text {
        width: 100%;
        position: static;
    }

    .management-text {
        padding: 40px 20px;
    }

    .management::after,
    .management::before {
        height: 40px;
    }
}

/* Seção de Soluções */
.solutions {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.solutions .section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-link {
    color: var(--secondary-color);
    /* Altere para a cor desejada */
    text-decoration: none;
    transition: color 0.3s ease;
}

.solutions-link:hover {
    color: var(--primary-color);
    /* Cor ao passar o mouse */
}


.testimonials {
    background: linear-gradient(to bottom, #ffffff, #f68e68);
    /* De branco para coral */
    padding: 60px 20px;
}


.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonials-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    background-color: #FF6B00;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: bold;
    color: #333;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #777;
}

.stars {
    margin: 10px 0;
}

.star {
    font-size: 20px;
    color: #dcdcdc;
    /* Cor padrão para a estrela vazia */
    margin: 0 2px;
}

.star.filled {
    color: #ffd700;
    /* Cor dourada para a estrela preenchida */
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    padding: 80px 0 30px;
    color: var(--text-light);
    position: relative;
    animation: fadeIn 1s ease-out;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF8A00 0%, #2D1B3B 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin: 0;
    transition: transform 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.footer-social a {
    color: var(--text-light);
    font-size: 22px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social a:hover {
    color: #FF8A00;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: #FF8A00;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    opacity: 0.9;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FF8A00;
    padding-left: 20px;
    opacity: 1;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.contact-link:hover {
    color: #FF8A00;
    opacity: 1;
    transform: translateX(5px);
}

.contact-link i {
    font-size: 18px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-link:hover i {
    background-color: #FF8A00;
    color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FF8A00;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 200%;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background 0.3s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float img {
    width: 2.5rem;
    height: 2.5rem;
}

.whatsapp-float:hover {
    background: #1ebc59;
}

/* quem somos básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FF8A00;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Faixa roxa superior */
.top-stripe {
    background-color: #2D1B3E;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
    padding-left: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-stripe span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Container principal */
.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: transparent;
    overflow: visible;
    position: relative;
}

/* Seção superior */
.top-section {
    min-height: 100vh;
    width: 100%;
    background-color: #FF8A00;
    padding-top: 0;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Seção laranja */
.orange-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #FF8A00 0%, #FF8A00 40%, transparent 60%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.text-content {
    position: relative;
    padding: 60px;
    width: 45%;
    min-height: 50vh;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    margin-top: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 15px;
    animation: slideInUp 0.8s ease-out backwards;
}

.text-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: #FF8A00;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .text-content h1 {
        font-size: 48px;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 36px;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
}

/* Box tecnologia */
.tech-box {
    position: relative;
    width: fit-content;
    color: #fff;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(45, 27, 62, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container do texto da tecnologia */
.tech-text {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

/* Label da tecnologia */
.tech-label {
    background-color: #2D1B3E;
    padding: 12px 25px;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    font-size: 22px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* Container AWS */
.na-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #2D1B3E;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.na-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Texto "na" */
.na-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Logo AWS */
.aws-logo {
    width: 70px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    vertical-align: middle;
}

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

.text-box {
    background: linear-gradient(135deg, rgba(45, 27, 62, 0.95) 0%, rgba(45, 27, 62, 0.85) 100%);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    width: 35%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.text-box p {
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.text-box p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #FF8A00;
    border-radius: 50%;
}

.text-box p:last-child {
    margin-bottom: 0;
}

.text-box strong {
    color: #FF8A00;
    font-weight: 600;
}

/* Responsividade para Quem Somos */
@media (max-width: 1200px) {
    .text-box {
        width: 45%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .text-box {
        width: 100%;
        padding: 30px;
        margin: 20px 0;
    }

    .text-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .text-box {
        padding: 20px;
    }

    .text-box p {
        font-size: 15px;
        padding-left: 15px;
    }

    .text-box p::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }
}

.bottom-image {
    position: relative;
    width: 50%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 25px;
    overflow: hidden;
    z-index: 2;
    margin-right: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (max-width: 768px) {
    .top-stripe {
        height: 60px;
        padding-left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .main-container {
        margin-top: 60px;
        position: relative;
        overflow: visible;
    }

    .top-section {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        margin-top: 0;
        position: relative;
        overflow: visible;
    }

    .orange-section {
        min-height: auto;
        background: #FF8A00;
        padding: 20px;
        position: relative;
    }

    .text-content {
        width: 100%;
        padding: 20px;
        min-height: auto;
        position: relative;
        z-index: 2;
    }

    .images-section {
        width: 100%;
        height: auto;
        min-height: auto;
        position: relative;
        z-index: 1;
    }

    .top-image {
        width: 100%;
        height: 300px;
        margin: 0;
        clip-path: none;
        position: relative;
    }

    .bottom-section {
        position: relative;
        padding: 30px 20px;
        background: #FF8A00;
        z-index: 3;
    }

    .text-box {
        width: 100%;
        margin: 0 0 20px 0;
        padding: 25px;
        position: relative;
        z-index: 4;
    }

    .bottom-image {
        width: 100%;
        margin: 0;
        aspect-ratio: 16/9;
        position: relative;
        z-index: 4;
    }
}

@media (max-width: 480px) {
    .top-stripe {
        height: 50px;
    }

    .main-container {
        margin-top: 50px;
    }

    .top-image {
        height: 250px;
    }
}

/* Seção inferior */
.bottom-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: #FF8A00;
    overflow: hidden;
}

/* Ondas */
.bottom-section .waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bottom-section .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-color: #2D1B3E;
    border-radius: 50% 50% 0 0;
}

.bottom-section .wave1 {
    bottom: -25%;
    opacity: 0.7;
    animation: moveWave 10s linear infinite;
}

.bottom-section .wave2 {
    bottom: -35%;
    opacity: 0.5;
    animation: moveWave 8s linear infinite;
}

.bottom-section .wave3 {
    bottom: -45%;
    opacity: 0.3;
    animation: moveWave 6s linear infinite;
}

@keyframes moveWave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-box {
    background-color: #2D1B3E;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    width: 40%;
    position: relative;
    z-index: 2;
    margin-left: 40px;
}

.bottom-image {
    position: relative;
    width: 50%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    z-index: 2;
    margin-right: 40px;
}

.bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seção de imagens */
.images-section {
    position: relative;
    width: 60%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: visible;
}

/* Linha roxa abaixo do título */
.purple-line {
    position: absolute;
    left: 0;
    top: 140px;
    width: 450px;
    height: 8px;
    background-color: #2D1B3E;
    z-index: 2;
}

/* Borda diagonal roxa */
.purple-diagonal {
    position: absolute;
    top: 0;
    left: -5px;
    width: 40px;
    height: 102vh;
    background-color: #2D1B3E;
    transform: rotate(-8deg);
    transform-origin: top left;
    z-index: 2;
}

/* Imagem superior */
.top-image {
    width: calc(100% - 35px);
    height: 100vh;
    /* Alterado para 100vh */
    position: relative;
    margin-left: 35px;
    margin-top: 0;
    /* Removido o margin-top negativo */
    overflow: hidden;
    clip-path: polygon(0px 0, 100% 0, calc(100% - 0px) 100%, 9% 100%);
    z-index: 1;
}

.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Imagem inferior */
.bottom-image {
    position: absolute;
    bottom: 100px;
    right: 40px;
    width: 50%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    z-index: 4;
}

.bottom-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 27, 62, 0.3);
    z-index: 2;
}

.bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Responsividade */
@media (max-width: 768px) {

    .top-section,
    .bottom-section {
        flex-direction: column;
        padding: 20px;
    }

    .text-content,
    .text-box {
        width: 100%;
        margin-bottom: 40px;
    }

    .images-section {
        width: 100%;
    }

    .bottom-image {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
    }

    h1 {
        font-size: 42px;
    }

    .tech-box h2 {
        font-size: 28px;
    }

    .tech-text span:first-child,
    .na-text {
        font-size: 18px;
    }

    .purple-diagonal {
        display: none;
    }

    .purple-line {
        display: none;
    }

    .logo-icon {
        position: relative;
        bottom: auto;
        left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        z-index: 10;
    }

    .logo-icon img {
        width: 60px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .top-stripe {
        height: 50px;
    }

    .main-container {
        margin-top: 50px;
    }

    .top-image {
        height: 250px;
    }

    .logo-icon {
        margin: 15px auto;
    }

    .logo-icon img {
        width: 50px;
    }
}

/* Estilos da página ERP */
.erp-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: linear-gradient(135deg, #FF8A00 0%, #FF8A00 60%, #FF6B00 100%);
    min-height: 100vh;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    animation: fadeIn 1s ease-out;
}

.erp-text {
    width: 45%;
    color: #fff;
    padding: 40px 60px;
    order: 2;
    margin-right: 40px;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.erp-text h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.erp-title {
    margin-bottom: 10px;
}

.erp-highlight {
    background-color: #2D1B3E;
    padding: 15px 30px;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    border-radius: 15px;
    line-height: 1.2;
    animation: scaleIn 0.6s ease-out 0.7s backwards;
}

.erp-subtitle {
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 10px;
}

.pdv-badge {
    background-color: transparent;
    border: 2px solid #000;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

.erp-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.erp-text h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
}

.erp-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    animation: slideInUp 0.8s ease-out 0.9s backwards;
}

.description-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.erp-description p {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #fff;
    flex: 1;
}

.cta-button {
    display: inline-block;
    background-color: #2D1B3E;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-left: 15px;
    /* Alinha com o texto acima */
}

.cta-button:hover {
    background-color: #1a1025;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.erp-image {
    width: 65%;
    position: relative;
    clip-path: polygon(0 0, 74% 0, 45% 100%, 0% 100%);
    order: 1;
    height: 100vh;
    margin-right: -10%;
    animation: slideInRight 0.8s ease-out 0.5s backwards;
}

.erp-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 26%;
    width: 15px;
    height: 100vh;
    background-color: #2D1B3E;
    transform: skew(-20deg);
    transform-origin: top;
}

.erp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    /* Removido para ficar mais clean */
}

/* Seção de Integração */
.integration-section {
    background-color: #2D1B3E;
    padding: 0;
    position: relative;
}

.integration-stripe {
    background-color: #FF8A00;
    padding: 15px 0;
    text-align: center;
}

.integration-stripe span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.integration-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    gap: 60px;
}

.integration-text {
    width: 55%;
    color: #fff;
}

.integration-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.integration-text h2 span {
    color: #FF8A00;
}

.integration-badge {
    display: inline-block;
    background-color: #FF8A00;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.highlight-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.highlight-text span {
    font-weight: 700;
    color: #FF8A00;
}

.integration-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.integration-image {
    width: 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.integration-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 27, 62, 0.2), rgba(45, 27, 62, 0.05));
    border-radius: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .integration-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .integration-text,
    .integration-image {
        width: 100%;
    }

    .integration-text h2 {
        font-size: 24px;
    }
}

.vertical-line {
    width: 5px;
    min-height: 80px;
    background-color: #000;
    display: block;
    position: relative;
    margin-right: 5px;
    flex-shrink: 0;
}

.corner-shape {
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: #2D1B3E;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Estilos da página Soluções */
.solucoes-hero {
    height: 100vh;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    /* Removido margin-top */
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.solucoes-content {
    display: flex;
    height: 100vh;
    position: relative;
    align-items: center;
    padding-top: 0;
    /* Removido padding-top */
}

.solucoes-text {
    width: 45%;
    padding: 80px 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    /* Adicionado margin apenas no texto */
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.solucoes-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.solucoes-text h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 250px;
    height: 7px;
    background-color: var(--secondary-color);
}

.solucoes-description h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
}

.solucoes-description span {
    color: #fff;
    background-color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 5px;
}

.solucoes-image {
    width: 55%;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    height: 100vh;
    margin-top: 0;
    /* Garantir que a imagem fique colada no topo */
    animation: slideInRight 0.8s ease-out 0.5s backwards;
}

.solucoes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;
    /* Garantir que a imagem fique colada no topo */
}

/* Seção de Recursos */
.recursos-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.recursos-header {
    margin-bottom: 40px;
    text-align: center;
}

.recursos-header h3 {
    display: inline-block;
    background: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    color: #2D1B3E;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 500;
}

.recursos-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 60%;
}

.recurso-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out backwards;
}

.recurso-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.coral {
    background-color: #FF6B00;
}

.recurso-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.recurso-item span {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

.recursos-preview {
    width: 40%;
    position: sticky;
    top: 100px;
}

.preview-box {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    margin-bottom: 30px;
}

.preview-box h4 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.preview-box p {
    font-size: 16px;
    line-height: 1.6;
}

.preview-images {
    width: 100%;
    position: relative;
}

.preview-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .recursos-wrapper {
        flex-direction: column;
    }

    .recursos-grid,
    .recursos-preview {
        width: 100%;
    }

    .recursos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recursos-grid {
        grid-template-columns: 1fr;
    }
}

/* Box de Destaque */
.destaque-box {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    margin-top: 60px;
}

.destaque-box h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.destaque-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.destaque-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destaque-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.destaque-images img:hover {
    transform: scale(1.05);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recurso-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Isso fará o ícone ficar branco */
}

.icon-circle.coral {
    background-color: #FF6B00;
    /* Coral correto do site */
}

@media (max-width: 1200px) {
    .recursos-wrapper {
        flex-direction: column;
    }

    .recursos-grid,
    .recursos-preview {
        width: 100%;
    }
}

/* Estilos da página Benefícios */
.beneficios-hero {
    min-height: 100vh;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.beneficios-title-stripe {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: slideInDown 0.8s ease-out 0.3s backwards;
}

.beneficios-title-stripe h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}

.beneficios-section {
    position: relative;
    padding: 0;
    background: #fff;
    margin: 0;
}

.beneficios-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 40px;
}

.beneficios-header {
    text-align: center;
    margin-bottom: 50px;
}

.beneficios-header h3 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 500;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.beneficio-card {
    padding: 25px 20px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 160px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    animation: scaleIn 0.6s ease-out backwards;
}

.beneficio-card:hover,
.beneficio-card:active {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.beneficio-card.laranja {
    background-color: #FF8A00;
}

.beneficio-card.laranja:hover,
.beneficio-card.laranja:active {
    background-color: #ff9f2f;
}

.beneficio-card.roxo {
    background-color: #2D1B3B;
}

.beneficio-card.roxo:hover,
.beneficio-card.roxo:active {
    background-color: #3d2650;
}

.card-icon {
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficio-card:hover .card-icon,
.beneficio-card:active .card-icon {
    transform: scale(1.1);
}

.beneficio-card h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
}

.beneficio-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    opacity: 0.9;
}

.beneficios-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #fff;
}

.beneficios-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beneficio-card {
        padding: 20px 15px;
        min-height: 140px;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .beneficio-card:hover,
    .beneficio-card:active {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .card-icon {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .beneficio-card:hover .card-icon,
    .beneficio-card:active .card-icon {
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .beneficio-card {
        padding: 15px 12px;
        min-height: 130px;
        transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .beneficio-card:hover,
    .beneficio-card:active {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .card-icon {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .beneficio-card:hover .card-icon,
    .beneficio-card:active .card-icon {
        transform: scale(1.03);
    }
}

.coral-line {
    width: 100px;
    height: 4px;
    background-color: #FF8A00;
    margin: 20px 0;
}

.text-with-line {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.text-with-line p {
    padding-top: 8px;
}

.vertical-coral-line {
    width: 4px;
    height: 90px;
    background-color: #FF8A00;
    flex-shrink: 0;
}

.beneficios-content {
    display: flex;
    min-height: 100vh;
    position: relative;
    align-items: center;
}

.beneficios-image {
    width: 100%;
    position: relative;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.beneficios-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.beneficios-text {
    width: 85%;
    padding: 60px 40px 60px 160px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Mudado para flex-end para empurrar o conteúdo para baixo */
    background: linear-gradient(90deg,
            rgba(45, 27, 62, 0) 0%,
            rgba(45, 27, 62, 0.1) 20%,
            rgba(45, 27, 62, 0.3) 100%);
    position: relative;
    margin-left: -45%;
    border-radius: 300px 0 0 300px;
    z-index: 3;
    height: 90vh;
    align-items: center;
    margin-top: 100px;
}

.beneficios-text-content {
    position: relative;
    z-index: 4;
    background: linear-gradient(90deg,
            rgba(45, 27, 62, 0.7) 0%,
            rgba(45, 27, 62, 0.95) 100%);
    padding: 60px 80px;
    border-radius: 50px;
    margin-left: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(45, 27, 62, 0.1);
    max-width: 800px;
}

.sistema-highlight {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding: 10px 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #FF8A00;
    border-radius: 8px;
}

.beneficios-text h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.beneficios-text h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
}

.beneficios-text p {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.btn-saiba-mais {
    display: inline-block;
    background-color: #FF8A00;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: fit-content;
    margin-top: 20px;
}

.btn-saiba-mais:hover {
    background-color: #ff9f2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.navbar.coral {
    background-color: #FF8A00;
}

.navbar.coral .navbar-menu a {
    color: #fff;
}

.navbar.coral .navbar-menu a:hover {
    color: var(--primary-color);
}

.navbar.coral .navbar-menu a::after {
    background-color: var(--primary-color);
}

.navbar.coral .navbar-menu a.active {
    color: var(--primary-color);
}

.navbar.coral .navbar-menu a.active::after {
    background-color: var(--primary-color);
}

/* Estilos específicos da página Diferenciais */
.diferenciais-top {
    background: linear-gradient(135deg, #2D1B3B 55%, #FF7A00 45%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -80px;
    padding-top: 180px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.diferenciais-top .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    position: relative;
    z-index: 10;
}

.diferenciais-top .diferenciais-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    height: calc(100vh - 100px);
    padding-bottom: 80px;
    position: relative;
}

.diferenciais-top .text-content {
    flex: 0 0 45%;
    color: #FFFFFF;
    padding: 0;
    margin-top: 5%;
    z-index: 10;
    position: relative;
}

.diferenciais-top .text-content .title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #FFFFFF 0%, #FF7A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -2px;
    position: relative;
    z-index: 10;
    color: transparent;
    position: relative;
    display: flex;
}

/* Removendo o pseudo-elemento que adiciona "Seg" */
.diferenciais-top .text-content .title::before {
    content: none;
}

/* Parte "mentos" em branco transparente */
.diferenciais-top .text-content .title span {
    background: linear-gradient(to right, #e8e8e8 0%, #2D1B3B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.diferenciais-top .text-content .subtitle {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    max-width: 450px;
}

.diferenciais-top .image-content {
    flex: 0 0 55%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    overflow: visible;
    margin-right: -5%;
    position: relative;
    padding-bottom: 0;
    z-index: 1;
}

.diferenciais-top .hero-image {
    width: 140%;
    height: 100vh;
    object-fit: cover;
    margin-right: -10%;
    transform: none;
    position: relative;
    z-index: 1;
    object-position: center;
}

/* Responsividade específica da página Diferenciais */
@media (max-width: 1024px) {
    .diferenciais-top {
        background: #2D1B3B;
    }

    .diferenciais-top .container {
        padding: 0 20px;
    }

    .diferenciais-top .diferenciais-content {
        flex-direction: column;
        text-align: left;
        height: auto;
        padding: 40px 0;
    }

    .diferenciais-top .text-content {
        flex: none;
        margin-top: 0;
    }

    .diferenciais-top .text-content .title {
        font-size: 4.5rem;
    }

    .diferenciais-top .text-content .subtitle {
        font-size: 2.2rem;
        max-width: 100%;
    }

    .diferenciais-top .image-content {
        flex: none;
        width: 100%;
    }

    .diferenciais-top .hero-image {
        width: 100%;
        height: auto;
        max-height: 50vh;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .diferenciais-top .text-content .title {
        font-size: 3.5rem;
    }

    .diferenciais-top .text-content .subtitle {
        font-size: 1.8rem;
    }
}

/* Seção de Diferenciais do Sistema */
.diferenciais-bottom {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
    /* Aumentado para acomodar as ondas */
}

.diferenciais-bottom .header-stripe {
    background-color: #2D1B3B;
    padding: 15px 0;
    margin-bottom: 40px;
    width: 100%;
}

.diferenciais-bottom .header-stripe h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

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

.diferenciais-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.diferenciais-list {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.diferencial-item .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: #FF7A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.diferencial-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.diferencial-item .content {
    color: #2D1B3B;
}

.diferencial-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2D1B3B;
}

.diferencial-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #2D1B3B;
}

.diferenciais-image {
    flex: 0 0 50%;
    height: 100%;
}

.diferenciais-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .diferenciais-content {
        flex-direction: column;
    }

    .diferenciais-list,
    .diferenciais-image {
        flex: 0 0 100%;
    }
}

/* Estilos das ondas */
.diferenciais-bottom .waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.diferenciais-bottom .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-color: #F5D6BE;
    border-radius: 50% 50% 0 0;
    animation: wave 15s linear infinite;
}

.diferenciais-bottom .wave1 {
    animation-delay: 0s;
    bottom: -25%;
    opacity: 0.7;
    z-index: 1;
}

.diferenciais-bottom .wave2 {
    animation-delay: -5s;
    bottom: -35%;
    opacity: 0.5;
    z-index: 2;
}

.diferenciais-bottom .wave3 {
    animation-delay: -2s;
    bottom: -45%;
    opacity: 0.3;
    z-index: 3;
}

@keyframes wave {
    0% {
        transform: translateX(0) scale(1);
    }

    50% {
        transform: translateX(-25%) scale(0.8);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.diferenciais-bottom .container {
    position: relative;
    z-index: 2;
    /* Garantir que o conteúdo fique acima das ondas */
}

/* Seção de Segmentos */
.segmentos-top {
    position: relative;
    background-color: #2D1B3B;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    padding-top: 0;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.segmentos-content {
    position: relative;
    height: 100%;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
}

.image-side {
    width: 65%;
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
    margin-left: 0;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    margin: 0;
}

.text-side {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45%;
    background-color: rgba(255, 128, 0, 0.9);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 0% 30%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem 4rem 8rem;
    z-index: 3;
    color: white;
}

.title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.title::before {
    content: "Seg";
    background: linear-gradient(to right, #FFFFFF 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline;
}

.title span {
    background: linear-gradient(to right, #e8e8e8 0%, #2D1B3B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline;
}

.subtitle-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subtitle-container p {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
    color: #fff;
}

.sistema {
    font-size: 4.5rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #fff !important;
    display: block;
    line-height: 1 !important;
}

.diprosoft-badge {
    background-color: #2D1B3B;
    color: white;
    display: inline-block;
    margin-top: 0;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 3.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
    line-height: 1;
}

@media (max-width: 1024px) {
    .segmentos-content {
        grid-template-columns: 1fr;
    }

    .image-side {
        height: 50vh;
        clip-path: none;
    }

    .text-side {
        margin-left: 0;
        padding: 40px 20px;
        height: auto;
        clip-path: none;
    }

    .text-side .title {
        font-size: 3rem;
        margin-top: 0;
    }

    .subtitle-container p {
        font-size: 1.8rem;
    }

    .subtitle-container .sistema {
        font-size: 2.5rem;
    }

    .diprosoft-badge {
        font-size: 1.5rem;
    }
}

.segmentos-bottom {
    background: #2D1B3B;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.segmentos-grid {
    display: grid;
    grid-template-columns: repeat(8, 120px);
    gap: 15px;
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
}

.segmento-card {
    width: 120px;
    aspect-ratio: 2/3;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.segmento-card .card-bg {
    width: 100%;
    height: 50%;
    object-fit: cover;
    position: relative;
}

.segmento-card .card-content {
    position: relative;
    z-index: 2;
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 8px 12px;
    background: #FFFFFF;
}

.segmento-card .segmento-icon {
    width: 35px;
    height: 35px;
    background: #2D1B3B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.segmento-card .segmento-icon i {
    font-size: 16px;
    color: #FFFFFF;
}

.segmento-card h3 {
    font-size: 11.5px;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    margin: auto 0;
    height: 28px;
    display: flex;
    align-items: center;
}

.segmento-card .confirma {
    margin-top: auto;
    margin-bottom: 12px;
    background: #2D1B3B;
    color: #FFFFFF;
    border: none;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 70px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.segmento-card .confirma:hover {
    background: #3d2b4b;
    transform: translateY(-2px);
}

/* Cards ímpares (laranjas) - mais altos */
.segmento-card:nth-child(odd) {
    margin-top: -30px;
    box-shadow: 0 4px 12px rgba(255, 128, 0, 0.2);
}

.segmento-card:nth-child(odd) .card-content {
    background: #FF8000;
}

.segmento-card:nth-child(odd) h3 {
    color: #FFFFFF;
}

.segmento-card:nth-child(odd) .card-bg {
    filter: sepia(100%) saturate(300%) brightness(90%) hue-rotate(320deg);
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(255, 128, 0, 0.6);
}

.segmento-card:nth-child(odd) .card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF8000;
    mix-blend-mode: multiply;
    opacity: 0.4;
    box-shadow: inset 0 0 20px rgba(255, 128, 0, 0.8);
}

/* Cards pares (brancos) - mais baixos */
.segmento-card:nth-child(even) {
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(45, 27, 59, 0.1);
}

.segmento-card:nth-child(even) .card-content {
    background: #FFFFFF;
}

.segmento-card:nth-child(even) h3 {
    color: #FF8000;
}

.segmento-card:nth-child(even) .card-bg {
    filter: grayscale(100%) contrast(110%) brightness(90%);
}

/* Efeito hover geral do card */
.segmento-card:hover {
    transform: translateY(-8px);
}

/* Sombras específicas no hover */
.segmento-card:nth-child(odd):hover {
    box-shadow: 0 8px 16px rgba(255, 128, 0, 0.3),
        0 4px 8px rgba(255, 128, 0, 0.2);
}

.segmento-card:nth-child(even):hover {
    box-shadow: 0 8px 16px rgba(45, 27, 59, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Efeito hover na imagem */
.segmento-card .card-bg {
    transition: transform 0.3s ease;
}

.segmento-card:hover .card-bg {
    transform: scale(1.1);
}

/* Efeito hover no círculo */
.segmento-card .segmento-icon {
    transition: all 0.3s ease;
}

.segmento-card:hover .segmento-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: #3d2b4b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Efeito hover no botão */
.segmento-card .confirma {
    transition: all 0.3s ease;
}

.segmento-card:hover .confirma {
    background: #3d2b4b;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsividade */
@media (max-width: 1200px) {
    .segmentos-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, auto);
    }
}

@media (max-width: 768px) {
    .segmentos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, auto);
    }
}

/* Menu Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu a {
        color: #fff;
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .navbar-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(-5px);
    }

    .navbar-menu .suporte-link {
        background-color: var(--secondary-color);
        color: #fff !important;
        border-radius: 4px;
        margin-top: 20px;
        font-size: 16px;
        padding: 12px 24px;
        width: auto;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu .suporte-link:hover {
        background-color: #ff9f2f;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .navbar-menu a.active {
        color: var(--secondary-color);
        font-weight: 500;
        border-bottom: 2px solid var(--secondary-color);
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        width: 25px;
        height: 18px;
    }

    .navbar-menu {
        width: 85%;
        padding: 70px 15px 15px;
        gap: 12px;
    }

    .navbar-menu a {
        font-size: 15px;
        padding: 10px 15px;
    }

    .navbar-menu .suporte-link {
        font-size: 15px;
        padding: 10px 20px;
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Responsividade Geral */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .top-section {
        padding: 30px 10px;
    }

    .text-content h1 {
        font-size: 28px;
    }

    .tech-box {
        padding: 15px;
    }

    .text-box {
        padding: 20px 15px;
        margin: 15px auto;
    }
}

/* Responsividade Quem Somos */
@media (max-width: 768px) {
    .top-stripe {
        height: 60px;
        padding-left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .main-container {
        margin-top: 60px;
        position: relative;
        overflow: visible;
    }

    .top-section {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        margin-top: 0;
        position: relative;
        overflow: visible;
    }

    .orange-section {
        min-height: auto;
        background: #FF8A00;
        padding: 20px;
        position: relative;
    }

    .text-content {
        width: 100%;
        padding: 20px;
        min-height: auto;
        position: relative;
        z-index: 2;
    }

    .images-section {
        width: 100%;
        height: auto;
        min-height: auto;
        position: relative;
        z-index: 1;
    }

    .top-image {
        width: 100%;
        height: 300px;
        margin: 0;
        clip-path: none;
        position: relative;
    }

    .bottom-section {
        position: relative;
        padding: 30px 20px;
        background: #FF8A00;
        z-index: 3;
    }

    .text-box {
        width: 100%;
        margin: 0 0 20px 0;
        padding: 25px;
        position: relative;
        z-index: 4;
    }

    .bottom-image {
        width: 100%;
        margin: 0;
        aspect-ratio: 16/9;
        position: relative;
        z-index: 4;
    }
}

@media (max-width: 480px) {
    .top-stripe {
        height: 50px;
    }

    .main-container {
        margin-top: 50px;
    }

    .top-image {
        height: 250px;
    }

    .logo-icon {
        margin: 15px auto;
    }

    .logo-icon img {
        width: 50px;
    }
}

/* Logo icon */
.logo-icon {
    position: absolute;
    bottom: 630px;
    left: 320px;
    z-index: 10;
}

.logo-icon img {
    width: 50px;
    height: auto;
}

@media (max-width: 768px) {
    .purple-diagonal {
        display: none;
    }

    .logo-icon {
        position: relative;
        bottom: auto;
        left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        z-index: 10;
    }

    .logo-icon img {
        width: 60px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        margin: 15px auto;
    }

    .logo-icon img {
        width: 50px;
    }
}

/* Responsividade ERP */
@media (max-width: 1024px) {
    .erp-content {
        margin-top: -60px;
        padding-top: 60px;
    }

    .erp-text {
        padding: 30px 40px;
    }

    .erp-highlight {
        font-size: 48px;
        padding: 12px 24px;
    }

    .erp-subtitle {
        font-size: 32px;
    }

    .erp-description p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .erp-content {
        flex-direction: column-reverse;
        margin-top: 0;
        padding-top: 70px;
        min-height: auto;
    }

    .erp-text {
        width: 100%;
        order: 2;
        padding: 30px 20px;
        margin-right: 0;
    }

    .erp-image {
        width: 100%;
        order: 1;
        height: 300px;
        margin-right: 0;
        clip-path: none;
    }

    .erp-image::after {
        display: none;
    }

    .erp-highlight {
        font-size: 36px;
        padding: 10px 20px;
    }

    .erp-subtitle {
        font-size: 24px;
    }

    .erp-description {
        margin-top: 20px;
    }

    .erp-description p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-button {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .corner-shape {
        display: none;
    }

    .integration-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .erp-content {
        padding-top: 60px;
    }

    .erp-text h1 {
        font-size: 24px;
    }

    .erp-highlight {
        font-size: 28px;
        padding: 8px 16px;
    }

    .erp-subtitle {
        font-size: 20px;
    }

    .erp-description p {
        font-size: 16px;
    }

    .erp-image {
        height: 250px;
    }

    .integration-stripe span {
        font-size: 18px;
    }

    .integration-text h2 {
        font-size: 20px;
    }

    .integration-badge {
        font-size: 12px;
    }

    .highlight-text,
    .integration-text p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .integration-content {
        padding: 40px 20px;
        gap: 30px;
    }

    .integration-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .integration-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .highlight-text {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 768px) {
    .integration-stripe {
        height: 50px;
        font-size: 16px;
    }

    .integration-content {
        flex-direction: column;
        padding: 30px 15px;
    }

    .integration-text {
        width: 100%;
        text-align: center;
    }

    .integration-text h2 {
        font-size: 24px;
    }

    .integration-image {
        width: 100%;
        margin-top: 20px;
    }

    .integration-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media screen and (max-width: 480px) {
    .integration-text h2 {
        font-size: 20px;
    }

    .integration-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .highlight-text {
        font-size: 14px;
    }

    .integration-stripe {
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .solucoes-content {
        flex-direction: column;
        padding-top: 70px;
    }

    .solucoes-text {
        width: 100%;
        padding: 30px 20px;
        margin-top: 0;
        text-align: center;
        background-color: var(--primary-color);
    }

    .solucoes-text h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .solucoes-text h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .solucoes-description h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .solucoes-image {
        width: 100%;
        height: auto;
        min-height: 300px;
        clip-path: none;
        margin-top: 0;
    }

    .recursos-section {
        padding: 40px 0;
    }

    .recursos-header h3 {
        font-size: 20px;
        padding: 12px 20px;
    }

    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .recurso-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .solucoes-text h1 {
        font-size: 28px;
    }

    .solucoes-description h2 {
        font-size: 22px;
    }

    .solucoes-description span {
        font-size: 14px;
        padding: 4px 10px;
    }

    .recursos-header h3 {
        font-size: 18px;
        padding: 10px 15px;
    }

    .recurso-item {
        padding: 12px;
    }

    .recurso-item span {
        font-size: 13px;
    }
}

/* Estilos da página Benefícios */
.beneficios-hero {
    min-height: 100vh;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

/* Responsividade */
@media (max-width: 1200px) {
    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .beneficios-text {
        width: 90%;
        padding: 50px 30px 50px 120px;
    }

    .beneficios-text-content {
        padding: 50px 60px;
    }
}

@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .beneficios-text {
        width: 95%;
        padding: 40px 20px 40px 100px;
    }

    .beneficios-text-content {
        padding: 40px 50px;
    }

    .sistema-highlight {
        font-size: 42px;
    }

    .beneficios-text h1,
    .beneficios-text h2 {
        font-size: 32px;
    }

    .beneficios-text p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .beneficios-hero {
        margin-top: 60px;
        min-height: auto;
        position: relative;
    }

    .beneficios-content {
        min-height: auto;
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        padding-top: 40px;
    }

    .beneficios-text {
        width: 100%;
        padding: 30px 20px;
        margin: 0;
        background: var(--primary-color);
        order: 1;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        position: relative;
        margin-left: 0;
    }

    .beneficios-text-content {
        width: 100%;
        max-width: none;
        text-align: center;
        position: relative;
        padding: 30px 20px;
        margin-left: 0;
    }

    .sistema-highlight {
        font-size: 32px;
        padding: 8px 15px;
        margin-bottom: 15px;
        background: var(--secondary-color);
        display: inline-block;
        border-radius: 6px;
    }

    .beneficios-text h1,
    .beneficios-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .beneficios-text p {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .btn-saiba-mais {
        margin: 15px auto 0;
        padding: 12px 30px;
        font-size: 14px;
        display: inline-block;
    }

    .beneficios-image {
        width: 100%;
        height: 50vh;
        position: relative;
        order: 2;
        clip-path: none;
        margin-top: 20px;
    }

    .beneficios-title-stripe h3 {
        font-size: 24px;
        padding: 15px 20px;
    }

    .beneficios-container {
        padding: 40px 20px;
    }

    .beneficio-card {
        padding: 20px 15px;
        min-height: 140px;
    }

    .card-icon {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .beneficio-card h4 {
        font-size: 15px;
    }

    .beneficio-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .beneficios-content {
        padding-top: 30px;
    }

    .beneficios-text {
        padding: 25px 15px;
    }

    .beneficios-text-content {
        padding: 25px 15px;
    }

    .sistema-highlight {
        font-size: 28px;
        padding: 6px 12px;
    }

    .beneficios-text h1,
    .beneficios-text h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .beneficios-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .beneficios-image {
        height: 40vh;
        margin-top: 15px;
    }

    .beneficios-title-stripe h3 {
        font-size: 20px;
        padding: 12px 15px;
    }

    .beneficios-container {
        padding: 30px 15px;
    }

    .beneficios-grid {
        gap: 15px;
    }

    .beneficio-card {
        padding: 15px 12px;
        min-height: 130px;
    }

    .card-icon {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .beneficio-card h4 {
        font-size: 14px;
    }

    .beneficio-card p {
        font-size: 12px;
    }
}

/* Responsividade da Seção de Segmentos */
@media (max-width: 1440px) {
    .segmentos-top {
        height: auto;
        min-height: 100vh;
    }

    .segmentos-content {
        padding: 0 40px;
    }

    .text-side {
        padding: 3rem 4rem 3rem 6rem;
    }

    .title {
        font-size: 4.5rem;
    }

    .subtitle-container p {
        font-size: 2.2rem;
    }

    .sistema {
        font-size: 4rem !important;
    }

    .diprosoft-badge {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .segmentos-content {
        padding: 0 30px;
    }

    .text-side {
        padding: 2.5rem 3rem 2.5rem 5rem;
    }

    .title {
        font-size: 4rem;
    }

    .subtitle-container p {
        font-size: 2rem;
    }

    .sistema {
        font-size: 3.5rem !important;
    }

    .diprosoft-badge {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .segmentos-top {
        height: auto;
        min-height: auto;
    }

    .segmentos-content {
        display: flex;
        flex-direction: column-reverse;
        /* Inverte a ordem para texto primeiro */
        padding: 0 20px;
    }

    .image-side {
        width: 100%;
        height: 50vh;
        margin-left: 0;
    }

    .text-side {
        position: relative;
        width: 100%;
        height: auto;
        padding: 40px 30px;
        clip-path: none;
        background-color: rgba(255, 128, 0, 0.95);
    }

    .title {
        font-size: 3.5rem;
        text-align: center;
    }

    .subtitle-container {
        align-items: center;
    }

    .subtitle-container p {
        font-size: 1.8rem;
        text-align: center;
    }

    .sistema {
        font-size: 3rem !important;
        text-align: center;
    }

    .diprosoft-badge {
        font-size: 2rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .segmentos-top {
        margin-top: 60px;
    }

    .image-side {
        height: 40vh;
    }

    .text-side {
        padding: 30px 20px;
    }

    .title {
        font-size: 3rem;
    }

    .subtitle-container p {
        font-size: 1.6rem;
    }

    .sistema {
        font-size: 2.5rem !important;
    }

    .diprosoft-badge {
        font-size: 1.8rem;
        padding: 0.2rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .segmentos-top {
        margin-top: 50px;
    }

    .image-side {
        height: 35vh;
    }

    .text-side {
        padding: 25px 15px;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle-container p {
        font-size: 1.4rem;
    }

    .sistema {
        font-size: 2.2rem !important;
    }

    .diprosoft-badge {
        font-size: 1.6rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Responsividade do Grid de Segmentos */
@media (max-width: 1200px) {
    .segmentos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 20px;
        margin-top: 40px;
    }

    .segmento-card {
        width: 100%;
        aspect-ratio: 3/4;
        margin-top: 0;
    }

    .segmento-card:nth-child(odd) {
        margin-top: 0;
    }

    .segmento-card:nth-child(even) {
        margin-top: 0;
    }

    .segmento-card .card-bg {
        height: 45%;
    }

    .segmento-card .card-content {
        height: 55%;
        padding: 20px 10px 15px;
    }

    .segmento-card h3 {
        font-size: 12px;
        height: 32px;
        line-height: 1.3;
    }

    .segmento-card .confirma {
        padding: 8px 12px;
        font-size: 11px;
        width: 80px;
    }
}

@media (max-width: 768px) {
    .segmentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
        margin-top: 30px;
    }

    .segmento-card {
        aspect-ratio: 3/4;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        margin-top: 0;
    }

    .segmento-card:nth-child(odd) {
        margin-top: 0;
    }

    .segmento-card:nth-child(even) {
        margin-top: 0;
    }

    .segmento-card .card-bg {
        height: 45%;
        transition: transform 0.4s ease;
    }

    .segmento-card:hover .card-bg {
        transform: scale(1.05);
    }

    .segmento-card .card-content {
        height: 55%;
        padding: 20px 10px 15px;
        background: linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);
    }

    .segmento-card:nth-child(odd) .card-content {
        background: linear-gradient(to bottom, #FF8000 0%, #ff9f2f 100%);
    }

    .segmento-card h3 {
        font-size: 11px;
        height: 28px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .segmento-card .confirma {
        padding: 7px 10px;
        font-size: 10px;
        width: 70px;
        background: #2D1B3B;
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .segmento-card .confirma:hover {
        background: #3d2b4b;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 480px) {
    .segmentos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
        margin-top: 20px;
    }

    .segmento-card {
        aspect-ratio: 4/5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 0;
    }

    .segmento-card:nth-child(odd) {
        margin-top: 0;
    }

    .segmento-card:nth-child(even) {
        margin-top: 0;
    }

    .segmento-card .card-bg {
        height: 40%;
    }

    .segmento-card .card-content {
        height: 60%;
        padding: 15px 8px 12px;
    }

    .segmento-card h3 {
        font-size: 10px;
        height: 24px;
        line-height: 1.2;
    }

    .segmento-card .confirma {
        padding: 6px 8px;
        font-size: 9px;
        width: 60px;
    }
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    /* Alterado para branco */
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        /* Usando a cor primária */
        flex-direction: column;
        padding: 20px;
        transition: 0.3s;
        z-index: 999;
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-menu a {
        width: 100%;
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .navbar-menu a:last-child {
        border-bottom: none;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        padding: 8px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .navbar-menu {
        padding: 15px;
    }

    .navbar-menu a {
        padding: 12px 0;
        font-size: 14px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .tech-text {
        padding: 0;
        justify-content: flex-start;
    }

    .tech-label {
        font-size: 18px;
        padding: 10px 20px;
        text-align: left;
    }

    .aws-logo {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .tech-label {
        font-size: 16px;
        padding: 8px 15px;
    }

    .aws-logo {
        width: 50px;
    }
}

/* Animações e Transições */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Aplicando as animações */
.text-content {
    animation: fadeIn 1s ease-out;
}

.text-content h1 {
    animation: slideInUp 0.8s ease-out;
}

.tech-box {
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.text-box {
    animation: slideInUp 0.8s ease-out 0.5s backwards;
}

.bottom-image {
    animation: slideInLeft 0.8s ease-out 0.7s backwards;
}

/* Transições suaves para elementos interativos */
.tech-label,
.aws-logo,
.text-box,
.bottom-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de hover mais suave */
.tech-label:hover,
.aws-logo:hover,
.text-box:hover,
.bottom-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsividade das animações */
@media (max-width: 768px) {

    .text-content,
    .text-content h1,
    .tech-box,
    .text-box,
    .bottom-image {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Animações para Página Benefícios */
.beneficios-hero {
    animation: fadeIn 1s ease-out;
}

.beneficios-title-stripe {
    animation: slideInDown 0.8s ease-out 0.3s backwards;
}

.beneficios-content {
    animation: slideInUp 0.8s ease-out 0.5s backwards;
}

.beneficios-text {
    animation: slideInLeft 0.8s ease-out 0.7s backwards;
}

.beneficios-image {
    animation: slideInRight 0.8s ease-out 0.9s backwards;
}

.beneficios-grid {
    animation: fadeIn 1s ease-out 1.1s backwards;
}

.beneficio-card {
    animation: scaleIn 0.6s ease-out backwards;
    transition: all 0.3s ease;
}

.beneficio-card:nth-child(1) {
    animation-delay: 1.2s;
}

.beneficio-card:nth-child(2) {
    animation-delay: 1.3s;
}

.beneficio-card:nth-child(3) {
    animation-delay: 1.4s;
}

.beneficio-card:nth-child(4) {
    animation-delay: 1.5s;
}

/* Animações para Página Segmentos */
.segmentos-top {
    animation: fadeIn 1s ease-out;
}

.segmentos-content {
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.image-side {
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.text-side {
    animation: slideInRight 0.8s ease-out 0.7s backwards;
}

.segmentos-grid {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.segmento-card {
    animation: scaleIn 0.6s ease-out backwards;
    transition: all 0.3s ease;
}

.segmento-card:nth-child(odd) {
    animation-delay: 1.1s;
}

.segmento-card:nth-child(even) {
    animation-delay: 1.2s;
}

/* Efeitos de Hover Específicos */
.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.segmento-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsividade das Animações */
@media (max-width: 768px) {

    .beneficios-hero,
    .beneficios-title-stripe,
    .beneficios-content,
    .beneficios-text,
    .beneficios-image,
    .beneficios-grid,
    .beneficio-card,
    .segmentos-top,
    .segmentos-content,
    .image-side,
    .text-side,
    .segmentos-grid,
    .segmento-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Banner Revenda - NOVO CSS */
.revenda-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out;
}

.revenda-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/imagens/revenda-formulario.jpg') center center/cover no-repeat;
    z-index: 1;
}

.revenda-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.revenda-banner-left {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.revenda-banner-img {
    width: 100%;
    height: 100vh;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.revenda-banner-right {
    flex: 1;
    background-color: #2B1B42;
    /* Roxo Diprosoft */
    /* Borda com bico igual ao segmentos */
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 0% 30%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #fff;
    animation: slideInRight 0.8s ease-out 0.4s backwards;
}


.revenda-orange {
    color: #f58220;
}

.revenda-white {
    color: #ffffff;
}

.revenda-banner-text p {
    font-size: 24px;
    margin-top: 10px;
}

.revenda-lucros {
    margin-top: 20px;
    background-color: #f58220;
    color: #fff;
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .revenda-banner-content {
        flex-direction: column;
    }

    .revenda-banner-right {
        clip-path: none;
        width: 100%;
    }

    .revenda-banner-text h1 {
        font-size: 36px;
    }

    .revenda-banner-text p {
        font-size: 20px;
    }

    .revenda-lucros {
        font-size: 18px;
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .revenda-banner-left {
        height: auto;
        min-height: auto;
        padding: 20px;
    }

    .revenda-banner-img {
        height: auto;
        max-width: 100%;
    }
}

.revenda-titulo {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1;
    text-align: left;
    background: linear-gradient(90deg, #FF8A00 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.revenda-subtitulo {
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
    text-align: left;
}

.revenda-lucros-destaque {
    background: #f58220;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    border-radius: 18px;
    padding: 18px 32px;
    margin-top: 10px;
    display: inline-block;
    text-align: left;
    box-shadow: none;
}

@media (max-width: 1200px) {
    .revenda-titulo {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .revenda-titulo {
        font-size: 2rem;
    }
}

.foto-atendente-container {
    position: relative;
    display: inline-block;
}



.logo-camisa {
    position: absolute;
    z-index: 3;
    top: 62%;
    /* Ajuste conforme necessário */
    left: 37%;
    /* Empurra para o lado direito */
    width: 60px;
    /* Ajuste o tamanho conforme necessário */
    pointer-events: none;
    transform: rotate(-12deg);
    /* Gira levemente para a esquerda */
    opacity: 0.7;
    /* Deixa mais transparente */
}

@media (max-width: 768px) {
    .logo-camisa {
        top: 68%;
        left: 40%;
        width: 28px;
        /* Reduzido ainda mais para tablet/mobile */
        transform: rotate(-10deg);
    }
}

@media (max-width: 480px) {
    .logo-camisa {
        top: 70%;
        left: 40%;
        width: 16px;
        /* Reduzido ainda mais para smartphones */
        transform: rotate(-8deg);
    }
}

@media (max-width: 768px) {
    .revenda-banner-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .revenda-banner-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .revenda-banner-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 10px;
        /* Garante espaço lateral */
    }

    .revenda-subtitulo {
        font-size: 1.5rem;
        max-width: 260px;
        /* Limita a largura para melhor quebra */
        margin-bottom: 12px;
        line-height: 1.3;
        word-break: break-word;
        margin-left: 45px;
    }
}

/* Seção bottom da revenda */
.revenda-bottom {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background-color: #2B1B42;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.revenda-bottom-title {
    width: 100vw;
    max-width: 100vw;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 2.5rem auto;
    padding-top: 5vh;
    padding-bottom: 2vh;
    z-index: 3;
    /* Removido display: flex, align-items e justify-content para preservar espaços no texto */
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.revenda-bottom-content {
    display: flex;
    flex: 1;
    width: 100vw;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.revenda-bottom-left {
    width: 50%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 40px 32px;
    background: transparent;
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.revenda-bottom-right {
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 40px;
    animation: slideInRight 0.8s ease-out 0.6s backwards;
}

.revenda-bottom-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
}

.revenda-bottom-desc,
.revenda-bottom-funciona,
.revenda-bottom-funciona span,
.revenda-bottom-beneficios,
.revenda-bottom-lista,
.revenda-bottom-lista li {
    color: #fff !important;
}

.revenda-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30vw;
    /* 30% da largura da viewport */
    height: 100%;
    background: #FF8A00;
    /* Laranja */
    z-index: 1;
    pointer-events: none;
    /* Não interfere nos cliques */
    /* Removido border-top-right-radius e border-bottom-right-radius para borda reta */
}

.revenda-bottom,
.revenda-bottom * {
    position: relative;
    z-index: 2;
}

.revenda-bottom-funciona {
    background: var(--primary-color);
    /* Roxo escuro */
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 18px;
    margin-bottom: 8px;
    box-shadow: 0 2px 12px rgba(45, 27, 59, 0.08);
}

@media (max-width: 768px) {
    .revenda-bottom-funciona {
        font-size: 1rem;
        padding: 10px 18px;
        margin-top: 14px;
        margin-bottom: 6px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .revenda-bottom-funciona {
        font-size: 0.95rem;
        padding: 8px 10px;
        margin-top: 10px;
        margin-bottom: 4px;
        border-radius: 8px;
        max-width: 100%;
        word-break: break-word;
    }
}

.revenda-vantagens {
    width: 100vw;
    max-width: 100vw;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 5vw 32px 5vw;
    box-sizing: border-box;
    margin: 0;
    gap: 32px;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.revenda-vantagens-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.revenda-vantagens-titulo {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 18px;
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.revenda-vantagens-lista {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    list-style: none;
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.revenda-vantagens-lista li {
    margin-bottom: 6px;
}

.revenda-vantagens-lista b {
    font-weight: 700;
}

.revenda-vantagens-img {
    width: 220px;
    min-width: 120px;
    max-width: 240px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-left: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    animation: slideInRight 0.8s ease-out 0.6s backwards;
}

@media (max-width: 900px) {
    .revenda-vantagens {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 3vw;
        gap: 18px;
    }

    .revenda-vantagens-img {
        margin-left: 0;
        margin-top: 18px;
        width: 100%;
        max-width: 320px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .revenda-vantagens {
        padding: 16px 2vw;
    }

    .revenda-vantagens-titulo {
        font-size: 1.2rem;
    }

    .revenda-vantagens-img {
        max-width: 90vw;
        border-radius: 8px;
    }
}

.revenda-formulario {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.revenda-formulario-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/imagens/revenda-formulario.jpg') center center/cover no-repeat;
    z-index: 1;
}

.revenda-formulario-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 138, 0, 0.55);
    /* Laranja translúcido */
    z-index: 2;
}

.revenda-formulario-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* Centraliza verticalmente */
    justify-content: space-between;
    gap: 48px;
    padding: 48px 0;
    min-height: 600px;
    /* Garante altura mínima para centralização */
    animation: slideInUp 0.8s ease-out 0.5s backwards;
}

.revenda-formulario-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 50%;
    padding-left: 32px;
    align-items: flex-start;
    /* Alinha à esquerda no desktop */
    min-height: 400px;
    animation: slideInLeft 0.8s ease-out 0.6s backwards;
}

.revenda-formulario-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.revenda-formulario-sub {
    background: #2B1B42;
    color: #fff;
    display: inline-block;
    padding: 8px 22px;
    border-radius: 18px;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.revenda-formulario-chamada {
    background: #fff3e0;
    color: #FF8A00;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 18px 20px;
    margin-top: 32px;
    max-width: 420px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.revenda-formulario-chamada b {
    color: #FF8A00;
    font-weight: 700;
}

.revenda-formulario-box {
    background: #2B1B42;
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    padding: 32px 32px 18px 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 340px;
    max-width: 400px;
    gap: 16px;
    justify-content: center;
    align-self: center;
    /* Centraliza o formulário verticalmente */
    animation: slideInRight 0.8s ease-out 0.7s backwards;
}

.revenda-formulario-logo {
    width: 180px;
    margin: 0 auto 12px auto;
    display: block;
}

.revenda-formulario-box input,
.revenda-formulario-box textarea {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    margin-bottom: 0;
    color: #2B1B42;
    outline: none;
    resize: none;
}

.revenda-formulario-box textarea {
    min-height: 60px;
    max-height: 120px;
}

.revenda-formulario-box button {
    background: #FF8A00;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.revenda-formulario-box button:hover {
    background: #ff9f2f;
}

.revenda-formulario-legenda {
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 8px;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .revenda-formulario-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 32px 0;
        min-height: 0;
    }

    .revenda-formulario-info {
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        align-items: center;
        min-height: 0;
    }

    .revenda-formulario-box {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .revenda-formulario-content {
        padding: 16px 0;
        gap: 18px;
    }

    .revenda-formulario-box {
        padding: 18px 6px 10px 6px;
        border-radius: 12px;
    }

    .revenda-formulario-logo {
        width: 120px;
    }
}

.revenda-formulario-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.revenda-formulario-img-bg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}