/* Font Faces */
@font-face {
    font-family: 'Timun';
    src: url('fonts/Timun-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Surgena';
    src: url('fonts/surgenapersonaluseonlysembd-q2qwd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halfre';
    src: url('fonts/halfre.otf') format('opentype'),
         url('fonts/halfre.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --ice-white: #f0f4f8;
    --border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

html, body {
    min-height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Halfre', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--ice-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    padding: 20px 0;
    overflow: visible;
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    opacity: 0.3;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: auto;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    color: var(--ice-white);
    text-shadow: 0 0 10px rgba(240, 244, 248, 0.2);
}

.logo-tagline {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ice-white) !important;
    margin-top: -2px;
    text-shadow: 0 0 10px rgba(240, 244, 248, 0.3);
}

.nav {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.nav a {
    color: var(--ice-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-shadow: 0 0 10px rgba(240, 244, 248, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav a:hover {
    color: var(--ice-white);
    text-shadow: 0 0 15px rgba(240, 244, 248, 0.4);
}

.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--ice-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    text-shadow: 0 0 10px rgba(240, 244, 248, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    top: 0;
    bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: -5px 0 15px rgba(255, 255, 255, 0.4),
                5px 0 15px rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover::before {
    box-shadow: -8px 0 20px rgba(255, 255, 255, 0.6),
                8px 0 20px rgba(255, 255, 255, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    font-family: 'Timun', 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    color: var(--ice-white);
    text-shadow: 0 0 20px rgba(240, 244, 248, 0.3);
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    color: var(--ice-white) !important;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 15px rgba(240, 244, 248, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    background-color: transparent;
    color: var(--ice-white);
    position: relative;
    text-shadow: 0 0 10px rgba(240, 244, 248, 0.3);
}

.btn-hero::before {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    top: 0;
    bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: -5px 0 15px rgba(255, 255, 255, 0.4),
                5px 0 15px rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.btn-hero:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
}

.btn-hero:hover::before {
    box-shadow: -8px 0 20px rgba(255, 255, 255, 0.6),
                8px 0 20px rgba(255, 255, 255, 0.6);
}

.btn-outline {
    background-color: transparent;
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom center, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-name: float, pulse;
    animation-duration: 25s, 8s;
    animation-iteration-count: infinite, infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%);
    top: 40%;
    right: -5%;
    animation-delay: 3s;
    animation-name: float, pulse;
    animation-duration: 30s, 10s;
    animation-iteration-count: infinite, infinite;
}

.shape-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%);
    bottom: -10%;
    left: 45%;
    animation-delay: 6s;
    animation-name: float, pulse;
    animation-duration: 28s, 12s;
    animation-iteration-count: infinite, infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95) rotate(180deg);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05) rotate(270deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}

/* Section Styles */
section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.section-title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.projects .section-title {
    margin-top: 100px;
}

.section-subtitle {
    text-align: center;
    color: var(--ice-white) !important;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(240, 244, 248, 0.2);
}

/* Projects Section */
.projects {
    background-color: var(--bg-secondary);
    position: relative;
    padding-top: 30px;
    padding-bottom: 10px;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, rgba(0, 0, 0, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.projects-category {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.projects-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 35px;
    font-weight: 600;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    color: var(--ice-white);
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gov-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.2), rgba(0, 105, 92, 0.2));
    border: 1px solid rgba(0, 150, 136, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 200, 180, 1);
    text-shadow: 0 0 10px rgba(0, 200, 180, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.gov-projects {
    margin-bottom: 0;
    grid-template-columns: repeat(3, 1fr);
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .gov-projects {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid:not(.gov-projects) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%) brightness(0.8) contrast(1.1);
}

.project-img.project-logo {
    object-fit: contain;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    filter: none;
}

.project-card:hover .project-img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.9) contrast(1.2);
}

.project-card:hover .project-img.project-logo {
    filter: none;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
}

.project-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
}

.project-title-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    color: var(--ice-white) !important;
    text-shadow: 0 0 15px rgba(240, 244, 248, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.projects-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 40px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.project-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--ice-white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 32px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    color: var(--ice-white) !important;
    text-shadow: 0 0 15px rgba(240, 244, 248, 0.3);
    letter-spacing: -0.02em;
    margin: 0;
}

.modal-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.9), rgba(0, 105, 92, 0.9));
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 150, 136, 0.3);
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    align-self: flex-start;
}

.modal-link-btn:hover {
    background: linear-gradient(135deg, rgba(0, 180, 160, 1), rgba(0, 130, 115, 1));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.5);
    color: white;
}

.modal-link-btn svg {
    transition: transform 0.3s ease;
}

.modal-link-btn:hover svg {
    transform: translateX(2px) translateY(-2px);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.modal-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ice-white) !important;
    text-shadow: 0 0 8px rgba(240, 244, 248, 0.15);
    margin: 0;
}

.modal-technologies {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-section-title {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    color: var(--ice-white);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(240, 244, 248, 0.2);
}

.tech-tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.tech-tag-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-tag-item:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.tech-tag-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 18px;
}

.tech-tag-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.2);
}

