* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 

body {
    min-height: 100vh;
    background-image: url("/images/main.jpg"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 200px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
   width: 60px;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1;
}

.container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: -1;
}

.container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.15) 1%, transparent 80%),
        radial-gradient(circle at 80% 80%, rgba(0, 100, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(100, 0, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.container > * {
    position: relative;
    z-index: 1;
}

.content-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    gap: 20px; 
    padding: 40px 20px;
}

h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: -100px auto 40px; 
    position: relative;
    z-index: 2;
    padding-bottom: 2px;
    justify-items: center;
    align-items: center;
}

.btn {
    background-color: #1859b4;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
    justify-content: center;
}

.btn:hover {
    background-color: #5755e8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.5);
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 70px 30px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px; 
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 280px; 
    width: 100%;
    max-width: 320px; 
    margin-left: 20px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.icon {
    width: 90px; 
    height: 90px; 
    position: relative;
    z-index: 1;
}

.icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.category-card:hover .icon svg {
    stroke: #6366f1;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
}

.category-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    position: relative;
    z-index: 1;
}

.seguinte {
    padding: 120px 20px;
    margin: 100px 0;
    position: relative;
    z-index: 2;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.seguinte::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(255, 255, 255, 0.05);
    z-index: -1;
    margin: 0 10%;
}

.seguinte::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    z-index: -1;
    filter: blur(0.5px);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.section-content h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.6);
}

.section-description {
    color: rgba(255, 255, 255, 0.95) !important; /* Forçar cor branca */
    font-size: 1.2rem;
    margin-bottom: 70px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.service-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(168, 85, 247, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(99, 102, 241, 0.7);
    box-shadow: 
        0 30px 80px rgba(99, 102, 241, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-item:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transition: all 0.5s ease;
}

.service-item:hover .service-icon svg {
    stroke: #6366f1;
    filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.8));
    transform: scale(1.1);
}

.service-item h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.service-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* ===================================
   SEÇÃO DE PORTFÓLIO
   =================================== */

.portfolio-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #e9e9e9 100%);
    position: relative;
    text-align: center; /* ADICIONE ESTA LINHA */
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

