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

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

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

/* Cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.6rem 0;
}


.header.scrolled .nav-menu a:hover {
    color: #10b981;
}

.header.scrolled .hamburger span {
    background: #1e3a8a;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.whatsapp-btn {
    display: inline-flex; /* Garante alinhamento do ícone e texto */
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.whatsapp-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;

}

        /* Botão de Emoji para ativar */
        #show-notification-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #3366FF;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            transition: transform 0.2s ease-in-out, background-color 0.2s;
             animation: pulse-animation 2s ease-in-out infinite;
        }

        #show-notification-btn:hover {
            animation-play-state: paused;
            transform: scale(1.1);
            background-color: #00ff88;
        }
        
        @keyframes pulse-animation {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        /* SEU CSS DA NOTIFICAÇÃO */
        .notification-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            border-radius: 11px;
            padding: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            max-width: 320px;
            background: linear-gradient(45deg, #00ff88, #3366FF, #00ff88, #3366FF);
            background-size: 400% 400%;
            animation: lightsaber 4s ease-in-out infinite;
            transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        }

        .notification-container.hidden {
            opacity: 0;
            transform: translateY(50px);
            pointer-events: none;
        }

        .notification-inner {
            background: white;
            color: #333;
            padding: 15px 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        @keyframes lightsaber {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 100% 0%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
        }

        .notification-content { display: flex; align-items: center; }
        .notification-icon { font-size: 1.8em; margin-right: 10px; color: #3366FF; }
        .notification-text h3 { margin: 0; font-size: 1.1em; font-weight: bold; color: #3366FF; }
        .notification-text p { margin: 2px 0 12px; /* Aumentamos a margem inferior para dar espaço ao botão */ font-size: 0.9em; opacity: 0.8; color: #666; }
        .notification-close { background: none; border: none; color: #666; font-size: 1.5em; cursor: pointer; margin-left: 15px; }

        /* ===== NOVO: CSS PARA O BOTÃO WHATSAPP ===== */
        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            background-color: #25D366;
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            transition: background-color 0.2s ease;
        }

        .whatsapp-button:hover {
            background-color: #1DA851;
        }

        .whatsapp-button svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            fill: white; /* Cor do ícone */
        }

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #10b981;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #10b981;
    transition: width 0.3s ease;
}

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

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 1rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1e3a8a;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Seção Hero */
.hero {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #10b981);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Coloca o fundo de partículas atrás do conteúdo */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: \'\';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'><circle cx='50' cy='50' r='1' fill='white' opacity='0.1'/></pattern></defs><rect width='100' height='100' fill='url(%23grain)'/></svg>");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #10b981;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: \'\';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Seções gerais */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e3a8a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
}

/* Seção de Serviços */
.services {
    padding: 5rem 0;
    background: #eef2ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {

    content: '';
    position: absolute;
    top: 0;
    left: 50%; /* Começa no centro */
    transform: translateX(-50%); /* Centraliza de fato */
    width: 0; /* Começa com largura zero (invisível) */
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #10b981);
    transition: width 0.4s ease; /* Animação para a largura */
}

/* Saiba mais */


/* Fundo do modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}

/* Caixa central */
.modal-content {
  position: relative;
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 900px;
  text-align: center;
  animation: fadeIn 0.3s ease;
    max-height: 90vh;    
  overflow-y: auto;         /* permite scroll no mobile */
  -webkit-overflow-scrolling: touch; /* scroll suave no iOS */
}


.modal-content {
    /* Adiciona mais espaço interno geral no modal */
    padding: 40px; /* AUMENTADO */
}

.modal-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: -10px;
    margin-bottom: 50px; /* AUMENTADO */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* AUMENTADO */
    margin-bottom: 50px; /* AUMENTADO */
    text-align: center;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: #e0f2fe;
    color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================= */
/* ========== CORREÇÃO DO BOTÃO DO MODAL (Largura) ========== */
/* ============================================= */
.next-step .service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: #10b981; /* Verde de ação */
    color: #ffffff;
    padding: 1.2rem 3rem; /* Aumentei o padding horizontal para alongar o botão */
    min-width: 280px; /* Garante uma largura mínima para o texto não quebrar tanto */
    text-align: center; /* Centraliza o texto caso ele ainda quebre */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.next-step .service-btn:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
}

/* Para telas muito pequenas, onde o botão pode ficar grande demais */
@media (max-width: 480px) {
    .next-step .service-btn {
        width: 100%; /* Ocupa a largura total em telas pequenas */
        min-width: auto; /* Remove a largura mínima para se adaptar */
        padding: 1rem 2rem;
    }
}

/* Seção do Próximo Passo / CTA */
.next-step {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
}

.next-step h3 {
    margin-top: 0;
    color: #1e3a8a;
}

/* Responsivo */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px; /* AUMENTADO */
    }
}