.tech-tag-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.tech-tag-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ice-white);
}

.tech-tag-category {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-gallery {
    margin-top: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Process Section */
.process {
    background-color: var(--bg-secondary);
    position: relative;
    padding-top: 10px;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: processGlow 15s ease-in-out infinite;
}

@keyframes processGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Modern Services Section */
.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.service-card-modern {
    position: relative;
    padding: 40px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.15), transparent 40%),
                radial-gradient(circle at bottom left, rgba(118, 75, 162, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(102, 126, 234, 0.2),
                0 0 60px rgba(102, 126, 234, 0.15);
}

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

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.5);
    color: rgba(102, 126, 234, 1);
}

.service-icon-modern svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.service-icon-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    color: rgba(102, 126, 234, 1);
}

.service-card-modern h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card-modern:hover .feature-tag {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    color: white;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Additional Services */
.additional-services {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    margin-bottom: 48px;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.category-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.5);
    color: rgba(102, 126, 234, 1);
}

.category-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    color: rgba(102, 126, 234, 1);
}

.category-card h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding: 10px 12px 10px 36px;
    position: relative;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.20);
    border-left: 3px solid rgba(102, 126, 234, 0.5);
    border-radius: 6px;
}

.category-list li::before {
    /* Exemplo de inserção dinâmica ou manual de emojis/SVG por serviço:
       - APIs e Integrações: 🔗
       - Otimização de Performance: ⚡
       - Migração de Sistemas: 🔄
       - Automação de Processos: 🤖
       - Gestão de Imóveis: 🏠
       - Controle Financeiro: 💰
       - Relatórios Automatizados: 📊
       - Business Intelligence: 🧠
       - Manutenção Contínua: 🛠️
       - Suporte Técnico 24/7: 🕑
       - Atualizações de Segurança: 🔒
       - Consultoria Especializada: 🧑‍💼
       O conteúdo real pode ser alterado dinamicamente via JS, mas para CSS fixo escolha um emoji genérico ou deixe o padrão
    */
    content: attr(data-emoji, '✅');
    position: absolute;
    left: 12px;
    color: rgba(102, 126, 234, 1);
    font-weight: bold;
    font-size: 16px;
}

.category-list li:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(102, 126, 234, 0.1);
    border-left-color: rgba(102, 126, 234, 0.6);
    transform: translateX(4px);
}

.category-card:hover .category-list li {
    color: rgba(255, 255, 255, 0.95);
}


/* About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: stretch;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-description {
    margin: 32px 0 48px;
}

.about-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 24px;
}

.about-description strong {
    color: rgba(102, 126, 234, 0.9);
    font-weight: 600;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(8px);
}

.highlight-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.about-tech {
    padding: 0;
    position: static;
    min-height: auto;
    padding-left: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    align-content: start;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.tech-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    padding: 4px;
}

.tech-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.tech-icon-emoji {
    font-size: 20px;
    background: transparent !important;
}

.tech-item:hover .tech-icon img {
    transform: scale(1.1);
    filter: brightness(1.4);
}

.tech-item:hover .tech-icon-emoji {
    transform: scale(1.2);
}

.tech-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    color:#ffffff;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-rating {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.faq-item {
    position: relative;
    padding: 40px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover:not(.active), .faq-item.active {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 20px;
    margin-bottom: 0;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
    color: var(--ice-white) !important;
    text-shadow: 0 0 15px rgba(240, 244, 248, 0.3);
    letter-spacing: -0.01em;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--ice-white) !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
}

.faq-answer p {
    color: var(--ice-white) !important;
    line-height: 1.7;
    text-shadow: 0 0 8px rgba(240, 244, 248, 0.15);
    opacity: 0.9;
}

/* Guarantee Section */
.guarantee {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
    color: rgba(102, 126, 234, 1);
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    color: rgba(102, 126, 234, 1);
}

.guarantee-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    font-family: 'Surgena', 'Halfre', 'Space Grotesk', sans-serif;
}

.guarantee-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.guarantee-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.guarantee-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 500;
}

.btn-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-guarantee:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #0a0a0a;
    color: white;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.special-offer-banner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.special-offer-banner h3 {
    font-size: 28px;
    margin: 15px 0;
    font-weight: 700;
}

.special-offer-banner p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-offer {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    border: 2px solid rgba(102, 126, 234, 0.5);
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(102, 126, 234, 0.7);
    background: rgba(102, 126, 234, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -38px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 40px;
    font-size: 15px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 10;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.price {
    margin-bottom: 30px;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin: 5px 0;
}

.price-period {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: calc(100vw - 50px);
}

.social-btn {
    position: relative;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.5;
    z-index: -1;
}

@keyframes whatsapp-pulse-cycle {
    0%, 16.66% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 20px rgba(37, 211, 102, 0.3);
        transform: scale(1);
    }
    8.33% {
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 30px rgba(37, 211, 102, 0.6),
            0 0 0 8px rgba(37, 211, 102, 0.2);
        transform: scale(1.05);
    }
    16.67%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 20px rgba(37, 211, 102, 0.3);
        transform: scale(1);
    }
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse-cycle 6s ease-in-out infinite;
}