/* Badge da Seção */
.section-badge {
    display: inline-block; 
    padding: 8px 20px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Título da Seção */
.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descrição da Seção */
.section-description2 {
    font-size: 18px;
    color: #9ea1a5;
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

/* ===================================
   GRID DE PROJETOS
   =================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Card de Projeto */
.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Imagem do Projeto */
.project-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

/* Conteúdo do Card */
.project-content {
    padding: 28px;
    position: relative;
    z-index: 2;
}

/* Categoria do Projeto */
.project-category {
    display: inline-block;
    padding: 6px 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Título do Projeto */
.project-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

/* Descrição do Projeto */
.project-description {
    font-size: 14px;
    color: #64748b; 
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Métricas do Projeto */
.project-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.metric {
    flex: 1;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Link do Projeto */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 12px;
    color: #2563eb;
}

/* ===================================
   GRID DE RECURSOS
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Item de Recurso */
.feature-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

/* Ícone do Recurso */
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Título do Recurso */
.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

/* Texto do Recurso */
.feature-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ===================================
   BOTÃO CTA
   =================================== */
.cta-center {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* ===================================
   SEÇÃO DE VALORES
   =================================== */
.values-section {
    padding: 120px 5%;
    background: #ffffff;
    position: relative;
}

/* Cabeçalho dos Valores */
.values-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

/* Grid de Valores */
.values-grid {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card de Valor */
.value-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

/* Alterna direção dos cards */
.value-card:nth-child(even) {
    direction: rtl;
}

.value-card:nth-child(even) > * {
    direction: ltr;
}

/* Container da Imagem */
.value-image-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Imagem do Valor */
.value-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.value-card:hover .value-image {
    transform: scale(1.1);
}

/* Overlay da Imagem */
.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover .value-overlay {
    opacity: 1;
}

/* Conteúdo do Valor */
.value-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
    text-align: center !important;
}

/* Título do Valor */
.value-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descrição do Valor */
.value-description {
    font-size: 16px;
    color: #b6bbc4;
    margin-bottom: 28px;
    line-height: 1.8;
}

/* Lista de Valores */
.value-list {
    list-style: none;
}

.value-list li {
    padding: 12px 0;
    color: #475569;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

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

.value-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* Badge de Valor */
.value-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    margin-left: auto;
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        grid-template-columns: 1fr;
    }

    .value-card:nth-child(even) {
        direction: ltr;
    }

    .value-content {
        padding: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-section {
        padding: 80px 5%;
    }

    .values-section {
        padding: 80px 5%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
        
    }

    .project-content {
        padding: 20px;
    }

    .value-content {
        padding: 24px;
    }

    .value-title {
        font-size: 24px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 14px;
    }
}
.valores-secao {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.valores-secao::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.valores-secao::after {
    content: "";
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(5deg); }
    66% { transform: translate(-30px, 30px) rotate(-5deg); }
}

.valores-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.valores-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.valores-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 50px;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid #bfdbfe;
}

.valores-header h2 {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1.2px;
    color: #0f172a;
    margin-bottom: 24px;
    background: linear-gradient(120deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.valores-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
    color: #475569;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.valores-header::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
    margin: 32px auto 0;
    border-radius: 3px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
    margin-bottom: 120px;
}

.valor-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease backwards;
}

.valor-card:nth-child(1) { animation-delay: 0.1s; }
.valor-card:nth-child(2) { animation-delay: 0.2s; }
.valor-card:nth-child(3) { animation-delay: 0.3s; }

.valor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.15);
    border-color: transparent;
}

.valor-card:hover::before {
    opacity: 1;
}

.valor-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.valor-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.valor-card:hover .valor-image::before {
    opacity: 1;
}

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

.valor-card:hover .valor-image img {
    transform: scale(1.1);
}

.valor-icon-overlay {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.valor-card:hover .valor-icon-overlay {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.valor-icon-overlay svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.valor-content {
    padding: 56px 40px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.valor-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.valor-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 24px;
}

.valores-lista {
    list-style: none;
    padding: 0;
    margin-top: auto;
    text-align: left;
}

.valores-lista li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.98rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.valores-lista li:last-child {
    border-bottom: none;
}

.valores-lista li:hover {
    padding-left: 8px;
    color: #2563eb;
}

.valores-lista li::before {
    content: "✓";
    color: #2563eb;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #eff6ff;
    border-radius: 50%;
}

.valores-lista li span {
    color: #2563eb;
    font-weight: 600;
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 4px;
}

.trabalhos-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #e4edf7 100%, #ffffff 0%);
    overflow: hidden;
}

.trabalhos-section::before,
.trabalhos-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(10, 179, 60, 0.04) 100%);
    z-index: 0;
}

.trabalhos-section::before {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
}

.trabalhos-section::after {
    width: 350px;
    height: 350px;
    bottom: -150px;
    right: -150px;
}

.trabalhos-wrapper {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #111 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.trabalhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.trabalho-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e8e8e8;
}

.trabalho-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.trabalho-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.trabalho-card:hover .trabalho-image img {
    transform: scale(1.1);
}

.trabalho-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trabalho-card:hover .trabalho-overlay {
    opacity: 1;
}

.trabalho-overlay .btn {
    background: #2563eb;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trabalho-content {
    padding: 30px;
}

.trabalho-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.trabalho-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trabalho-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: #eef2ff;
    color: #2563eb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.equipa-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.equipa-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.equipa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.equipa-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #e8e8e8;
}

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

.equipa-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.equipa-content {
    padding: 30px 25px;
}

.equipa-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.equipa-cargo {
    color: #2563eb;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.equipa-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.equipa-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.testemunhos-section {
    position: relative;
    padding: 120px 20px;
    background: rgb(241, 241, 248);
    overflow: hidden;
}

.testemunhos-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testemunhos-slider {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    overflow: hidden;
}

.testemunhos-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testemunho-card {
    flex: 0 0 100%;
    padding: 20px;
}

.testemunho-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testemunho-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: #eef2ff;
    font-family: Georgia, serif;
}

