/* style.css - Versão Aprimorada */

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --gradient: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --gray: #64748B;
    --dark: #1E293B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav {
    display: flex !important; /* Força display flex no desktop */
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.btn-contato {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contato:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.btn-contato::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient);
    opacity: 0.1;
    transform: rotate(45deg);
}

.card-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.code-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.floating-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.floating-card p {
    color: var(--gray);
    font-size: 1rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
}

.team {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}
/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    background: var(--light-gray);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member {
    flex: 1;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member:hover .avatar-img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.team-member p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}


.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle.purple {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.1;
    top: 0;
    left: 0;
}

.circle.light-purple {
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    opacity: 0.1;
    bottom: 0;
    right: 0;
}

/* Valores Section */
.values {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Objetivos Section */
.objectives {
    padding: 100px 0;
    background-color: var(--white);
}

.objectives-content {
    max-width: 800px;
    margin: 0 auto;
}

.objective-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.icon-bg {
    position: absolute;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
    z-index: 1;
}

.objective-icon svg {
    position: relative;
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    z-index: 2;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.objective-item:hover {
    transform: translateX(10px);
}

.objective-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 30px;
    opacity: 0.3;
    line-height: 1;
}

.objective-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.objective-text p {
    color: var(--gray);
    line-height: 1.7;
}

/* Visão Section */
.vision {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.vision-text {
    flex: 1;
}

.vision-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.vision-highlight {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.vision-highlight p {
    font-style: italic;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0;
}

.vision-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.graphic-element {
    position: absolute;
    border-radius: 10px;
    background: var(--gradient);
    opacity: 0.1;
}

.graphic-element:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
}

.graphic-element:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 0;
    right: 0;
}

.graphic-element:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: var(--white);
}

/* Projeto em Destaque */
.featured-project {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}

.featured-content {
    flex: 1;
    padding: 50px;
}

.featured-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.featured-content p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.detail h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.detail ul {
    list-style: none;
}

