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

:root {
    --bg-primary: #0A0A0F;
    --bg-secondary: #111118;
    --bg-card: #16161D;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --accent-purple: #8B5CF6;
    --accent-cyan: #22D3EE;
    --border-color: #2D2D3A;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar customizada porque sim. Gastamos 2 horas nisso */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-cyan), var(--accent-purple));
    background-size: 100% 200%;
    border-radius: 6px;
    border: 2px solid var(--bg-primary);
    animation: scrollbar-pulse 3s ease-in-out infinite;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
    background-size: 100% 200%;
}

@keyframes scrollbar-pulse {
    0%, 100% {
        background-position: 0% 0%;
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    }
    50% {
        background-position: 0% 100%;
        box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-primary);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo img {
    height: 32px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--text-primary);
}

.btn-contact {
    background: var(--accent-purple) !important;
    color: var(--text-primary) !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    font-weight: 500;
}

.btn-contact:hover {
    opacity: 0.9;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.highlight-cyan {
    color: var(--accent-cyan);
}

.highlight-purple {
    color: var(--accent-purple);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.powered-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
}

.powered-badge strong {
    color: var(--accent-purple);
}

.powered-badge a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.impulso-studio-logo {
    height: 16px;
    width: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.powered-badge a:hover .impulso-studio-logo {
    transform: scale(1.05);
}

.impulso-studio-logo-table {
    height: 14px;
    width: auto;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.check a:hover .impulso-studio-logo-table {
    transform: scale(1.05);
}

.check a {
    color: inherit;
    text-decoration: none;
}

.check a:hover {
    color: var(--accent-cyan);
}

/* Botão principal. Se mudar a cor, o designer chora */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #22D3EE, #8B5CF6);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Efeito de brilho. Ficou bonito né? A gente também achou */
.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    animation: levitate 4s ease-in-out infinite;
}

/* Animação do astronauta. Parece fácil né? Não é */
@keyframes levitate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

.tools {
    padding: 60px 0;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.tools-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tools-track {
    display: flex;
    gap: 48px;
    animation: scroll 20s linear infinite;
}

.tool-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 0 40px;
}

.tool-name:hover {
    opacity: 1;
    color: var(--text-primary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.15));
    }
    50% {
        opacity: 1;
        background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(139, 92, 246, 0.2));
    }
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes neon-border {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.5),
            0 0 40px rgba(34, 211, 238, 0.3),
            inset 0 0 30px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(34, 211, 238, 0.5),
            0 0 60px rgba(139, 92, 246, 0.3),
            inset 0 0 40px rgba(34, 211, 238, 0.1);
    }
}

.methodology {
    padding: 100px 0;
}

.section-label {
    color: var(--accent-purple);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.methodology h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 24px;
}

.methodology-text {
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 60px;
}

.methodology-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.method-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.3), rgba(34, 211, 238, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate-gradient 3s linear infinite;
    z-index: -1;
}

.method-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    background: rgba(22, 22, 29, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(34, 211, 238, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 60px rgba(139, 92, 246, 0.1);
}

.method-card:hover::before {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.method-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-purple);
}

.method-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.method-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Metrics Section */
.metrics {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.1));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Números grandes pra impressionar. Marketing 101 */
.metric-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .metric-number {
        font-size: 36px;
    }
}

/* Seção de clientes. Carrossel infinito que quase nos enlouqueceu */
.clients {
    padding: 100px 0;
}

.clients h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.clients .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.clients-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 48px;
    animation: scroll 25s linear infinite;
}

.clients-track img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clients-track img:hover {
    opacity: 1;
}

.comparison {
    padding: 100px 0;
}

.comparison h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.comparison-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table.three-cols .table-header,
.comparison-table.three-cols .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comparison-table.three-cols .table-header,
.comparison-table.three-cols .table-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.col-agencies, .col-freelancers {
    text-align: center;
}

.highlight-text {
    color: var(--accent-cyan);
    font-weight: 600;
}

.neutral-text {
    color: var(--text-secondary);
}

.warning-text {
    color: #F59E0B;
}