.testemunho-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testemunho-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eef2ff;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.95rem;
    color: #666;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
}

.slider-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: scale(1.1);
}

.contato-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 70px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    margin:  auto 0;
    max-width: 100%;
    height: 100%;
}

.contato-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contato-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: white;
    pointer-events: none;
}

.contato-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contato-header h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.contato-header p {
    font-size: 1.15rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contato-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    margin: 28px auto 0;
    border-radius: 2px;
}

.formulario-container {
    background: #ffffff;
    border-radius: 28px;
    padding: 60px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.formulario-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.formulario-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.formulario-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.formulario-text h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.formulario-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #2563eb;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-message {
    grid-column: 1 / -1;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: none;
    align-items: center;
    gap: 12px;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    display: flex;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: flex;
}

.contactos-container {
    background: #ffffff;
    border-radius: 28px;
    padding: 60px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contactos-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.contactos-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contactos-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contactos-text h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.contactos-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

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

.contacto-item {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.contacto-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    border-color: #bfdbfe;
}

.contacto-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contacto-item:hover .contacto-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: scale(1.1);
}

.contacto-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #2563eb;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.contacto-item:hover .contacto-icon svg {
    stroke: #ffffff;
}

.contacto-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contacto-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contacto-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.contacto-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contacto-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mapa-container {
    background: #ffffff;
    border-radius: 28px;
    padding: 60px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 1;
}

.mapa-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.mapa-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mapa-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mapa-text h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.mapa-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.mapa-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    margin-bottom: 30px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mapa-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mapa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.mapa-btn.primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    border: 2px solid #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.mapa-btn.secondary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border: 2px solid #bfdbfe;
}

.mapa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.mapa-btn:active {
    transform: translateY(0);
}

.mapa-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* ============================== 
   FOOTER PREMIUM - CORES ATUALIZADAS
================================ */
.footer-premium {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 30px;
    position: relative;
    z-index: 1;
}

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

.footer-about {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    transition: filter 0.3s ease;
}

.footer-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.footer-social-link i {
    font-size: 1rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 8px;
}

.footer-links a:hover i {
    transform: translateX(4px);
    color: #3b82f6;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.footer-contact-list i {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 2px;
}

.footer-contact-list strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-contact-list span {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Seção de imagens - mantém fundo branco */
.img-europe {
    background-color: #ffffff;
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.img-europe img {
    width: 180px;
    height: auto;
    filter: grayscale(100%) brightness(90%) contrast(90%);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.img-europe img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 6px 6px 6px 20px;
    gap: 12px;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-input-group i {
    color: #94a3b8;
    font-size: 1.1rem;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 12px 8px;
}

.newsletter-input-group input::placeholder {
    color: #94a3b8;
}

.newsletter-input-group button {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.newsletter-input-group button i {
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
}

.footer-copyright p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: #cbd5e1;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal .separator {
    color: #64748b;
}

.footer-credits {
    display: flex;
    align-items: center;
}

.footer-credits p {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-credits i {
    color: #ef4444;
    font-size: 0.85rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

.footer-credits strong {
    color: #cbd5e1;
    font-weight: 600;
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 50px;
    }
    
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        grid-column: span 1;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .footer-container {
        padding: 60px 20px 30px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 24px;
    }

    .newsletter-text,
    .newsletter-form {
        min-width: 100%;
    }
}

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

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

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

    .newsletter-input-group {
        flex-direction: column;
        padding: 16px;
    }

    .newsletter-input-group input {
        width: 100%;
        text-align: center;
    }

    .newsletter-input-group button {
        width: 100%;
        justify-content: center;
    }

    .img-europe {
        height: auto;
        padding: 30px 20px;
    }

    .img-europe img {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 50px 16px 24px;
    }

    .footer-newsletter {
        padding: 28px 20px;
    }

    .newsletter-text h4 {
        font-size: 1.25rem;
    }

    .footer-social {
        justify-content: center;
        width: 100%;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-contact-list li {
        flex-direction: column;
        gap: 12px;
    }

    .img-europe img {
        width: 120px;
    }
}