/* 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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header e Hero Section */
.header {
    position: relative;
    background-image: url('../images/capa.png');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* Header página inicial - Banner completo */
.header-home {
    min-height: 70vh;
    background-position: center; /* Banner completo centralizado */
}

/* Header páginas internas - Banner 1/3 do tamanho (recorte superior) */
.header-internal {
    min-height: 23vh;
    justify-content: center;
    background-position: bottom; /* Mostra a parte inferior do banner */
}

/* Navegação mais compacta nas páginas internas */
.header-internal .top-navigation {
    padding: 10px 0;
}

.header-internal .logo {
    padding: 8px 15px;
}

.header-internal .logo img {
    max-width: 150px;
}

.header-internal .nav-btn {
    padding: 8px 15px;
    font-size: 14px;
}

/* Overlay com degrade */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(128, 128, 128, 0.4) 70%,
        rgba(192, 192, 192, 0.2) 100%
    );
    z-index: 1;
}

/* Decorações do header - imagens laterais na mesma altura da capa */
.header-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Mesma altura do header */
    pointer-events: none;
    z-index: 4; /* Em cima da capa */
    overflow: visible;
}

.header-decoration {
    position: absolute;
    top: 0;
    width: 600px;
    height: 100%; /* Mesma altura do header */
    opacity: 0.7;
}

.header-decoration.left {
    left: 0; /* Colado na borda esquerda */
}

.header-decoration.right {
    right: 0; /* Colado na borda direita */
}

.header-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantém proporções sem cortar */
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Navegação superior */
.top-navigation {
    position: relative;
    z-index: 5;
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.logo img {
    max-width: 180px;
    height: auto;
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-slogan {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff873f;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 0;
}

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

.nav-btn {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff873f 0%, #948c83 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-btn:hover {
    color: #ff873f;
    transform: translateY(-2px);
}

.nav-btn:hover::before {
    width: 100%;
}

.nav-btn:active {
    transform: translateY(-1px);
}



/* 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: #ff873f;
    font-weight: bold;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.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: #ff873f;
    margin-bottom: 15px;
}

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

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

.saiba-mais {
    display: inline-block;
    padding: 12px 30px;
    background: #ff873f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(255, 135, 63, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

.saiba-mais:hover {
    background: #e6752e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 135, 63, 0.4);
}

/* 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: #ff873f;
    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 query para melhor organização dos cards em telas medianas */
@media (max-width: 900px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 650px;
    }
    
    .solutions-grid .solution-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
    }
}

@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;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .solutions-grid .solution-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
}

@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: #ff873f;
    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: #ff873f;
    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: #948c83;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #ff873f;
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer-section i {
    width: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .solutions-section h2,
    .clients-section h2,
    .clients-section-services h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .client-slide {
        min-width: 220px;
        height: 140px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        padding: 10px 15px;
        border-radius: 10px;
    }
    
    .logo img {
        max-width: 250px;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .clients-carousel {
        flex-direction: column;
        gap: 15px;
    }
    
    .clients-section-services {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .carousel-btn {
        align-self: center;
    }
}

/* 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: #ff873f;
    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: #ff873f;
    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;
}

/* Mensagem de introdução na página Quem Somos */
.intro-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ff873f;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.intro-message p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.intro-message p:first-child {
    color: #ff873f;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.intro-message p:last-child {
    margin-bottom: 0;
}

/* Estilos para página de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    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 #ff873f;
}

.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: #ff873f;
}

.service-item h3 {
    color: #ff873f;
    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;
}

.service-item .saiba-mais {
    margin-top: 20px;
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Galeria de Projetos */
.projects-gallery {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
}

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

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

.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;
    height: 250px;
}

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

.project-item img {
    width: 100%;
    height: 100%;
    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(255, 135, 63, 0.9));
    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;
    line-height: 1.4;
    opacity: 0.9;
}

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

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

.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: #ff873f;
    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: #ff873f;
    font-weight: bold;
}

.clients-gallery h3 {
    text-align: center;
    color: #ff873f;
    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(255, 135, 63, 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: #ff873f;
}

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

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

.sector-item h4 {
    color: #ff873f;
    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: #ff873f;
    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: #ff873f;
    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: #ff873f;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.company-tagline {
    color: #948c83;
    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: #ff873f;
    margin-top: 5px;
    min-width: 25px;
}

.contact-item h4 {
    color: #ff873f;
    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: #ff873f;
    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: 25px;
        max-width: 400px;
    }
    
    .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;
    }
} 

/* Estilos para as páginas individuais de serviços */
.service-detail {
    padding: 40px 0;
    background: #f8f9fa;
}

.service-main {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.service-icon-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff873f 0%, #948c83 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 135, 63, 0.3);
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.5rem;
    color: #ff873f;
    margin-bottom: 20px;
    font-weight: bold;
}

.service-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.services-list {
    margin-bottom: 40px;
}

.services-list h3 {
    font-size: 1.8rem;
    color: #ff873f;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.services-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li strong {
    color: #ff873f;
    font-weight: bold;
}

.cta-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    color: #ff873f;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff873f 0%, #948c83 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 135, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 135, 63, 0.4);
    background: linear-gradient(135deg, #e6752e 0%, #847873 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}



/* Media queries para responsividade */
@media (max-width: 768px) {
    .service-main {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .service-icon-large i {
        font-size: 2.5rem;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    
    .services-list h3 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .service-detail {
        padding: 20px 0;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .services-list li {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 25px 15px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
} 

/* Media queries para responsividade do header */
@media (max-width: 1200px) {
    .header-home {
        min-height: 65vh;
        background-position: center;
    }
    
    .header-internal {
        min-height: 20vh;
        background-position: bottom;
    }
    
    .header-decoration {
        width: 500px;
        height: 100%;
        opacity: 0.6;
    }
    
    .hero-slogan {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 900px) {
    .header-home {
        min-height: 60vh;
        background-position: center;
    }
    
    .header-internal {
        min-height: 18vh;
        background-position: bottom;
    }
    
    .header-decoration {
        width: 400px;
        height: 100%;
        opacity: 0.5;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-menu ul {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-slogan {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 60vh;
    }
    
    .header-home {
        min-height: 60vh;
        background-position: center;
    }
    
    .header-internal {
        min-height: 15vh;
        background-position: bottom;
    }
    
    .header-internal .top-navigation {
        padding: 8px 0;
    }
    
    .header-internal .logo {
        padding: 6px 12px;
    }
    
    .header-internal .logo img {
        max-width: 120px;
    }
    
    .header-internal .nav-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .header-decoration {
        width: 300px;
        height: 100%;
        opacity: 0.4;
    }
    
    .top-navigation {
        padding: 15px 0;
    }
    
    .logo {
        padding: 8px 15px;
        border-radius: 10px;
    }
    
    .logo img {
        max-width: 150px;
    }
    
    .nav-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .hero-slogan {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 50vh;
    }
    
    .header-home {
        min-height: 50vh;
        background-position: center;
    }
    
    .header-internal {
        min-height: 12vh;
        background-position: bottom;
    }
    
    .header-internal .top-navigation {
        padding: 6px 0;
    }
    
    .header-internal .logo {
        padding: 4px 10px;
    }
    
    .header-internal .logo img {
        max-width: 100px;
    }
    
    .header-internal .nav-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .header-decoration {
        width: 120px;
        height: 100%;
        opacity: 0.3;
    }
    
    .nav-wrapper {
        gap: 15px;
    }
    
    .logo {
        padding: 6px 12px;
        border-radius: 8px;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero-slogan {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
} 