/* Estilos específicos para a página de Audiovisual */

/* Hero Section com fundo personalizado */
.hero-internal {
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-internal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-internal .container {
    position: relative;
    z-index: 2;
}

.hero-internal h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #333333;
}

.hero-internal .subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

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

.about-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.service-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333333;
    font-size: 1.5rem;
}

.service-card p {
    color: #666666;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.projects-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.project-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.project-content {
    padding: 20px;
}

.project-content h3 {
    margin-bottom: 10px;
    color: #333333;
    font-size: 1.3rem;
}

.project-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.project-content div {
    color: #333333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-item:hover .project-content div {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #333333;
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.cta-section .btn {
    background-color: #FFFFFF;
    color: #333333;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.cta-section .btn:hover {
    background-color: transparent;
    color: #333333;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-internal h1 {
        font-size: 3rem;
    }
    
    .hero-internal .subtitle {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    
    .about-image {
        order: -1; /* Coloca a imagem antes do texto em telas menores */
    }
}

@media (max-width: 768px) {
    .hero-internal {
        padding: 120px 0 60px;
    }
    
    .hero-internal h1 {
        font-size: 2.5rem;
    }
    
    .hero-internal .subtitle {
        font-size: 1.1rem;
    }
    
    .about-section,
    .services-section,
    .projects-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .about-section h2,
    .services-section h2,
    .projects-section h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .project-item {
        margin-bottom: 20px;
    }
    
    .project-image {
        height: 200px;
    }
}
