/* Estilos específicos para a página inicial (index.html) */

/* Hero Section */
.hero-section {
    /* Removendo o background específico e usando apenas o background geral da página */
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Overlay para melhorar a legibilidade do texto sobre a imagem */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.glitch-text {
    position: relative;
    animation: glitch 1s linear infinite;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 61, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: var(--neon-glow);
}

.service-card h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Accordion / FAQ Section */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 61, 0, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(10, 10, 10, 0.8);
    color: var(--light-color);
    font-weight: 500;
    box-shadow: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(10, 10, 10, 0.9);
    box-shadow: var(--neon-glow);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff3d00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(10, 10, 10, 0.6);
    color: #ccc;
    line-height: 1.7;
    padding: 1.5rem;
}

/* Estilo para as imagens específicas */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.3);
    transition: all 0.3s ease;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.3);
    transition: all 0.3s ease;
}

/* Partículas de fundo */
.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    animation: float-up linear forwards;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
} 