/* =========================================
   VARIÁVEIS CSS E CONFIGURAÇÕES GERAIS
   ========================================= */
:root {
    /* Cores Premium e Modernas (Dark Theme) */
    --primary: #50b0ff;
    /* Blue */
    --secondary: #10006d;
    /* Purple */
    --accent: #0682d4;
    /* Cyan */

    --bg-color: #121212;
    /* Dark gray / neutral */
    --bg-light: #1e1e1e;
    /* Lighter neutral gray */
    --bg-card: rgba(30, 30, 30, 0.7);
    /* Transparent card bg */

    --text-primary: #f8fafc;
    /* Not pure white */
    --text-secondary: #94a3b8;
    /* Slate 400 */
    --text-muted: #64748b;
    /* Slate 500 */

    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transições e Sombras */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TIPOGRAFIA E UTILITÁRIOS
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: var(--primary);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: #080c12;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #ffffff !important;
}

.text-light {
    color: var(--text-secondary) !important;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    min-height: 100vh;
    /* Optional to make sections tall */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

.line {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-top: 5px;
}

.mx-auto {
    margin-inline: auto;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* =========================================
   WATERMARK
   ========================================= */
.watermark-container {
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    opacity: 0.05;
    /* Subtle branding */
    pointer-events: none;
    z-index: 0;
}

/* Posicionamentos específicos */
.wm-hero {
    top: -10%;
    left: -5%;
    width: 50vw;
    max-width: 600px;
}

.wm-about {
    bottom: -5%;
    right: -5%;
    width: 40vw;
    max-width: 500px;
}

.wm-services {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    max-width: 800px;
    opacity: 0.02;
    /* Even more subtle in the middle */
}

.wm-contact {
    bottom: -10%;
    left: -5%;
    width: 30vw;
    max-width: 400px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   HEADER & NAVBAR (PILL-SHAPED FLOAT)
   ========================================= */
.header {
    position: fixed;
    top: 30px;
    /* Floating away from top */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100%;
    height: 70px;
    background: rgba(18, 18, 18, 0.4);
    /* Very transparent dark */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.header.scrolled {
    top: 15px;
    height: 60px;
    background: rgba(15, 15, 15, 0.75);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 25px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    left: -50px;
}

.logo-img {
    height: 85px;
    width: auto;
    position: relative;
    transition: var(--transition);
    top: 4px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.8rem;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
    /* Small tech accent dot/line */
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    /* Above menu */
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 3px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px 0;
    /* Espaço pro header na parte superior */
    background: url('../assets/images/bg_note1.png') center/cover no-repeat;
    overflow: hidden;
}

/* Figma-like abstract background element / smoke effect */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 70vh;
    height: 70vh;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 60vh;
    height: 60vh;
    background: rgba(80, 176, 255, 0.05);
    /* Slight tint to match primary */
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMSkiLz48L3N2Zz4=');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /* Aligns the 3d character to the bottom naturally */
    position: relative;
    height: 100%;
}

.hero-image img {
    max-height: 85vh;
    /* Prevents avatar from being too massive */
    width: auto;
    object-fit: contain;
    position: relative;
    top: 5vh;
    /* Nudges it down so it sits closer to the bottom edge */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 500;
    font-family: var(--font-body);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    font-size: 1.1rem;
    color: #9f9f9f;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-figma {
    border-bottom: 2px solid var(--text-primary);
    padding: 5px 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: none;
    font-size: 1rem;
}

.btn-figma:hover {
    border-bottom-color: var(--primary);
    color: var(--primary);
    transform: none;
    box-shadow: none;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--text-secondary);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    color: var(--primary);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* =========================================
   QUEM SOU (ABOUT)
   ========================================= */
.about-content {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.about-text .role {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-info {
    margin: 15px 0 30px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-info li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.about-info li:last-child {
    margin-bottom: 0;
}

.about-info strong {
    color: var(--text-primary);
    margin-right: 10px;
    display: inline-block;
    width: 60px;
}

/* =========================================
   SERVIÇOS
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-color);
    /* To contrast with bg-light */
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    z-index: -1;
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card:hover::after {
    height: 100%;
}

.service-icon {
    font-size: 3.5rem;
    /* Increased size as requested */
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   EXPERIÊNCIA (TIMELINE)
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 4px solid var(--bg-color);
    border-radius: 50%;
    left: 13px;
    top: 5px;
    z-index: 1;
    box-shadow: 0 0 10px var(--primary);
}

.timeline-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.2);
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.timeline-company {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* =========================================
   PORTFÓLIO
   ========================================= */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 10%, rgba(13, 17, 23, 0.4) 60%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    margin-bottom: 20px;
}

.portfolio-company {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.portfolio-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.portfolio-desc {
    color: #d1d1d1;
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: 2px 2px 1px black;
}

.portfolio-actions {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.portfolio-item:hover .overlay-content,
.portfolio-item:hover .portfolio-actions {
    transform: translateY(0);
}

.portfolio-item.hide {
    display: none;
}

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary);
    text-decoration: none;
}

/* =========================================
   PROJECTS (OPEN SOURCE / BASE)
   ========================================= */
.projects {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media screen and (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.2);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.project-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.7;
}

.project-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.project-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.project-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-tech-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* =========================================
   CONTATO / LINKS
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

/* Cores específicas para marcas */
.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.email {
    background: var(--primary);
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon.linkedin {
    background: #0077b5;
}

.contact-icon.phone {
    background: var(--accent);
}

.contact-icon.website {
    background: #6b7280;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #05080c;
    padding: 30px 0;
    position: relative;
}

.footer-content p {
    color: var(--text-muted);
}

.scroll-top {
    position: absolute;
    right: 40px;
    top: -25px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* =========================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================= */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-top: 50px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        margin-top: 30px;
        justify-content: center;
    }

    .hero-image img {
        max-height: 50vh;
        top: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

@media screen and (max-width: 992px) {
    .header {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: calc(var(--header-height) + 15px);
        /* Abaixo do header pill */
        left: -110%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 19, 33, 0.98);
        /* Fundo com a cor Navy Base */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        padding-bottom: 50px;
        /* Evitar que o menu fique sob a barra do iOS */
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    /* Hamburger Animations */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .section {
        padding: 80px 0;
        min-height: auto;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-item {
        padding-left: 45px;
    }

    .timeline-dot {
        left: 9px;
    }

    .wm-hero {
        width: 80vw;
    }

    .wm-about {
        width: 60vw;
    }

    .wm-services {
        width: 90vw;
    }

    .wm-contact {
        width: 50vw;
    }

    .clients-grid {
        gap: 30px;
        justify-content: space-around;
    }
}

/*Meus Ajustes*/
@media screen and (max-width: 1300px) {
    .hero-image img {
        max-height: 60vh;
    }

    .hero-content {
        width: 80%;
        gap: 20px;

    }

    .hero-title {
        font-size: 3rem;
    }

}

@media screen and (max-width: 992px) {
    .hero-content {
        margin-top: 5rem;
    }
}