/* Variáveis e Reset */
:root {
    --fiap-primary: #E31C79; /* Rosa FIAP */
    --fiap-secondary: #00AEEF; /* Azul FIAP */
    --fiap-dark: #0A0A0A;
    --fiap-light: #FFFFFF;
    --fiap-gray: #F2F2F2;
    --fiap-code: #00FF9D; /* Verde para códigos */
    
    --header-height: 80px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--fiap-light);
    color: var(--fiap-dark);
    overflow-x: hidden;
}

/* Partículas de Fundo */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

/* Cursor Personalizado */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--fiap-primary);
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--fiap-primary);
    transition: all 0.3s ease-out;
}

body:hover .cursor {
    width: 12px;
    height: 12px;
}

/* Header FIAP */
.fiap-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--fiap-dark);
    text-decoration: none;
}

.logo-bracket {
    color: var(--fiap-primary);
}

.logo-name {
    margin: 0 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-link {
    position: relative;
    margin-left: 30px;
    color: var(--fiap-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link span {
    position: relative;
}

.nav-link span::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--fiap-primary);
    transition: width 0.3s;
}

.nav-link:hover span::before,
.nav-link.active span::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--fiap-primary);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fiap-dark);
    transition: all 0.3s;
}

/* Hero Section */
.fiap-hero {
    padding: 180px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.highlight {
    color: var(--fiap-primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(227, 28, 121, 0.2);
    z-index: -1;
}

.code-symbol {
    color: var(--fiap-code);
    font-family: monospace;
    margin-right: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--fiap-dark);
    opacity: 0.8;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Botões FIAP */
.fiap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--fiap-primary);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.fiap-btn i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.fiap-btn:hover {
    background-color: #c91668;
    transform: translateY(-2px);
}

.fiap-btn:hover i {
    transform: translateX(5px);
}

.fiap-btn.secondary {
    background-color: transparent;
    color: var(--fiap-primary);
    border: 2px solid var(--fiap-primary);
}

.fiap-btn.secondary:hover {
    background-color: rgba(227, 28, 121, 0.1);
}

.fiap-btn.outline {
    background-color: transparent;
    color: var(--fiap-dark);
    border: 2px solid var(--fiap-dark);
}

.fiap-btn.outline:hover {
    background-color: var(--fiap-dark);
    color: white;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fiap-primary), var(--fiap-secondary));
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.tech-circle {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tech-circle.small {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 30%;
    animation-delay: 1s;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -55%) rotate(5deg);
    }
}