/* Botão fechar */
.close {
  position: absolute;
  right: 20px; top: 10px;
  font-size: 28px;
  cursor: pointer;
}





.service-card:hover::before {
    width: 100%; 
}
.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1); /* Ícone gira um pouco e aumenta */
}

.service-card:hover .service-btn {
    background: #10b981; /* Botão muda para a cor verde do tema */
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.4s ease;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;

}
.card-footer {
    margin-top: auto; /* EMPURRA TODO O RODAPÉ PARA O FUNDO */
    padding-top: 1rem; /* Adiciona um respiro entre a descrição e o preço */
}
.service-btn {
    width: 180px;           /* Defina uma largura fixa. Ajuste este valor! */
    min-height: 70px;       /* Garante que todos tenham pelo menos esta altura. */
    transition: all 0.3s ease;
    /* BÔNUS: Melhora o alinhamento do texto dentro do botão */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Importante para o texto que quebra a linha */

    background: #1e3a8a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.service-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Seção de Portfólio */
.portfolio {
    padding: 5rem 0;
    background: white;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.portfolio-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.portfolio-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.portfolio-placeholder h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-placeholder p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: white;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.portfolio-tags span {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 20px;
    margin-top: 2rem;
}

.portfolio-cta p {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.portfolio {
    padding: 5rem 0;
    background: #f8fafc; /* Um fundo suave para destacar a seção */
}
.portfolio a {
    text-decoration: none;
}

/* Esconde o texto que aparece no hover (overlay) APENAS na seção de preview */
.portfolio .portfolio-overlay {
    display: none;
}

/* Estilo da área de conteúdo que fica sempre visível no preview */
.preview-content {
    padding: 1.5rem;
    background: white;
}

.preview-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a; /* Seu azul padrão */
    margin-bottom: 1rem;
}

/* Ajusta as tags para o card de preview */
.preview-content .portfolio-tags {
    justify-content: flex-start; /* Alinha as tags à esquerda */
}

/* Ajuste no botão "Ver Portfólio Completo" */
.portfolio-preview .portfolio-cta {
    background: none;
    padding: 0;
    margin-top: 3rem;
}
/* ============================================= */
/* Seção Unificada: Por que escolher + Nossa Missão */
/* ============================================= */

/* Estilos Gerais da Seção */
.why-choose {
    padding: 5rem 0;
    background: #f8fafc;
}

/* Parte 1: Por que escolher */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajustado para melhor encaixe */
    gap: 2rem;
    margin: 0 auto 5rem auto; /* Aumenta a margem inferior para separar da próxima parte */
    max-width: 1200px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #10b981; /* COR PADRÃO: Verde */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e3a8a; /* COR PADRÃO: Azul */
}

.feature p {
    color: #64748b;
    font-weight: 500;
}

/* Parte 2: Nossa Missão (Layout Criativo) */
.about-layout-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.about-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.about-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-text-overlay {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    width: 50%;
    margin-left: auto;
    margin-right: 5%;
}

.about-text-overlay .section-title-small { /* Usei uma classe diferente para não conflitar com o título principal */
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a; /* COR ATUALIZADA */
    margin-bottom: 20px;
}

.about-text-overlay p {
    line-height: 1.7;
    margin-bottom: 30px;
    color: #64748b;
}

.about-highlights {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    font-size: 20px;
    color: #10b981; /* COR ATUALIZADA para o verde padrão */
}

.highlight-item h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.about-btn {
    display: inline-block;
    background-color: #1e3a8a; /* COR ATUALIZADA para o azul padrão */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Responsivo para Celulares */
@media (max-width: 992px) {
    .about-layout-wrapper {
        min-height: auto;
    }
    .about-image-background {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: -50px;
    }
    .about-text-overlay {
        width: 90%;
        margin: 0 auto;
        padding: 30px;
    }
    .about-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}/* ============================================= */
/* ========== Estilos da Seção de Contato (Fundo Azul Completo) ========== */
/* ============================================= */
.contact-section {
    padding: 60px 20px; /* Adicionado padding lateral */
    background: #1e3a8a; /* FUNDO AZUL APLICADO NA SEÇÃO INTEIRA */
    color: #ffffff; /* Cor padrão do texto na seção será branca */
    text-align: center; /* Centraliza os títulos */
}

/* Seções gerais */
.contact-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
}

.contact-section .section-subtitle {
    margin-bottom: 40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    text-align: left; /* Alinha o texto das colunas à esquerda */
}

/* Coluna da Esquerda: Formulário */
.contact-form h3, .contact-direct h3 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff; /* Garante que os títulos das colunas sejam brancos */
}

