/* Projeto Individual - Estilos */

.projeto-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.projeto-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.projeto-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projeto-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 0 2rem;
}

.projeto-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.projeto-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Seção Explore */
.projeto-explore {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.projeto-explore h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.projeto-explore .subtitle {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.projeto-explore .image-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.projeto-explore .image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção Descrição */
.projeto-descricao {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.projeto-descricao h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.projeto-descricao .texto {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

/* Cards de Info (Desenvolvedor, Arquiteto, etc) */
.projeto-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.projeto-info-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

.projeto-info-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.projeto-info-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.projeto-info-card h4 {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.projeto-info-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Seção Características */
.projeto-caracteristicas {
    padding: 5rem 2rem;
    background: #f8f8f8;
    text-align: center;
}

.projeto-caracteristicas h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.projeto-caracteristicas .subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.caracteristica-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.caracteristica-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.caracteristica-card h4 {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.caracteristica-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Galeria */
.projeto-galeria {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.projeto-galeria h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.projeto-galeria .subtitle {
    color: #666;
    margin-bottom: 2.5rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.galeria-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

/* Destaques */
.projeto-destaques {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.projeto-destaques h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.destaque-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.destaque-card::before {
    content: '•';
    display: inline-block;
    margin-right: 0.5rem;
    font-weight: bold;
    color: #1a1a2e;
}

/* CTA Projeto */
.projeto-cta {
    padding: 5rem 2rem;
    background: #f8f8f8;
    text-align: center;
}

.projeto-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.projeto-cta p {
    color: #666;
    margin-bottom: 2rem;
}

.projeto-cta .btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.projeto-cta .btn:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .projeto-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .projeto-info-cards {
        grid-template-columns: 1fr;
    }
    
    .caracteristicas-grid {
        grid-template-columns: 1fr;
    }
}