.whatsapp-btn::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(18, 140, 126, 0.3));
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.35);
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-3px) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(37, 211, 102, 0.5) !important;
    color: white;
    animation: none;
}

.instagram-btn {
    background: rgba(225, 48, 108, 0.25);
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(225, 48, 108, 0.3);
    position: relative;
}

.instagram-btn::before {
    background: linear-gradient(135deg, 
        rgba(240, 148, 51, 0.3) 0%, 
        rgba(230, 104, 60, 0.3) 25%, 
        rgba(220, 39, 67, 0.3) 50%, 
        rgba(204, 35, 102, 0.3) 75%, 
        rgba(188, 24, 136, 0.3) 100%);
}

.instagram-btn:hover {
    background: rgba(225, 48, 108, 0.35);
    border-color: rgba(225, 48, 108, 0.6);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(225, 48, 108, 0.5);
    color: white;
}

.social-link svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.social-text {
    display: none;
}

.social-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 8px solid transparent;
    border-top-color: #333;
}

.social-btn:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 10000;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.footer p {
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: flex-start;
        overflow: visible;
        max-width: 100%;
        width: 100%;
    }
    
    .gooey-nav-container {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .logo {
        width: 100%;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .header {
        padding: 16px 0;
        overflow: visible;
    }
    
    .header .container {
        overflow: visible;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .nav-wrapper {
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }
    
    .gooey-nav-container {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        position: relative;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    /* Removido indicadores de scroll que estavam atrapalhando */
    
    .nav {
        order: 2;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        gap: 8px;
        margin: 0;
        padding: 0;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
        scroll-behavior: smooth;
        position: relative;
        box-sizing: border-box;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .nav::-webkit-scrollbar {
        height: 4px;
        display: block;
    }
    
    .nav::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .nav::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .nav a {
        padding: 10px 16px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        font-size: 13px;
        font-weight: 500;
        position: relative;
        z-index: 10;
        flex-shrink: 0;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .nav a:first-child {
        animation: slideInFromRight 0.5s ease-out, pulseIndicator 3s ease-in-out infinite;
    }
    
    .nav a:last-child {
        animation: slideInFromRight 0.5s ease-out 0.1s, pulseIndicator 3s ease-in-out infinite 1s;
    }
    
    .nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    @keyframes pulseIndicator {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.2);
        }
        50% {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0), 0 0 0 6px rgba(255, 255, 255, 0);
        }
    }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    

    .btn-primary {
        display: none;
    }
    
    .nav-wrapper {
        flex-wrap: nowrap;
    }
    
    .logo {
        flex-shrink: 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .btn-hero {
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-tech {
        padding: 0;
        margin-top: 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .gov-projects {
        grid-template-columns: 1fr;
    }
    
    .projects-category {
        margin-bottom: 60px;
    }
    
    .category-title {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
    }
    
    .project-img.project-logo {
        padding: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-categories {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .social-link {
        padding: 12px;
        border-radius: 50%;
        min-width: 48px;
        min-height: 48px;
        justify-content: center;
        width: 48px;
        height: 48px;
    }
    
    .social-link svg {
        margin-right: 0;
        width: 24px;
        height: 24px;
    }
    
    .social-text {
        display: none !important;
    }
    
    .floating-social {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-tooltip {
        display: none;
    }

    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero .container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 0;
        text-align: left;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 48px);
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0;
        text-align: left;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 0;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: left;
        max-width: 100%;
    }
    
    .hero-buttons {
        padding: 0;
        gap: 12px;
        justify-content: flex-start;
    }
    
    .btn-hero {
        padding: 14px 24px;
        font-size: 14px;
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .tech-tags-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }


    .about {
        padding: 60px 0;
    }
    
    .modal-content {
        padding: 24px 20px;
    }
    
    .tech-section-title {
        font-size: 18px;
    }
    
    .tech-tag-item {
        padding: 10px 12px;
    }
    
    /* Fix text overflow on mobile */
    body {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero section mobile fixes */
    .hero {
        padding: 140px 0 40px;
    }
    
    .hero-content {
        padding: 60px 16px;
        text-align: left;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0;
        word-break: break-word;
        text-align: left;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0;
        line-height: 1.6;
        word-break: break-word;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 100%;
    }
    
    /* Social buttons mobile */
    .floating-social {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .social-link {
        padding: 10px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .social-link svg {
        width: 22px;
        height: 22px;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 28px;
        padding: 0 12px;
        word-break: break-word;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 12px;
        word-break: break-word;
    }
    
    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (min-width: 769px) {
    .social-text {
        display: inline;
    }
}

/* Image Modal Styles */
#imageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

#imageModal.active {
    display: flex;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.image-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.image-modal-header {
    padding: 20px 20px 10px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.image-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.image-modal-body {
    padding: 0;
}

.image-modal-img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.image-modal-description {
    padding: 15px 20px 20px 20px;
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .image-modal-img {
        max-height: 60vh;
    }
    
    .image-modal-title {
        font-size: 16px;
    }
    
    .image-modal-description {
        font-size: 13px;
        padding: 12px 16px 16px 16px;
    }
}