/* Estilos para o formulário em fundo escuro */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff; /* Rótulos brancos */
    opacity: 0.9;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    color: #ffffff; /* Texto digitado será branco */
    background-color: rgba(255, 255, 255, 0.1); /* Fundo do campo transparente e levemente branco */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borda sutil */
    border-radius: 5px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6); /* Placeholder com cor mais suave */
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff; /* Borda branca ao focar */
}

/* Botão de Enviar do Formulário */
.form-group button, .cta-button { /* Aplicando o estilo verde no botão do formulário também */
    width: 100%;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover, .cta-button:hover {
    background: #059669;
    transform: translateY(-3px);
}

/* Coluna da Direita: Contato Direto */
.contact-direct p {
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Botão grande do WhatsApp */
.cta-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #10b981;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    background: #059669;
    transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-section {
        text-align: center;
    }
    .contact-form, .contact-direct {
        text-align: left;
    }
}

/* Rodapé */
.site-footer {
  background: #1f2937;
  color: #e5e7eb;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}

/* Lista de links */
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}

/* Contato com ícones */
.footer-col p i {
  margin-right: 8px;
  color: #10b981; /* verde de destaque */
}

/* Redes sociais */
.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}
.social-icons a {
  background: #374151;
  color: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}
.social-icons a:hover {
  background: #10b981;
}

/* Newsletter */
.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}
.newsletter button {
  background: #10b981;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter button:hover {
  background: #059669;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #374151;
  padding-top: 20px;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1100; 
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .navbar {
        order: 2;
        display: flex;
        align-items: center;

        flex-grow: 1; 
        justify-content: flex-end;
    }
    
    .nav-menu {
        position: fixed;
        top: 55px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(30, 58, 138, 0.98);
        flex-direction: column;
        justify-content: s;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1.5rem;
        z-index: 1050;
    }
    
    .nav-menu.active {
        left: 0;
        z-index: 1000;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        color: white;
    }
    
    .whatsapp-btn {
        display: none;
    }


        .whatsapp-btn .whatsapp-text {
        display: none;
    }


    .hamburger {
        display: flex;
    }
    
    .header-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        order: 3;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .service-card {
    display: flex;
    flex-direction: column; /* Organiza o conteúdo em coluna */
    height: 100%; /* Garante que todos os cards ocupem a mesma altura */
}

.service-card .card-footer {
    margin-top: auto; /* Empurra o rodapé (com o botão) para o fundo */
    padding-top: 1rem; /* Adiciona um respiro acima do botão */
}
    
    .service-card {
        padding: 2rem 1.5rem;
    }

    .portfolio-info {
        padding: 15px; 
    }

    .portfolio-info h3 {
        font-size: 1.3rem; 
        margin-bottom: 8px;
    }

    .portfolio-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .portfolio-tags span {
        font-size: 0.75rem;
        padding: 3px 8px;
        margin-top: 8px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-item {
        margin-bottom: 1rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-cta {
        padding: 2rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem;
    }

    .portfolio-info p {
        font-size: 0.85rem;
    }
    
    .portfolio-tags {
        flex-wrap: wrap;
        gap: 5px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-btn, .cta-btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}



/* Animações de fade-in ao scrollar */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }


/* Animação de texto para o título */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInUp 0.8s ease forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.3s; }
.hero-title .word:nth-child(3) { animation-delay: 0.5s; }
.hero-title .word:nth-child(4) { animation-delay: 0.7s; }
.hero-title .word:nth-child(5) { animation-delay: 0.9s; }

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

/* Animação de digitação para o subtítulo */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Animação do botão CTA */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #10b981;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.5s;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}



/* Estilos para os novos cards de serviço detalhados */
.service-details {
    margin: 20px 0;
    text-align: left;
}

.service-details h4 {
    color: #1e3a8a;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.service-details li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.service-details li i {
    color: #10b981;
    margin-right: 8px;
    width: 16px;
    font-size: 0.8rem;
}

.price-breakdown {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.price-main {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.price-main strong {
    color: #10b981;
    font-weight: 700;
}

.price-extra {
    font-size: 0.9rem;
    color: #64748b;
}

.ideal-for {
    margin: 15px 0;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #064e3b;
    text-align: left;
}

.ideal-for strong {
    color: #065f46;
}

/* Ajustes responsivos para os novos cards */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-details li {
        font-size: 0.85rem;
    }
    
    .price-breakdown {
        padding: 12px;
    }
    
    .price-main {
        font-size: 1rem;
    }
}




/* Ajustes para o grid de serviços para acomodar 7 cards */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

/* Estilos para a seção de reviews */
.reviews {
    padding: 5rem 0;
    background: #e2e8f0;
}

.reviews-carousel {
    position: relative;
}

.reviews-wrapper {
    overflow: hidden;
    padding: 2rem; /* Espaço para o efeito de fade */
}

.reviews-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.reviews-carousel::before,
.reviews-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px; /* Largura da área de fade */
    z-index: 2; /* Garante que fique sobre os cards */
    pointer-events: none; /* Permite clicar através do gradiente */
}

.reviews-carousel::before {
    left: 0;
    background: linear-gradient(to right, #e2e8f0, transparent); /* Use a cor de fundo da sua section */
}

.reviews-carousel::after {
    right: 0;
    background: linear-gradient(to left, #e2e8f0, transparent); /* Use a cor de fundo da sua section */
}


.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%; 
    object-fit: cover;
    border: 3px solid #e2e8f0; 
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    margin: 0 0.5rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;

    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.review-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: #10b981;
    opacity: 0.2;
}

.stars {
    margin-bottom: 1.5rem;
    color: #f59e0b;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #475569;
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
}

.author-info span {
    color: #64748b;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.carousel-btn {
    background: none;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.carousel-btn:hover {
    background: #1e3a8a;
    color: white;
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 1rem);
    }
}

.price-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.price-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.price-card p {
  color: #6b7280; /* cinza suave */
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.price-card strong {
  color: #059669; /* verde destaque */
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===============================================
   SEÇÃO "POR QUE ESTAR NO DIGITAL?"
   =============================================== */
.why-digital {
    /* Mantenha suas outras propriedades como padding e background */
    background-color: #f8fafc;
    position: relative; /* Essencial para a onda funcionar */
    padding-top: 6rem;
    padding-bottom: 12rem; /* Espaço para a onda */
    overflow: hidden;
}


/* Detalhe gráfico sutil no fundo */
.why-digital::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05), transparent 70%);
    z-index: 1;
}

