/* ===================================
   RESET & GLOBAL STYLES
   =================================== */

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

:root {
    --primary-neon: #00ffff;
    --secondary-neon: #ff00ff;
    --accent-neon: #ff0080;
    --dark-bg: #0a0e27;
    --darker-bg: #050810;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #1a1f3a;
    --glow-blue: #0088ff;
    --glow-pink: #ff0080;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.logo:hover {
    text-shadow: 0 0 20px var(--primary-neon), 0 0 30px rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(0, 255, 255, 0.1);
}

.logo-text {
    color: var(--primary-neon);
}

.logo-accent {
    color: var(--secondary-neon);
    font-size: 28px;
}

.nav-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-neon);
}

.nav-link:hover {
    color: var(--primary-neon);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-neon);
    margin: 5px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--primary-neon);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, 0.05) 25%, rgba(0, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.05) 75%, rgba(0, 255, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 255, 255, 0.05) 25%, rgba(0, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.05) 75%, rgba(0, 255, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.element-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-neon), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-neon), transparent);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--glow-blue), transparent);
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    justify-items: center;
}

.hero-text-center {
    text-align: center !important;
    max-width: 600px;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-neon);
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-info {
    margin-bottom: 30px;
    padding: 15px;
    border-left: 3px solid var(--primary-neon);
    background: rgba(0, 255, 255, 0.05);
    border-radius: 5px;
}

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

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

.hero-avatar {
    animation: slideInRight 0.8s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 50px rgba(0, 255, 255, 0.6)); }
}

/* ===================================
   FLOATING ACTION BUTTONS
   =================================== */

.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border: 2px solid var(--primary-neon);
    background: rgba(10, 14, 39, 0.9);
    color: var(--primary-neon);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: fabPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes fabPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.fab:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.fab-whatsapp {
    border-color: #25d366;
    color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.fab-whatsapp:hover {
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
    background: rgba(37, 211, 102, 0.1);
}

.fab-email {
    border-color: #ff6b6b;
    color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.fab-email:hover {
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.6);
    background: rgba(255, 107, 107, 0.1);
}

.fab-scroll-top {
    border-color: var(--secondary-neon);
    color: var(--secondary-neon);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    background: rgba(10, 14, 39, 0.9);
}

.fab-scroll-top:hover {
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
    background: rgba(255, 0, 255, 0.1);
}

.fab-menu {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(10, 14, 39, 0.9);
    z-index: 1000;
}

.fab-menu:hover {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
    background: rgba(0, 255, 255, 0.1);
}

.fab-menu.active {
    transform: rotate(45deg);
}

/* Mobile menu stack styles */
.floating-actions.mobile-menu-open {
    flex-direction: column-reverse;
}

.floating-actions.mobile-menu-open .fab:not(.fab-menu) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-actions:not(.mobile-menu-open) .fab:not(.fab-menu):not(.fab-scroll-top) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}

/* Stack animation for mobile */
@media (max-width: 768px) {
    .floating-actions.mobile-menu-open .fab-whatsapp {
        animation: stackSlideIn 0.3s ease-out 0.05s forwards;
    }
    
    .floating-actions.mobile-menu-open .fab-email {
        animation: stackSlideIn 0.3s ease-out 0.1s forwards;
    }
    
    .floating-actions.mobile-menu-open .fab-scroll-top {
        animation: stackSlideIn 0.3s ease-out 0.15s forwards;
    }
}

@keyframes stackSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stackSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-neon);
    background: transparent;
    color: var(--primary-neon);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-neon);
    z-index: -1;
    transition: left 0.3s ease;
}

.btn:hover {
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
}

.btn-primary::before {
    background: var(--primary-neon);
}

.btn-secondary {
    border-color: var(--secondary-neon);
    color: var(--secondary-neon);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.btn-secondary::before {
    background: var(--secondary-neon);
}

.btn-secondary:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
    width: 100%;
}

.btn-contact {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.btn-whatsapp::before {
    background: #25d366;
}

.btn-email {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.btn-email::before {
    background: #ff6b6b;
}

/* ===================================
   SECTIONS GENERAL
   =================================== */

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

/* ===================================
   SOBRE SECTION
   =================================== */

.sobre {
    background: linear-gradient(180deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.sobre-text strong {
    color: var(--primary-neon);
    font-weight: 600;
}

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

.highlight-card {
    padding: 25px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.highlight-card:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.highlight-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

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

/* ===================================
   SERVIÇOS SECTION
   =================================== */

.servicos {
    background: linear-gradient(180deg, rgba(20, 25, 60, 0.5) 0%, rgba(10, 14, 39, 1) 100%);
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}

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

.service-card {
    padding: 30px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.05);
    transform: translateY(-10px);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-neon);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    transform: scale(1.2) rotate(10deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-neon);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   PORTFÓLIO SECTION
   =================================== */

.portfolio {
    background: linear-gradient(180deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

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

.portfolio-card {
    background: rgba(10, 14, 39, 0.9);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--secondary-neon);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.15));
    color: var(--primary-neon);
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.portfolio-card:hover .placeholder-image {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(255, 0, 255, 0.25));
}

.portfolio-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-neon);
}

.portfolio-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--primary-neon);
    font-size: 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--primary-neon);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* ===================================
   PROCESSO SECTION
   =================================== */