/* Seções */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--fiap-dark);
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.expertise-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--fiap-primary), var(--fiap-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--fiap-dark);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.skill-tags li {
    background-color: var(--fiap-gray);
    color: var(--fiap-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    display: block;
    text-decoration: none;
    color: var(--fiap-dark);
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.view-project {
    color: white;
    display: flex;
    align-items: center;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.3s 0.1s;
}

.view-project i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-overlay h3,
.project-card:hover .view-project {
    transform: translateY(0);
}

.project-card:hover .view-project i {
    transform: translateX(5px);
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--fiap-dark);
    opacity: 0.7;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Footer FIAP */
.fiap-footer {
    background-color: var(--fiap-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--fiap-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--fiap-primary);
    transform: translateY(-3px);
}

.footer-email {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--fiap-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright, .fiap-alumni {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.fiap-alumni {
    font-weight: 600;
    color: var(--fiap-primary);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-visual {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 50px;
        transform: none;
    }
    
    .fiap-hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Página de Projetos */
.projects-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.fiap-filters {
    padding: 20px 0;
    background-color: var(--fiap-gray);
    margin-bottom: 60px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid var(--fiap-dark);
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: var(--fiap-dark);
    color: white;
}

.filter-btn.active {
    background-color: var(--fiap-primary);
    border-color: var(--fiap-primary);
    color: white;
}

.projects-page .projects-grid {
    margin-bottom: 80px;
}

/* Página Sobre */
.about-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--fiap-primary);
    border-radius: 10px;
    z-index: 1;
}

/* Timeline */
.fiap-timeline {
    padding: 80px 0;
    background-color: var(--fiap-gray);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 150px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100px;
    width: 2px;
    height: 100%;
    background-color: var(--fiap-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-date {
    position: absolute;
    left: -150px;
    top: 0;
    width: 100px;
    text-align: right;
    font-weight: 600;
    color: var(--fiap-primary);
}

.timeline-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--fiap-dark);
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--fiap-primary);
}

.timeline-content p {
    color: var(--fiap-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Página Contato */
.contact-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.contact-info {
    padding-right: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--fiap-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--fiap-dark);
}

.info-content a, .info-content p {
    color: var(--fiap-dark);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
}

.info-content a:hover {
    color: var(--fiap-primary);
    opacity: 1;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons .social-link {
    width: 40px;
    height: 40px;
    background-color: var(--fiap-dark);
    color: white;
}

.social-icons .social-link:hover {
    background-color: var(--fiap-primary);
}

/* Formulário */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--fiap-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fiap-primary);
    box-shadow: 0 0 0 2px rgba(227, 28, 121, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Galeria de Projetos */
.projects-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.fiap-filters {
    padding: 30px 0;
    background-color: var(--fiap-gray);
    margin-bottom: 60px;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid var(--fiap-dark);
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: var(--fiap-dark);
    color: white;
}

.filter-btn.active {
    background-color: var(--fiap-primary);
    border-color: var(--fiap-primary);
    color: white;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 40px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--fiap-primary);
    box-shadow: 0 0 0 3px rgba(227, 28, 121, 0.2);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fiap-dark);
    opacity: 0.6;
}

.projects-gallery .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.project-tags span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.view-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--fiap-primary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-right: 10px;
}

.view-btn:hover {
    background-color: #c91668;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.gallery-btn:hover {
    background-color: var(--fiap-primary);
}

.project-meta {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: white;
}

.project-client {
    font-weight: 600;
    color: var(--fiap-dark);
}

.project-year {
    color: var(--fiap-dark);
    opacity: 0.7;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
}

.no-results p {
    color: var(--fiap-dark);
    opacity: 0.7;
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .projects-gallery .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tags {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .project-image {
        height: 200px;
    }
    
    .view-btn, .gallery-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
    }
}

/* Hero Mobile */
.mobile-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.mobile-hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-devices {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 50%;
    max-width: 600px;
    animation: float-devices 6s ease-in-out infinite;
}

.hero-devices img {
    width: 100%;
    height: auto;
}

@keyframes float-devices {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Galeria Mobile */
.mobile-gallery .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.mobile-gallery .project-image {
    height: 500px;
    position: relative;
}

.mobile-gallery .project-image img {
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 20px;
}

.mobile-gallery .project-overlay {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
}

.mobile-gallery .project-tags span {
    background-color: rgba(227, 28, 121, 0.2);
    color: white;
}

/* Efeito de dispositivo mobile */
.mobile-device-frame {
    position: relative;
    width: 100%;
    padding-bottom: 200%;
    background-color: #f5f5f5;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-device-screen {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    overflow: hidden;
    border-radius: 20px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-devices {
        position: relative;
        width: 100%;
        margin-top: 50px;
        bottom: auto;
        right: auto;
    }
    
    .mobile-hero {
        padding: 150px 0 80px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-gallery .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-gallery .project-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .mobile-gallery .project-image {
        height: 300px;
    }
    
    .mobile-hero .hero-title {
        font-size: 2.5rem;
    }
}

/* Página de Artigos */
.articles-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.articles-hero .hero-visual img {
    max-width: 500px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

/* Grid de Artigos */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.article-card.code-article {
    border-left: 4px solid var(--fiap-code);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card.featured .article-image {
    height: 100%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.reading-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.article-content {
    padding: 20px;
}

.article-card.featured .article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.article-category {
    color: var(--fiap-primary);
    font-weight: 600;
}

.article-date {
    color: var(--fiap-dark);
    opacity: 0.7;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--fiap-dark);
}

.article-card.featured .article-title {
    font-size: 1.8rem;
}

.article-excerpt {
    color: var(--fiap-dark);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: var(--fiap-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover {
    color: #c91668;
}

.read-more:hover i {
    transform: translateX(5px);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tags span {
    background-color: var(--fiap-gray);
    color: var(--fiap-dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Seção Publicações */
.fiap-publications {
    padding: 80px 0;
    background-color: var(--fiap-gray);
}

.publications-tabs {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--fiap-dark);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--fiap-primary);
    transition: width 0.3s;
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn.active {
    color: var(--fiap-primary);
}

.tab-btn:hover {
    background-color: rgba(227, 28, 121, 0.05);
}

.tab-pane {
    display: none;
    padding: 30px;
}

.tab-pane.active {
    display: block;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.publication-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.publication-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.publication-logo img {
    max-width: 60px;
    max-height: 60px;
}

.publication-content {
    flex: 1;
}

.publication-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--fiap-dark);
}

.publication-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--fiap-dark);
}

.publication-meta {
    font-size: 0.9rem;
    color: var(--fiap-dark);
    opacity: 0.7;
    margin-bottom: 10px;
}

.download-btn, .external-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: var(--fiap-gray);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.download-btn {
    color: var(--fiap-primary);
}

.external-link {
    color: var(--fiap-secondary);
}

.download-btn:hover {
    background-color: rgba(227, 28, 121, 0.1);
}

.external-link:hover {
    background-color: rgba(0, 174, 239, 0.1);
}

/* Seção Arquivo */
.fiap-archive {
    padding: 80px 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.archive-filter {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.archive-filter h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--fiap-dark);
}

.filter-options select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--fiap-gray);
}

.filter-options select:focus {
    outline: none;
    border-color: var(--fiap-primary);
}

.archive-results {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.archive-article {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.archive-article:hover {
    background-color: rgba(227, 28, 121, 0.05);
}

.article-date {
    width: 100px;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--fiap-dark);
    opacity: 0.7;
}

.archive-article .article-title {
    flex: 1;
    font-size: 1.1rem;
    margin: 0;
    color: var(--fiap-dark);
}

.archive-article .article-category {
    width: 120px;
    text-align: center;
    font-size: 0.8rem;
    padding: 3px 0;
    border-radius: 20px;
    background-color: var(--fiap-gray);
}

.article-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fiap-primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.article-link:hover {
    background-color: #c91668;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .article-card.featured {
        grid-template-columns: 1fr;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-filter {
        position: static;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .publication-card {
        flex-direction: column;
        text-align: center;
    }
    
    .archive-article {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .article-date, .article-category {
        width: auto;
    }
    
    .article-link {
        margin-left: auto;
    }
}