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

:root {
    --primary-yellow: #F4E04D;
    --dark-bg: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --accent-yellow: #FFD700;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 224, 77, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 60px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(244, 224, 77, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(244, 224, 77, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 15px rgba(244, 224, 77, 0.6));
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--dark-bg);
}

/* Search Bar */
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 224, 77, 0.2);
    border-radius: 30px;
    padding: 10px 20px;
    width: 300px;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(244, 224, 77, 0.2);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    width: 100%;
    padding-left: 10px;
    font-size: 14px;
}

.search-bar input::placeholder {
    color: var(--text-gray);
}

.search-bar svg {
    width: 18px;
    height: 18px;
    fill: var(--text-gray);
}

/* Navigation */
nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: rgba(244, 224, 77, 0.1);
    color: var(--primary-yellow);
    transform: scale(1.1);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

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

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: rgba(244, 224, 77, 0.03);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
    box-shadow: 0 0 20px var(--primary-yellow);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
    max-width: 900px;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tag {
    display: inline-block;
    color: var(--primary-yellow);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
    text-shadow: 0 0 20px rgba(244, 224, 77, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(244, 224, 77, 0.7)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9));
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 10px 30px rgba(244, 224, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 224, 77, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(244, 224, 77, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary-yellow);
    background: rgba(244, 224, 77, 0.1);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mascot-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.mascot-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: floatMascot 6s ease-in-out infinite;
}

@keyframes floatMascot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.mascot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(244, 224, 77, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Stats Cards */
.stats-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(244, 224, 77, 0.3);
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: floatCard 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(244, 224, 77, 0.3);
}

.stat-card.card-1 {
    top: 20%;
    left: 2%;
    animation-delay: 0s;
}

.stat-card.card-2 {
    bottom: 20%;
    left: 3%;
    animation-delay: 1s;
}

.stat-card.card-3 {
    top: 15%;
    right: 2%;
    animation-delay: 2s;
}

.stat-card.card-4 {
    bottom: 25%;
    right: 3%;
    animation-delay: 1.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(244, 224, 77, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-yellow);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollDot {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .stat-card {
        padding: 20px 28px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }

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

    .stat-card.card-1 {
        top: 18%;
        left: 1%;
    }

    .stat-card.card-2 {
        bottom: 18%;
        left: 1%;
    }

    .stat-card.card-3 {
        top: 18%;
        right: 1%;
    }

    .stat-card.card-4 {
        bottom: 22%;
        right: 1%;
    }
}

@media (max-width: 968px) {
    header {
        padding: 20px 30px;
    }

    .search-bar {
        display: none;
    }

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .hero {
        padding: 80px 30px 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-subtitle {
        max-width: 100%;
        font-size: 18px;
    }

    /* Esconde os cards em mobile */
    .stats-cards-distributed {
        display: none;
    }
}

@media (max-width: 640px) {
    header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-img {
        height: 35px;
    }

    .search-bar {
        display: none;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        padding-top: 10px;
    }

    nav a {
        font-size: 13px;
    }

    .header-icons {
        gap: 15px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        font-size: 10px;
    }

    .scroll-arrow {
        width: 25px;
        height: 40px;
    }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    min-height: 100vh;
    padding: 100px 60px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.about-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 224, 77, 0.1) 0%, transparent 70%);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.6;
    }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-yellow);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow));
}

.section-tag::before {
    right: calc(100% + 15px);
}