.why-digital .container {
    position: relative;
    z-index: 11;
}

/* Cabeçalho da Seção */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    color: #1e3a8a;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
}

/* Layout principal de duas colunas */
.why-digital-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

/* Coluna da Esquerda (Narrativa) */
.narrative-column h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.narrative-column p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Estilo dos Status */
.proposito-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Coluna da Direita (Accordion) */
.accordion-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-header i {
    font-size: 1.2rem;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    flex-grow: 1; /* Faz o título ocupar o espaço */
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
    color: #10b981;
}

/* Conteúdo do Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem 4rem; /* Alinha com o texto do header */
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .why-digital-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .proposito-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Estilos para o Pop-up de Agradecimento */
.modal-content-thanks {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 450px;
    margin: 10% auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #10b981; /* Verde de sucesso */
    margin-bottom: 20px;
}

.modal-content-thanks h2 {
    color: #1e3a8a; /* Azul padrão */
    margin-bottom: 10px;
}

.modal-content-thanks p {
    color: #64748b;
    margin-bottom: 30px;
}

.modal-content-thanks .cta-button {
    width: auto;
    padding: 12px 30px;
}
/* ============================================= */
/* ========== ESTILOS PÁGINA PORTFÓLIO ========== */
/* ============================================= */

/* Filtros de Categoria */
.portfolio-filters {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    background: #eef2ff;
    color: #1e3a8a;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #dbeafe;
    border-color: #10b981;
}

.filter-btn.active {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Deixa o item do portfólio clicável */
.portfolio-grid .portfolio-item {
    cursor: pointer;
}

/* Estilos para o conteúdo do Modal do Portfólio */
.modal-content.modal-portfolio-details {
    max-width: 900px;
    text-align: left;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.project-image-modal img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-info-modal h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 1rem;
}

.project-info-modal p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-info-modal h4 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-list li {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-list li i {
    color: #10b981;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .project-details-grid {
        grid-template-columns: 1fr;
    }
    .project-info-modal h2 {
        font-size: 1.5rem;
    }
}
