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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header e Hero Section */
.header {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-image: url('../images/fundo-tela-principal.jpeg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px 0 40px 60px;
}

.company-logo {
    height: 200px !important;
    width: 600px !important;
    object-fit: contain !important;
    background: white !important;
    padding: 30px !important;
    border-radius: 20px !important;
    border: 3px solid rgba(0, 119, 190, 0.2) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2) !important;
}

.marlon-logo-photo {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid #0077be;
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}

.company-title {
    background: linear-gradient(135deg, #0077be 0%, #004d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    text-shadow: none;
    letter-spacing: 1px;
    position: relative;
}

.company-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0077be, transparent);
    border-radius: 2px;
}

/* Menu de Navegação */
.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-btn {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-color: #f8f9fa;
}

.nav-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Seção do Vídeo da Logo */
.logo-video-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.animated-logo {
    max-width: 200px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Seção de Soluções */
.solutions-section {
    padding: 80px 0;
    background: white;
}

.solutions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e3c72;
    font-weight: bold;
}

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

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.solution-card i {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 15px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e3c72;
}

.solution-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.saiba-mais {
    display: inline-block;
    padding: 10px 25px;
    background: #2a5298;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.solution-card:hover .saiba-mais {
    opacity: 1;
    transform: translateY(0);
}

.saiba-mais:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

/* Seção de Logos dos Clientes */
.clients-logos-section {
    padding: 80px 0;
    background: white;
}

.clients-logos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e3c72;
    font-weight: bold;
}

.clients-logos-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    width: 100%;
}

.carousel-container-clients {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    max-width: calc(100% - 120px); /* Deixa espaço para os botões */
}

.carousel-track-clients {
    display: flex;
    transition: transform 0.5s ease;
    width: fit-content;
}

.client-logo-slide {
    min-width: 200px;
    width: 200px;
    height: 120px;
    margin: 0 15px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.client-logo-slide:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: #2a5298;
    transform: translateY(-2px);
}

.client-logo-slide img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.client-logo-slide:hover img {
    filter: grayscale(0);
}

