/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

/* Utilitários de layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-between {
    justify-content: space-between;
}

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

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

/* Grid system */
.grid {
    display: grid;
}

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

.gap-8 {
    gap: 2rem;
}

/* Cores de fundo */
.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

/* Cores de texto */
.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-500 {
    color: #6b7280;
}

.text-blue-600 {
    color: #2563eb;
}

.text-white {
    color: #ffffff;
}

/* Tipografia */
.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-semibold {
    font-weight: 600;
}

.italic {
    font-style: italic;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Espaçamentos */
.p-0 {
    padding: 0;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-auto {
    margin-top: auto;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-4 {
    margin-right: 1rem;
}

/* Dimensões */
.w-full {
    width: 100%;
}

.w-6 {
    width: 1.5rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.h-6 {
    height: 1.5rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

/* Bordas */
.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-t-xl {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

/* Sombras */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Transições */
.transition {
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Object fit */
.object-cover {
    object-fit: cover;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Focus */
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Hover effects */
.hover\:text-blue-600:hover {
    color: #2563eb;
}

.hover\:text-gray-700:hover {
    color: #374151;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

/* Estilos customizados existentes */
.bg-custom {
    background-color: #f7f9fb;
}

.btn-primary {
    background-color: #1a56db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #1640a4;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.carousel-slide {
    flex-shrink: 0;
    flex-basis: calc(25% - 1.5rem);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 86, 219, 0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.carousel-button:hover {
    background-color: rgba(22, 64, 164, 0.9);
}

.carousel-button-prev {
    left: 1rem;
}

.carousel-button-next {
    right: 1rem;
}

/* Navegação mobile */
.nav-links {
    gap: 2rem;
}

/* Responsividade */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .carousel-slide {
        flex-basis: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

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

    .text-md-6xl {
        font-size: 3.75rem;
    }

    .text-md-4xl {
        font-size: 2.25rem;
    }

    .text-md-xl {
        font-size: 1.25rem;
    }

    .py-md-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .py-md-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .p-md-10 {
        padding: 2.5rem;
    }

    .mb-md-0 {
        margin-bottom: 0;
    }

    .flex-md {
        display: flex;
    }

    .items-md-center {
        align-items: center;
    }

    .w-md-3-5 {
        width: 60%;
    }

    .w-md-2-5 {
        width: 40%;
    }

    .space-md-x-12>*+* {
        margin-left: 3rem;
    }

    .hidden-md {
        display: none;
    }

    .block-md {
        display: block;
    }

    .carousel-slide {
        flex-basis: calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .grid-cols-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-cols-lg-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .carousel-slide {
        flex-basis: calc(33.33% - 1.33rem);
    }
}

@media (max-width: 1024px) {
    .carousel-slide {
        flex-basis: calc(33.33% - 1.33rem);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex-basis: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .carousel-slide {
        flex-basis: 100%;
    }
}

/* SVG graphics styles */
.management-graphic svg,
.automation-graphic svg,
.integration-graphic svg {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
}

/* Estilos específicos para seções */
#hero {
    /* background-color: #f9fafb; */
    padding: 5rem 1rem;
    text-align: center;
}

#hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    /* line-height: 1.25; */
    /* margin-bottom: 1rem; */
}

#hero p {
    font-size: 1.125rem;
    color: #4b5563;
    /* margin-bottom: 2rem; */
}

@media (min-width: 768px) {
    #hero {
        padding: 6rem 1rem;
    }

    #hero h1 {
        font-size: 3.75rem;
    }

    #hero p {
        font-size: 1.25rem;
    }
}

/* Seções com fundo alternado */
section:nth-child(even) {
    background-color: #ffffff;
}

section:nth-child(odd) {
    background-color: #f9fafb;
}

/* Ajustes para o carrossel */
#carousel-section {
    background-color: #f3f4f6;
}

/* Ajustes para FAQ */
.faq-item {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    margin-bottom: 1rem;
}

.faq-item .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item svg {
    transition: transform 0.3s ease;
}

.faq-item.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 0.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}


 #hero {
                        /* Tamanho da imagem */
    background-size: contain; /*cover; /* ou contain, ou valores específicos: 100% 100%, 500px 300px, etc */
    
    /* Posicionamento da imagem */
    background-position: center center; /* ou left top, right bottom, 50% 50%, etc */
    
    /* Repetição da imagem */
    background-repeat: no-repeat; /* ou repeat, repeat-x, repeat-y */
    
    /* Comportamento de rolagem */
    background-attachment: local; /*fixed; /* ou scroll, local */
    
    /* Origem da imagem */
    background-origin: border-box; /*padding-box; /* ou border-box, content-box */
    
    /* Área de pintura da imagem */
    background-clip: border-box; /*border-box; /* ou padding-box, content-box */
    
    /* Cor de fallback */
    background-color: #f0f0f0; /* cor que aparece antes do carregamento da imagem */
    
    /* Múltiplas imagens de fundo (se desejar) */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        url('./newcode3d.png');
 }