/* Estilos gerais */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --dark-color: #0a0a12;
    --light-color: #e0e0e0;
    --accent-color: #00f7ff;
    --text-color: #e0e0e0;
    --card-bg: #111122;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --tech-gradient: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 100%);
    --glow: 0 0 10px rgba(0, 247, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(106, 17, 203, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(37, 117, 252, 0.05) 0%, transparent 50%),
        linear-gradient(to bottom, #0a0a12 0%, #111122 100%);
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--light-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: var(--glow);
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 8px var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4), 0 0 10px rgba(0, 247, 255, 0.3);
    border: 1px solid rgba(0, 247, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.6), 0 0 15px rgba(0, 247, 255, 0.5);
}

/* Header */
header {
    background-color: rgba(10, 10, 18, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 247, 255, 0.1);
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.tagline {
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 10, 18, 0.8), rgba(17, 17, 34, 0.9)), url('images_futuristic/futuristic_dukadu_hero.jpeg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Section */
.feature {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0;
}

.feature h2 {
    color: white;
}

.feature-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    max-width: 800px;
    text-align: center;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(106, 17, 203, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(37, 117, 252, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 247, 255, 0.2);
    border-color: rgba(0, 247, 255, 0.3);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 247, 255, 0.5));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
}

/* Projects Section */
.projects {
    padding: 5rem 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(106, 17, 203, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(37, 117, 252, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.project-item {
    display: flex;
    margin-bottom: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    background: rgba(17, 17, 34, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 247, 255, 0.2);
    border-color: rgba(0, 247, 255, 0.3);
}

.project-item.reverse {
    flex-direction: row-reverse;
}

.project-image {
    flex: 1;
    margin-right: 2rem;
    position: relative;
    overflow: hidden;
}

.project-item.reverse .project-image {
    margin-right: 0;
    margin-left: 2rem;
}

.project-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 247, 255, 0.2);
    transition: all 0.5s ease;
    transform: scale(1);
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.project-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.3) saturate(1.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 247, 255, 0.3);
}

.project-info {
    flex: 1;
}

.project-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
}

/* Magazine Section */
.magazine {
    padding: 5rem 0;
    background: linear-gradient(rgba(10, 10, 18, 0.8), rgba(17, 17, 34, 0.9)), url('images_futuristic/futuristic_dukadu_hero.jpeg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.magazine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 247, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(106, 17, 203, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.magazine h2 {
    color: white;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.magazine-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(17, 17, 34, 0.5);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
}

.magazine-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(106, 17, 203, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(37, 117, 252, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.about-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background: rgba(17, 17, 34, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
}

.about-image {
    flex: 1;
    margin-right: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 247, 255, 0.2);
    transition: all 0.5s ease;
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.about-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.3) saturate(1.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 247, 255, 0.3);
}

.about-text {
    flex: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(106, 17, 203, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(37, 117, 252, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    background: rgba(17, 17, 34, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-glow);
}

.contact-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.contact-social .social-icon-3d {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    display: inline-block;
}

.contact-social .social-icon-3d:hover {
    color: var(--primary-glow);
    transform: translateY(-5px) scale(1.2);
    text-shadow: 0 0 15px var(--primary-glow);
}: var(--accent-color);
    filter: drop-shadow(0 0 5px rgba(0, 247, 255, 0.5));
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background: rgba(17, 17, 34, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
    margin-left: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(10, 10, 18, 0.7);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

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

/* Footer */
footer {
    background-color: rgba(10, 10, 18, 0.95);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(106, 17, 203, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(37, 117, 252, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.3);
}

.footer-logo p {
    font-size: 0.8rem;
    color: #aaa;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-links ul li {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    margin-left: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.footer-social a:hover {
    background-color: rgba(106, 17, 203, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
    border-color: rgba(0, 247, 255, 0.5);
}

.footer-social a i {
    color: white;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Estilos para o preview de imagens */
.project-image {
    position: relative;
    overflow: hidden;
}

.image-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 18, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 247, 255, 0.2);
    transform: translateY(20px);
    pointer-events: none;
}

.project-image:hover .image-preview {
    opacity: 1;
    transform: translateY(0);
}

.image-preview h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.image-preview p {
    color: var(--light-color);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .project-item, .project-item.reverse {
        flex-direction: column;
    }
    
    .project-image, .project-item.reverse .project-image {
        margin: 0 0 2rem 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin: 0 0 2rem 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--dark-color);
        transition: 0.3s;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-content > div {
        flex-basis: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        margin: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-content > div {
        flex-basis: 100%;
    }
}