/* Responsividade para carrossel de clientes */
@media (max-width: 1200px) {
    .client-logo-slide {
        min-width: 180px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .clients-logos-carousel {
        gap: 10px;
    }
    
    .client-logo-slide {
        min-width: 150px;
        height: 100px;
        margin: 0 10px;
    }
    
    .clients-logos-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .client-logo-slide {
        min-width: 120px;
        height: 80px;
        margin: 0 8px;
    }
    
    .clients-logos-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

/* Seção de Projetos */
.clients-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Seção de Projetos na página de Serviços */
.clients-section-services {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 60px;
    border-radius: 20px;
}

.clients-section h2,
.clients-section-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e3c72;
    font-weight: bold;
}

.clients-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.client-slide {
    min-width: 280px;
    height: 180px;
    margin: 0 10px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.client-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.client-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-slide:hover img {
    transform: scale(1.1);
}

.carousel-btn {
    background: #2a5298;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: #1e3c72;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    width: 20px;
    color: #2a5298;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .nav-btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .nav-btn-whatsapp {
        background: #25D366 !important;
        border: 2px solid #25D366 !important;
        color: white !important;
    }
    
    .nav-btn-whatsapp:hover {
        background: #128C7E !important;
        border-color: #128C7E !important;
    }
    
    .company-logo {
        height: 120px !important;
        width: 300px !important;
        padding: 15px !important;
    }
    
    .logo {
        justify-content: center;
        margin: 20px 0;
    }
    
    .solutions-section h2,
    .clients-section h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .client-slide {
        min-width: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sector-item {
        padding: 20px;
    }
    
    .sector-item i {
        font-size: 2rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .whatsapp-contact {
        padding: 20px;
    }
    
    .whatsapp-card {
        padding: 20px;
    }
    
    .contact-person {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .person-photo img {
        width: 100px;
        height: 100px;
    }
    
    .clients-showcase {
        padding: 40px 20px;
    }
    
    .clients-logos-carousel-section {
        padding: 40px 20px;
    }
    
    .carousel-container-clients {
        margin: 0 40px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .clients-section-services {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu ul {
        gap: 10px;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 140px;
    }
    
    .company-logo {
        height: 100px !important;
        width: 250px !important;
        padding: 10px !important;
    }
    
    .logo {
        margin: 15px 0;
    }
    
    .solution-card {
        padding: 20px 15px;
    }
    
    .clients-carousel {
        flex-direction: column;
        gap: 15px;
    }
    
    .clients-section-services {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .carousel-btn {
        align-self: center;
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-item,
    .testimonial {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .client-slide {
        min-width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-item {
        height: 200px;
    }
    
    .solutions-grid {
        gap: 15px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sector-item {
        padding: 15px;
    }
    
    .sector-item i {
        font-size: 1.5rem;
    }
    
    .sector-item h4 {
        font-size: 1rem;
    }
    
    .clients-showcase {
        padding: 30px 15px;
    }
    
    .clients-logos-carousel-section {
        padding: 30px 15px;
    }
    
    .carousel-container-clients {
        margin: 0 20px;
    }
    
    .carousel-btn {
        width: 25px;
        height: 25px;
        font-size: 0.6rem;
    }
    
    .client-logo-slide {
        min-width: 100px;
        height: 60px;
    }
    
    .clients-section-services {
        padding: 30px 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .whatsapp-contact {
        padding: 15px;
    }
    
    .whatsapp-card {
        padding: 15px;
    }
    
    .person-photo img {
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .client-testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Estilos para páginas internas */
.page-content {
    padding: 60px 0;
    min-height: 70vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Estilos para página Quem Somos */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h2 {
    color: #2a5298;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.text-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.text-content li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* Estilos para a seção intro na página Quem Somos */
.intro-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.intro-photo {
    flex: 0 0 300px;
    text-align: center;
}

.marlon-photo {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 4px solid #0077be;
}

.photo-caption {
    margin-top: 15px;
}

.photo-caption h3 {
    color: #0077be;
    font-size: 1.8rem;
    margin: 10px 0 5px;
    font-weight: bold;
}

.photo-caption p {
    color: #666;
    margin: 5px 0;
    font-weight: 500;
}

.intro-text {
    flex: 1;
}

.intro-message {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Estilos para página de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #2a5298;
}

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

.service-icon {
    text-align: center;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 3.5rem;
    color: #2a5298;
}

.service-item h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
}

.service-item li:last-child {
    border-bottom: none;
}

/* Galeria de Projetos por Categoria */
.projects-gallery {
    padding: 60px 0;
    background: #f8f9fa;
}

.projects-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3c72;
    font-weight: bold;
}

.project-category {
    margin-bottom: 60px;
}

.project-category h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-bottom: 30px;
    padding-left: 10px;
    border-left: 4px solid #2a5298;
}

.project-category h3 i {
    margin-right: 10px;
    color: #1e3c72;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .projects-gallery h2 {
        font-size: 2rem;
    }
    
    .project-category h3 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .project-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-item {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Estilos para página de Clientes */
.clients-showcase {
    display: grid;
    gap: 60px;
    max-width: 100%;
    overflow-x: hidden;
}

.client-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial h3 {
    color: #1e3c72;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial cite {
    color: #2a5298;
    font-weight: bold;
}

.clients-gallery h3 {
    text-align: center;
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 40px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 100%;
}

.sector-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sector-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 82, 152, 0.1), transparent);
    transition: left 0.5s ease;
}

.sector-item:hover::before {
    left: 100%;
}

.sector-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: #2a5298;
}

.sector-item i {
    font-size: 3.2rem;
    color: #2a5298;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sector-item:hover i {
    color: #1e3c72;
    transform: scale(1.1);
}

.sector-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: bold;
}

.sector-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.clients-logos-section h3 {
    text-align: center;
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.logo-placeholder {
    background: white;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #999;
    font-weight: bold;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Estilo específico para carrossel de clientes na página de clientes */
.clients-logos-carousel-section {
    margin-top: 40px;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    max-width: 100%;
    overflow: hidden;
}

.clients-logos-carousel-section h3 {
    text-align: center;
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.clients-logos-carousel-section .clients-logos-carousel {
    max-width: 100%;
    overflow: hidden;
}

/* Estilos para página de Contato */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.company-info {
    margin-bottom: 40px;
}

.company-info h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.company-tagline {
    color: #2a5298;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2a5298;
    margin-top: 5px;
    min-width: 25px;
}

.contact-item h4 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
    margin-bottom: 5px;
    line-height: 1.5;
}

.whatsapp-contact {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.whatsapp-contact h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
}

.whatsapp-contact > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #20c658 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.contact-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.person-photo {
    flex-shrink: 0;
}

.person-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.person-info h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.person-info p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.availability {
    font-size: 0.9rem;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 10px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #25d366;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    flex-direction: column;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #20c658;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn span {
    font-size: 1.1rem;
}

.whatsapp-btn small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: normal;
}

/* Responsividade para páginas internas */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .sector-item {
        padding: 30px 20px;
    }
    
    .sector-item i {
        font-size: 2.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-contact {
        padding: 30px 20px;
    }
    
    .whatsapp-card {
        padding: 25px 20px;
    }
    
    .contact-person {
        flex-direction: column;
        gap: 15px;
    }
    
    .person-photo img {
        width: 70px;
        height: 70px;
    }
    
    /* Correções específicas para página de clientes */
    .clients-showcase {
        gap: 40px;
    }
    
    .clients-logos-carousel-section {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .carousel-container-clients {
        max-width: calc(100% - 80px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .clients-section-services {
        padding: 60px 15px;
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .service-item,
    .sector-item,
    .contact-item {
        padding: 25px 20px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .client-slide {
        min-width: 200px;
        height: 120px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-item {
        height: 200px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sector-item {
        padding: 25px 15px;
    }
    
    .sector-item i {
        font-size: 2.5rem;
    }
    
    .sector-item h4 {
        font-size: 1.2rem;
    }
    
    /* Correções específicas para página de clientes em mobile */
    .clients-showcase {
        gap: 30px;
    }
    
    .clients-logos-carousel-section {
        padding: 20px 10px;
        margin-top: 20px;
    }
    
    .carousel-container-clients {
        max-width: calc(100% - 60px);
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .client-logo-slide {
        min-width: 120px;
        width: 120px;
        height: 80px;
        margin: 0 8px;
    }
    
    .clients-section-services {
        padding: 30px 10px;
        margin-top: 30px;
    }
}

/* Modal para visualização de imagens em tela cheia */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px;
    box-sizing: border-box;
}

.modal-image {
    max-width: 85%;
    max-height: 75%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-modal:hover,
.close-modal:focus {
    color: #2a5298;
    transform: scale(1.1);
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(42, 82, 152, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
    background: rgba(30, 60, 114, 0.9);
    transform: scale(1.1);
}

.modal-nav-btn:active {
    transform: scale(0.95);
}

/* Animação de entrada do modal */
.image-modal {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.image-modal.show {
    opacity: 1;
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 10px 10px;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 70%;
    }
    
    .close-modal {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .modal-navigation {
        padding: 0 10px;
    }
    
    .modal-caption {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 5px 5px;
    }
    
    .modal-image {
        max-width: 98%;
        max-height: 65%;
    }
    
    .close-modal {
        font-size: 25px;
        top: 10px;
        right: 15px;
    }
    
    .modal-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Seção de Vídeos dos Processos */
.videos-section {
    padding: 80px 0;
    background: white;
}

.videos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e3c72;
    font-weight: bold;
}

.videos-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.video-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 10px;
    font-weight: bold;
}

.video-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .videos-section h2 {
        font-size: 2rem;
    }
    
    .videos-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .video-item video {
        height: 200px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 350px;
    }
    
    .video-item video {
        height: 180px;
    }
    
    .video-info {
        padding: 10px;
    }
}

/* Carrossel de Projetos por Categorias - Página Inicial */
.projects-hero-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.projects-hero-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1e3c72;
    font-weight: bold;
}

.projects-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.category-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.category-section {
    margin-bottom: 50px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.category-section h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.category-section h3 i {
    margin-right: 12px;
    color: #1e3c72;
    font-size: 1.6rem;
}

.category-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-carousel-container .carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.category-carousel-container .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.project-slide {
    min-width: 280px;
    flex-shrink: 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.project-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-slide:hover img {
    transform: scale(1.1);
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 25px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-slide:hover .slide-info {
    transform: translateY(0);
}

.slide-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.slide-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.category-carousel-container .carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a5298;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.category-carousel-container .carousel-btn:hover {
    background: #1e3c72;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.category-carousel-container .carousel-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .projects-hero-section h2 {
        font-size: 2.2rem;
    }
    
    .projects-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .category-section {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .category-section h3 {
        font-size: 1.5rem;
    }
    
    .project-slide {
        min-width: 250px;
    }
    
    .project-slide img {
        height: 180px;
    }
    
    .category-carousel-container .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-section {
        padding: 15px;
    }
    
    .project-slide {
        min-width: 220px;
    }
    
    .project-slide img {
        height: 160px;
    }
    
    .category-carousel-container {
        gap: 10px;
    }
    
    .category-carousel-container .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Responsividade para grid de serviços */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Responsividade para depoimentos */
@media (max-width: 900px) {
    .client-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .client-testimonials {
        grid-template-columns: 1fr;
    }
}

/* Responsividade para título da empresa */
@media (max-width: 768px) {
    .company-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 1.5rem;
    }
}

/* Responsividade para logo */
@media (max-width: 1200px) {
    .company-logo {
        height: 350px !important;
        padding: 25px !important;
    }
    
    .logo {
        margin: 30px 0 30px 40px;
    }
}

@media (max-width: 768px) {
    .logo {
        justify-content: center;
        margin: 20px 0;
    }
    
    .company-logo {
        height: 250px !important;
        width: 400px !important;
        padding: 20px !important;
        border-radius: 15px !important;
    }
    
    .intro-section {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }
    
    .intro-photo {
        flex: none;
        align-self: center;
    }
    
    .marlon-photo {
        width: 200px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .company-logo {
        height: 180px !important;
        width: 300px !important;
        padding: 15px !important;
        border-radius: 12px !important;
    }
    
    .marlon-photo {
        width: 150px;
        height: 180px;
    }
    
    .intro-section {
        padding: 15px;
    }
    
    .intro-message {
        padding: 15px;
    }
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    gap: 10px;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn i {
    font-size: 24px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade do botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }
    
    .whatsapp-float-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float-btn {
        padding: 10px 12px;
        border-radius: 30px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Botão especial do WhatsApp no menu */
.nav-btn-whatsapp {
    background: #25D366 !important;
    border: 2px solid #25D366 !important;
    color: white !important;
    position: relative;
}

.nav-btn-whatsapp:hover {
    background: #128C7E !important;
    color: white !important;
    border-color: #128C7E !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
}

.nav-btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.nav-btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(18, 140, 126, 0.3);
}

/* Melhorias específicas para mobile */
@media (max-width: 576px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-btn {
        padding: 8px 15px;
        font-size: 11px;
        min-width: 120px;
        margin: 2px;
    }
    
    .nav-btn-whatsapp {
        order: -1;
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
    }
    
    .company-logo {
        height: 80px !important;
        width: 200px !important;
        padding: 8px !important;
    }
    
    .projects-hero-section {
        padding: 30px 0;
    }
    
    .projects-hero-section h2 {
        font-size: 1.8rem;
    }
    
    .category-section {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .intro-section {
        padding: 15px;
        gap: 20px;
    }
    
    .intro-message {
        padding: 15px;
    }
    
    .marlon-photo {
        width: 120px;
        height: 150px;
    }
    
    .photo-caption h3 {
        font-size: 1.4rem;
    }
}

/* Ajuste para telas extra pequenas */
@media (max-width: 360px) {
    .nav-btn {
        padding: 6px 12px;
        font-size: 10px;
        min-width: 100px;
    }
    
    .nav-btn-whatsapp {
        max-width: 250px;
        font-size: 11px;
    }
    
    .company-logo {
        height: 70px !important;
        width: 180px !important;
        padding: 6px !important;
    }
    
    .whatsapp-float-btn {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .whatsapp-float-btn i {
        font-size: 18px;
    }
    
    .solutions-section,
    .videos-section,
    .clients-section {
        padding: 40px 0;
    }
    
    .solution-card {
        padding: 15px 10px;
    }
    
    .video-item video {
        height: 150px;
    }
}

/* Responsividade global para imagens e containers */
img {
    max-width: 100%;
    height: auto;
}

/* Ajustes específicos para mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .page-content {
        padding: 30px 0;
    }
    
    .text-content {
        padding: 0 10px;
    }
    
    .intro-section {
        margin-bottom: 30px;
    }
} 