.section-tag::after {
    left: calc(100% + 15px);
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Counter */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 25px;
    border: 1px solid rgba(244, 224, 77, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(244, 224, 77, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.stat-plus,
.stat-percent,
.stat-suffix,
.stat-stars {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-left: 5px;
    vertical-align: top;
}

.stat-text {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.about-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 224, 77, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 224, 77, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover .card-glow {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 60px rgba(244, 224, 77, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotateY(360deg);
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.about-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services-grid {
    margin-bottom: 80px;
}

.services-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

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

.service-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(244, 224, 77, 0.15);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(244, 224, 77, 0.1));
    transition: height 0.4s ease;
}

.service-card:hover .service-hover-effect {
    height: 100%;
}

.service-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 224, 77, 0.2);
}

.service-icon-wrapper {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: grayscale(1);
    transition: all 0.4s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.2) rotate(5deg);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, rgba(244, 224, 77, 0.15), rgba(244, 224, 77, 0.05));
    border: 2px solid rgba(244, 224, 77, 0.4);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.cta-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.cta-particles span:nth-child(2) { left: 30%; animation-delay: 2s; }
.cta-particles span:nth-child(3) { left: 50%; animation-delay: 4s; }
.cta-particles span:nth-child(4) { left: 70%; animation-delay: 6s; }
.cta-particles span:nth-child(5) { left: 90%; animation-delay: 1s; }

@keyframes particleFloat {
    0% {
        bottom: 0;
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

.about-cta h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.about-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-pulse {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* About Section Responsive */
@media (max-width: 1200px) {
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .about {
        padding: 80px 30px;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .section-description {
        font-size: 18px;
    }
    
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-plus,
    .stat-percent,
    .stat-suffix,
    .stat-stars {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-cta {
        padding: 40px 30px;
    }
    
    .about-cta h3 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .about {
        padding: 60px 20px;
    }
    
    .section-tag::before,
    .section-tag::after {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .stats-counter {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-text {
        font-size: 14px;
    }
    
    .about-card {
        padding: 30px 25px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .about-cta h3 {
        font-size: 24px;
    }
    
    .about-cta p {
        font-size: 16px;
    }
    
    .btn-pulse {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    min-height: 100vh;
    padding: 100px 60px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(244, 224, 77, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 224, 77, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(244, 224, 77, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 640px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 550px;
    flex-direction: row;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-yellow), transparent, var(--primary-yellow));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.portfolio-item:hover::before {
    opacity: 0.3;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(244, 224, 77, 0.2);
}

/* Portfolio Image */
.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--secondary-dark);
    height: 280px;
    flex-shrink: 0;
}

.portfolio-item.featured .portfolio-image-wrapper {
    height: 100%;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tech-stack {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 6px 14px;
    background: rgba(244, 224, 77, 0.2);
    border: 1px solid var(--primary-yellow);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Portfolio Image Slider */
.portfolio-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-image-slider .portfolio-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.portfolio-image-slider .portfolio-image.active {
    opacity: 1;
    position: relative;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot.active {
    background: var(--primary-yellow);
    width: 30px;
    border-radius: 5px;
}

/* Portfolio Content */
.portfolio-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    overflow-y: auto;
    gap: 10px;
}

.portfolio-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-yellow);
    margin-bottom: 4px;
    padding: 4px 8px;
    background: rgba(244, 224, 77, 0.1);
    border-radius: 4px;
    width: fit-content;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 12px;
}

.portfolio-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-yellow);
    flex-shrink: 0;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.portfolio-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.portfolio-link:hover::before {
    left: 100%;
}

.portfolio-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(244, 224, 77, 0.4);
}

.portfolio-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translateX(3px);
}

.portfolio-link.disabled {
    background: rgba(100, 100, 100, 0.2);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-link.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(244, 224, 77, 0.1), transparent);
    border: 2px solid rgba(244, 224, 77, 0.2);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 224, 77, 0.1) 0%, transparent 70%);
    animation: rotateCTA 10s linear infinite;
}

@keyframes rotateCTA {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.portfolio-cta h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.portfolio-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.portfolio-cta .btn {
    position: relative;
    z-index: 1;
}

/* Portfolio Responsive */
@media (max-width: 1200px) {
    .portfolio-item.featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .portfolio-item.featured .portfolio-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 968px) {
    .portfolio {
        padding: 80px 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-item.featured {
        grid-column: span 1;
    }
    
    .portfolio-content h3 {
        font-size: 26px;
    }
    
    .portfolio-cta h3 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .portfolio {
        padding: 60px 20px;
    }
    
    .portfolio-header {
        margin-bottom: 50px;
    }
    
    .portfolio-content {
        padding: 30px 25px;
    }
    
    .portfolio-content h3 {
        font-size: 24px;
    }
    
    .portfolio-content p {
        font-size: 15px;
    }
    
    .portfolio-link {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-cta {
        padding: 40px 25px;
    }
    
    .portfolio-cta h3 {
        font-size: 24px;
    }
    
    .portfolio-cta p {
        font-size: 16px;
    }
}