.processo {
    background: linear-gradient(180deg, rgba(20, 25, 60, 0.5) 0%, rgba(10, 14, 39, 1) 100%);
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}

.processo-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-neon), var(--secondary-neon));
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.timeline-item {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-marker {
    display: flex;
    justify-content: center;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-neon);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    border: 3px solid var(--dark-bg);
}

.timeline-content {
    padding: 25px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-neon);
}

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

/* ===================================
   DEPOIMENTOS SECTION
   =================================== */

.depoimentos {
    background: linear-gradient(180deg, rgba(10, 14, 39, 1) 0%, rgba(20, 25, 60, 0.5) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

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

.depoimento-card {
    padding: 30px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    border-color: var(--secondary-neon);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    transform: translateY(-10px);
}

.depoimento-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.depoimento-info h4 {
    font-size: 16px;
    color: var(--primary-neon);
    margin-bottom: 5px;
}

.depoimento-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

.depoimento-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.depoimento-rating {
    color: var(--primary-neon);
    font-size: 16px;
    letter-spacing: 2px;
}

/* ===================================
   CONTATO SECTION
   =================================== */

.contato {
    background: linear-gradient(180deg, rgba(20, 25, 60, 0.5) 0%, rgba(10, 14, 39, 1) 100%);
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-form {
    background: rgba(0, 255, 255, 0.05);
    padding: 40px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contato-form:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-neon);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.2);
    color: var(--text-primary);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    background: rgba(10, 14, 39, 0.95);
}

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

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    padding: 25px;
    background: rgba(255, 0, 255, 0.05);
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--secondary-neon);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.info-item h4 {
    color: var(--secondary-neon);
    margin-bottom: 10px;
    font-size: 16px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 15px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    color: var(--secondary-neon);
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.social-link svg {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.social-link:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: var(--secondary-neon);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: rgba(5, 8, 16, 0.95);
    border-top: 2px solid rgba(0, 255, 255, 0.2);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--primary-neon);
    margin-bottom: 15px;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-neon);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.social-icon:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-bottom p:first-child {
    color: var(--primary-neon);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        border-bottom: 2px solid rgba(0, 255, 255, 0.2);
        padding: 20px 0;
        gap: 0;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: scaleY(0);
        transform-origin: top;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        max-height: 0;
        overflow: hidden;
    }

    .nav-menu.show {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: scaleY(1);
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        animation: slideInNavItem 0.3s ease-out forwards;
    }

    .nav-menu.show li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .nav-menu.show li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .nav-menu.show li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .nav-menu.show li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .nav-menu.show li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .nav-menu.show li:nth-child(6) {
        animation-delay: 0.3s;
    }

    @keyframes slideInNavItem {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: rgba(0, 255, 255, 0.1);
        padding-left: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .hero-text-center {
        text-align: center !important;
    }

    /* Mobile floating actions menu */
    .floating-actions {
        flex-direction: column;
    }

    .floating-actions .fab:not(.fab-menu):not(.fab-scroll-top) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        position: absolute;
    }

    .floating-actions.mobile-menu-open .fab:not(.fab-menu) {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        position: relative;
    }

    .floating-actions.mobile-menu-open {
        gap: 12px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-avatar {
        max-width: 250px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 32px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

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

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

    .processo-timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-item:nth-child(even) .timeline-content {
        direction: ltr;
    }

    .timeline-marker {
        justify-content: flex-start;
    }

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

    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }
}

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

    .hero-subtitle {
        font-size: 16px;
    }

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

    .nav-container {
        height: 60px;
    }

    .navbar {
        margin-top: 0;
    }

    .hero {
        margin-top: 60px;
    }

    .floating-actions {
        right: 15px;
        bottom: 15px;
        gap: 10px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 20px;
        display: flex !important;
    }

    .floating-actions .fab:not(.fab-menu):not(.fab-scroll-top) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
    }

    .floating-actions.mobile-menu-open .fab:not(.fab-menu) {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        position: relative;
    }

    .service-card,
    .portfolio-card,
    .depoimento-card {
        padding: 20px;
    }

    .contato-form {
        padding: 25px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .floating-actions {
        right: 10px;
        bottom: 10px;
        gap: 8px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .fab {
        width: 45px;
        height: 45px;
        font-size: 18px;
        display: flex !important;
    }
}