.table-header {
    background: var(--bg-secondary);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.table-header > div,
.table-row > div {
    padding: 16px 24px;
}

.table-row {
    border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.highlight-row {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
}

.comparison-impact {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    font-style: italic;
    margin-top: 32px;
    padding: 24px;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 12px;
    border-left: 3px solid var(--accent-purple);
}

.col-impulso {
    text-align: center;
    background: rgba(139, 92, 246, 0.1);
}

.col-others {
    text-align: center;
}

.check {
    color: #22C55E;
    font-size: 18px;
}

.x {
    color: #EF4444;
    font-size: 18px;
}

.services {
    padding: 100px 0;
}

.services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.services .section-description {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(34, 211, 238, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: transparent;
    background: rgba(22, 22, 29, 0.6);
    backdrop-filter: blur(20px);
    animation: neon-border 2s ease-in-out infinite;
}

.service-card:hover::before {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-purple);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: "•";
    color: var(--accent-purple);
    position: absolute;
    left: 0;
}

.contact-form {
    padding: 100px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
}

.form-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.check-icon {
    color: #22C55E;
    font-size: 18px;
}

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

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

.form-group label {
    font-size: 14px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

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

.btn-submit {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.btn-submit:hover {
    background: var(--accent-purple);
}

.case-study {
    padding: 100px 0;
    text-align: center;
}

.case-study h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.case-carousel {
    margin-top: 40px;
}

.case-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: var(--accent-purple);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.case-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.case-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.case-slide.active {
    display: block;
}

.case-slide img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.case-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.case-nav-btn {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-nav-btn:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
}

.case-dots {
    display: flex;
    gap: 10px;
}

.case-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-dot.active {
    background: var(--accent-purple);
    transform: scale(1.2);
}

.team {
    padding: 100px 0;
}

.team h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.team .section-description {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: transparent;
    background: rgba(22, 22, 29, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 25px rgba(139, 92, 246, 0.5),
        0 0 50px rgba(34, 211, 238, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.5);
}

.team-card:hover::before {
    opacity: 1;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.team-card:hover .member-image {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(34, 211, 238, 0.4);
    transform: scale(1.1);
}

.member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: var(--bg-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--accent-purple);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-card .description {
    color: var(--text-secondary);
    font-size: 12px;
}

.footer {
    position: relative;
    overflow: hidden;
}

.footer-bg {
    background: linear-gradient(135deg, #1a1a3e 0%, #0d1b3e 50%, #0a1628 100%);
    padding: 60px 0;
    position: relative;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo img {
    height: 36px;
    margin-bottom: 8px;
}

.footer-company {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.footer-legal,
.footer-cnpj {
    color: var(--text-secondary);
    font-size: 12px;
}

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

.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-email:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.footer-email svg {
    width: 20px;
    height: 20px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-astronaut {
    width: 80px;
    flex-shrink: 0;
}

.footer-astronaut img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }
    
    .methodology-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-primary);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        margin: 0 auto 32px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .glow-effect {
        width: 250px;
        height: 250px;
    }
    
    .methodology-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table.three-cols .table-header,
    .comparison-table.three-cols .table-row,
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        margin-bottom: 12px;
        border-radius: 12px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
    }
    
    .table-row > div {
        padding: 8px 0;
        text-align: left;
    }
    
    .table-row > div:first-child {
        font-weight: 600;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
        margin-bottom: 8px;
    }
    
    .col-impulso, .col-agencies, .col-freelancers, .col-others {
        text-align: left;
        background: transparent;
    }
    
    .col-impulso::before {
        content: "ImpulsoTech: ";
        color: var(--accent-purple);
        font-weight: 600;
    }
    
    .col-agencies::before {
        content: "Agências: ";
        color: var(--text-secondary);
        font-weight: 600;
    }
    
    .col-freelancers::before {
        content: "Freelancers: ";
        color: var(--text-secondary);
        font-weight: 600;
    }
    
    .col-others::before {
        content: "Outros: ";
        color: var(--text-secondary);
        font-weight: 600;
    }
    
    .table-row.highlight-row {
        border: 1px solid rgba(139, 92, 246, 0.4);
    }
    
    .impulso-studio-logo-table {
        height: 12px;
    }
    
    .footer .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-astronaut {
        display: none;
    }
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    font-size: 13px;
}

.footer-legal-links a {
    color: #FFFFFF !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-purple);
}

.footer-legal-links span {
    color: var(--border-color);
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology h2,
    .clients h2,
    .comparison h2,
    .services h2,
    .case-study h2,
    .team h2 {
        font-size: 28px;
    }
    
    .comparison-impact {
        font-size: 14px;
        padding: 16px;
    }
}