.detail li {
    color: var(--gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.detail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.btn-featured {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(139, 92, 246, 0.4);
}

.featured-visual {
    flex: 1;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.project-showcase {
    width: 100%;
    max-width: 400px;
}

.browser-mockup {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) {
    background: #FF5F57;
}

.browser-dots span:nth-child(2) {
    background: #FFBD2E;
}

.browser-dots span:nth-child(3) {
    background: #28CA42;
}

.browser-content {
    background: var(--white);
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-preview {
    width: 100%;
    padding: 20px;
}

.preview-content {
    text-align: center;
}

.preview-header h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.preview-header p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-item {
    height: 60px;
    background: var(--light-gray);
    border-radius: 5px;
}

/* Outros Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 600;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.project-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-project {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-project:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.project-card.empty {
    background: transparent;
    border: 2px dashed var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    min-height: 200px;
}

.project-card.empty:hover {
    transform: none;
    box-shadow: none;
}

.empty-content {
    text-align: center;
    color: var(--gray);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo p {
    color: #94A3B8;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    color: #94A3B8;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .featured-project {
        flex-direction: column;
    }
    
    .featured-visual {
        padding: 0 30px 30px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .team {
        flex-direction: column;
    }
    
    .vision-content {
        flex-direction: column;
    }
    
    .project-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .objective-item {
        flex-direction: column;
        text-align: center;
    }
    
    .objective-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .floating-card {
        width: 250px;
        height: 250px;
    }
    
    .featured-content {
        padding: 30px;
    }
}

/* Logo Flutuante no Hero */
.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.2);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 20px;
    animation-delay: 1.5s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 10px;
    animation-delay: 2.5s;
}

/* Objetivos - Design Melhorado */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.objective-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-icon {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-bg {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.objective-icon svg {
    position: absolute;
    left: 8px;
    color: var(--primary-color);
}

.objective-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.objective-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.objective-features {
    list-style: none;
}

.objective-features li {
    color: var(--gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.objective-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Timeline do Processo */
.process {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    position: relative;
    width: 120px;
    flex-shrink: 0;
}

.marker-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 2;
}

.marker-line {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -50px;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-left: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.timeline-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: var(--gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsividade da Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        width: 60px;
    }
    
    .marker-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .marker-line {
        left: 25px;
    }
    
    .timeline-content {
        margin-left: 15px;
        padding: 20px;
    }
}

.logo-pura {
    width: 580px;
    height: 580px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 25px rgba(139, 92, 246, 0.4));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.browser-mockup {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.browser-header {
    background: #f8f9fa;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e9ecef;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #FF5F57;
}

.browser-dots span:nth-child(2) {
    background: #FFBD2E;
}

.browser-dots span:nth-child(3) {
    background: #28CA42;
}

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    border: 1px solid #e9ecef;
}

.browser-content {
    background: var(--white);
    height: 300px;
    overflow: hidden;
}

.project-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-screenshot--contain {
    object-fit: contain;
    object-position: center;
    background: #ffffff;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #20bd5a;
}

.whatsapp-link svg {
    filter: drop-shadow(0 2px 4px rgb(255, 255, 255));
    color: white; /* ADICIONE ESTA LINHA */
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(255, 255, 255);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Esconde tooltip no mobile */
    }
}

/* Processo em 2 Colunas */
.process-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step-large {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.process-step-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number-large {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content-large {
    flex: 1;
}

.step-content-large h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.step-content-large p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Ajusta a altura da seção */
.process {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Responsividade */
@media (max-width: 768px) {
    .process-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step-large {
        padding: 20px;
    }
    
    .step-number-large {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .step-content-large h3 {
        font-size: 1.2rem;
    }
}

/* Seção Contato */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

/* Card WhatsApp */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 40px 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.4);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.whatsapp-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.whatsapp-info p {
    opacity: 0.9;
    margin: 0;
}

.whatsapp-card > p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #25D366;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Seção Telefones */
.phones-section {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
}

.phones-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
    font-weight: 700;
}

.phones-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.phone-info {
    flex: 1;
}

.phone-name {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.phone-number {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-card {
        padding: 30px 20px;
    }
    
    .phones-section {
        padding: 30px 20px;
    }
    
    .phone-item:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .whatsapp-header {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .phone-item:hover {
        transform: translateY(-5px);
    }
}

/* Seção Contato - Layout Lateral */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-lateral {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
    align-items: start;
}

/* Botões Verticais Quadrados */
.contact-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn-square {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-btn-square:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-btn-square.whatsapp .btn-icon {
    background: #25D366;
}

.contact-btn-square.email .btn-icon {
    background: var(--primary-color);
}

.contact-btn-square.instagram .btn-icon {
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.btn-icon svg {
    color: white;
}

.btn-text {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Telefones Compactos */
.phones-enhanced {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.phones-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.phones-header h4 {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.phones-header p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

.phones-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-enhanced:hover {
    border-color: var(--primary-color);
    transform: translateX(3px);
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.phone-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.phone-info {
    flex: 1;
}

.phone-name {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}

.phone-number {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-dark);
}

/* Ajuste na grid para melhor proporção */
.contact-lateral {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    align-items: start;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-lateral {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
    }
    
    .phones-enhanced {
        padding: 20px;
    }
    
    .phone-enhanced {
        padding: 12px;
        gap: 10px;
    }
    
    .phone-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .phone-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .phone-enhanced:hover {
        transform: translateY(-3px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-lateral {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .contact-btn-square {
        padding: 15px;
    }
    
    .phones-side {
        padding: 25px;
    }
    
    .phone-side {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-btn-square {
        gap: 12px;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
}

/* About Section - Versão Simplificada */
.about-content-simple {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text-simple {
    padding: 20px 0;
}

.about-text-simple p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-motto-simple {
    font-style: italic;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    color: var(--dark) !important;
    font-weight: 500;
    margin-top: 30px !important;
    text-align: center;
}

.team-photo-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-photo-placeholder-horizontal {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.photo-placeholder-text-horizontal {
    text-align: center;
    color: white;
    z-index: 2;
}

.photo-placeholder-text-horizontal svg {
    margin-bottom: 12px;
    opacity: 0.8;
}

.photo-placeholder-text-horizontal span {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

/* Efeito sutil na foto */
.team-photo-placeholder-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.team-photo-horizontal:hover .team-photo-placeholder-horizontal::before {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 968px) {
    .about-content-simple {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-photo-placeholder-horizontal {
        height: 200px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-content-simple {
        gap: 30px;
    }
    
    .team-photo-placeholder-horizontal {
        height: 180px;
    }
    
    .photo-placeholder-text-horizontal svg {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .photo-placeholder-text-horizontal span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-photo-placeholder-horizontal {
        height: 150px;
    }
    
    .team-motto-simple {
        padding: 15px;
        font-size: 0.95rem;
    }
}
/* Process Section - Versão com Ícones e Números */
.process-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-card-enhanced {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.process-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.step-number-badge {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-card-enhanced:hover .step-icon-circle {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step-icon-circle svg {
    width: 20px;
    height: 20px;
}

.process-card-enhanced h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.process-card-enhanced p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Linhas conectivas */
.connector-right,
.connector-down {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.3;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.process-card-enhanced:hover ~ .connector-right,
.process-card-enhanced:hover ~ .connector-down {
    opacity: 0.6;
}

/* Linha para a direita (entre cards da mesma linha) */
.connector-right {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
}

/* Linha para baixo (da linha 1 para linha 2) */
.connector-down {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
}

/* Remove conectores dos últimos cards de cada linha */
.process-card-enhanced:nth-child(3) .connector-right,
.process-card-enhanced:nth-child(6) .connector-right {
    display: none;
}

/* Remove conector down do último card da primeira linha */
.process-card-enhanced:nth-child(3) .connector-down {
    display: none;
}

/* Responsividade */
@media (max-width: 968px) {
    .process-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 700px;
    }
    
    /* Ajusta conectores para grid 2x3 */
    .process-card-enhanced:nth-child(2) .connector-right,
    .process-card-enhanced:nth-child(4) .connector-right,
    .process-card-enhanced:nth-child(5) .connector-right {
        display: none;
    }
    
    .process-card-enhanced:nth-child(2) .connector-down,
    .process-card-enhanced:nth-child(4) .connector-down {
        display: block;
    }
    
    .connector-right {
        right: -20px;
        width: 25px;
    }
    
    .connector-down {
        bottom: -25px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .process-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }
    
    /* Esconde todas as linhas no mobile */
    .connector-right,
    .connector-down {
        display: none !important;
    }
    
    .process-card-enhanced {
        padding: 30px 20px;
    }
    
    .step-header {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .process-grid-enhanced {
        gap: 20px;
    }
    
    .process-card-enhanced {
        padding: 25px 15px;
    }
    
    .step-header {
        gap: 10px;
    }
    
    .step-number-badge {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-icon-circle {
        width: 35px;
        height: 35px;
    }
    
    .step-icon-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .process-card-enhanced h3 {
        font-size: 1.1rem;
    }
}

/* Footer Aprimorado */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Logo do Footer */
.footer-about {
    padding-right: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.logo-text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
}

.logo-text span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-description {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    border-color: var(--primary-color);
}

/* Colunas */
.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-light);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 12px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Informações de Contato */
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #94A3B8;
    font-size: 0.95rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
}

/* Newsletter */
.newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.newsletter p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #94A3B8;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #334155;
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        gap: 20px;
    }
    
    .logo-wrapper {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 45px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
}

.footer-logo-img {
    width: 100px;  /* Ajuste o tamanho conforme necessário */
    height: 100px;
    border-radius: 12px;
    object-fit: contain;
    right: 10px;
    
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 20px;
    right: 10px;
}

.team-icon-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.team-icon-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-content-simple {
        flex-direction: column;
        gap: 2rem;
    }
    
    .team-icon-img {
        width: 100px;
        height: 100px;
    }
}

/* Menu Mobile - Corrigido */
@media (max-width: 768px) {
    /* Esconder nav por padrão no mobile */
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 30px 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
    }
    
    /* Mostrar nav quando active */
    .nav.active {
        display: block !important;
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav.active ul {
        flex-direction: column;
        gap: 0;
        animation: slideInUp 0.5s ease 0.2s both;
    }
    
    .nav.active li {
        width: 100%;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }
    
    /* Animação escalonada para os itens */
    .nav.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav.active li:nth-child(6) { animation-delay: 0.35s; }
    .nav.active li:nth-child(7) { animation-delay: 0.4s; }
    
    .nav.active li:last-child {
        border-bottom: none;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 2px solid rgba(139, 92, 246, 0.2);
    }
    
    .nav.active a {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        text-align: center;
        color: var(--dark);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        font-weight: 500;
    }
    
    .nav.active a:hover {
        color: var(--primary-color);
        transform: translateX(10px);
    }
    
    .nav.active a::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gradient);
        border-radius: 2px;
        transition: height 0.3s ease;
    }
    
    .nav.active a:hover::before {
        height: 20px;
    }
    
    .btn-contato {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        padding: 15px 20px;
        background: var(--gradient);
        color: white !important;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
    }
    
    .btn-contato:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    }
    
    /* REMOVENDO o overlay de fundo escuro */
    /* .nav::before {
        display: none;
    } */
    
.menu-toggle {
    display: none; /* Escondido no desktop */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* RESPONSIVIDADE CORRIGIDA */
@media (max-width: 768px) {
    /* Esconde a nav no mobile por padrão */
    .nav {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 30px 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
    }
    
    /* Mostra a nav quando active */
    .nav.active {
        display: block !important;
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav.active ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav.active li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav.active li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }
    
    .nav.active a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .btn-contato {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Mostra o menu toggle no mobile */
    .menu-toggle {
        display: flex !important;
    }
    
    /* Suas animações do hamburguer aqui */
    .menu-toggle {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background-color: var(--dark);
        position: absolute;
        left: 3.5px;
        transition: all 0.3s ease;
        transform-origin: center;
        border-radius: 2px;
    }

    .menu-toggle span:nth-child(1) {
        top: 9px;
    }

    .menu-toggle span:nth-child(2) {
        top: 16px;
    }

    .menu-toggle span:nth-child(3) {
        top: 23px;
    }

    /* X PERFEITAMENTE SIMÉTRICO */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 16px;
        background-color: var(--primary-color);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 16px;
        background-color: var(--primary-color);
    }
}
    
    /* Prevenir scroll quando menu aberto */
    body.no-scroll {
        overflow: hidden;
    }
    
    /* REMOVER completamente qualquer overlay escuro */
    .nav::before,
    .nav::after {
        display: none !important;
    }
}

/* Animações Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de fechamento suave */
@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}
