/* ===== HERO SECTION ===== */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}


/* Imagem de fundo */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/show.jpeg");
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 1;
}


/* Camada escura para contraste */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.9)
    );
    z-index: 2;
}


/* Conteúdo */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


/* Título principal */
.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

/* Degradê no texto */
.hero .gradient-text {
    background: linear-gradient(90deg, #c6f8e1, #946713);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Texto branco */
.hero .white-text {
    color: #ffffff;
}

/* Subtítulo */
.hero p {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Botões */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

/* Botão roxo */
.btn-primary {
    background: #c6f8e1;
    color: #080000;
}

/* Botão laranja */
.btn-secondary {
    background: #f1a20e;
    color: #111827;
}

/* Hover simples */
.hero-buttons a:hover {
    opacity: 0.85;
}

/* Responsivo */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }
}

/* ===== ABOUT SECTION ===== */

#sobre {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom, #000000, #111827);
    color: #e5e7eb;
}

#sobre .container {
    max-width: 1200px;
    margin: 0 auto;
}

#sobre .flex {
    display: flex;
    gap: 3rem;
    align-items: center;
}

#sobre img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 2px solid #c6f8e1; 
}

/* Texto */

#sobre h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

#sobre h2 span {
    color: #c6f8e1;
}

#sobre p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 2rem;
}

/* Grid de informações */

#sobre .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

#sobre .grid > div {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

#sobre h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

#sobre .text-sm {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Ícones */

#sobre i {
    color: #8b5cf6;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Responsivo */

@media (max-width: 900px) {
    #sobre .flex {
        flex-direction: column;
        text-align: center;
    }

    #sobre .grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Container da sessão */
#sobre .flex.md\\:flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* garante que a imagem e o texto tenham mesma altura */
    gap: 2rem;
}

/* Coluna da imagem */
#sobre .md\\:w-1\\/2 img {
    width: 100%;
    height: 100%; /* faz a imagem acompanhar a altura do container */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.5);
}

/* Coluna de texto */
#sobre .md\\:w-1\\/2 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente */
}

/* Título e texto principal */
#sobre h2 {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
}

#sobre p {
    font-size: 1rem;
    line-height: 1.4;
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* Grid de células (Projetos, Prêmios, Estúdio, Equipe) */
#sobre .grid.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* espaço uniforme entre células */
    align-items: start;
}

/* Ajuste das células internas */
#sobre .grid.grid-cols-2 .flex {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* espaço entre ícone e texto */
}

/* Títulos e textos das células */
#sobre .grid.grid-cols-2 h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
}

#sobre .grid.grid-cols-2 p {
    font-size: 0.875rem;
    line-height: 1.2;
    margin: 0;
}

/* Serviços Section */
#servicos {
    background-color: #1a1a1a; /* fundo preto */
    color: #fff;
    padding: 5rem 1.5rem;
}

#servicos h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

#servicos h2 .text-primary {
    background: linear-gradient(90deg, #c6f8e1, #946713);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#servicos p {
    color: #aaa; /* tom roxo suave */
    font-size: 1rem;
    max-width: 30rem;
    margin: 0 auto 3rem auto;
    text-align: center;
}

/* Grid de cards */
#servicos .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas iguais */
    gap: 1.5rem;                           /* espaço entre os cards */
    justify-items: center;                  /* centraliza cada card */
}

/* Card externo do grid */
#servicos .grid > div {
    background-color: transparent; /* sem fundo */
    border: none;
    padding: 0;
    width: 100%;                   /* ocupa a coluna inteira */
}

/* Card do serviço */
.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    width: 90%;
    aspect-ratio: 1 / 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* transição suave */
}
/* Imagem */
.service-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* suaviza o zoom */
}

/* Efeito de hover suave */
.service-card:hover {
    transform: scale(1.03); /* leve aumento */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* sombra mais suave */
}

.service-card:hover img {
    transform: scale(1.05); /* zoom delicado */
}

/* Tablets */
@media (max-width: 1024px) {
    #servicos .grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

/* Tablets */
@media (max-width: 768px) {
    .service-card img {
        height: 180px;
    }
}

/* Celulares pequenos (Samsung, etc.) */
@media (max-width: 480px) {
    .service-card img {
        height: 150px;
    }
}
/* Celulares pequenos */
@media (max-width: 480px) {
    #servicos .grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
    .service-card {
        aspect-ratio: auto; /* deixa a altura proporcional */
    }
}
/* CTA Section */
section.cta {
    padding: 5rem 1.5rem; /* py-20 px-6 */
    background: linear-gradient(to right, #7af3bb, #946713); /* roxo para laranja */
    text-align: center;
}

section.cta h2 {
    font-size: 2rem; /* md:text-4xl */
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

section.cta p {
    font-size: 1.25rem; /* text-xl */
    color: rgba(255, 255, 255, 0.9);
    max-width: 40rem; /* max-w-2xl */
    margin: 0 auto 2rem auto;
}

section.cta a {
    display: inline-block;
    background-color: #ffffff;
    color: #111111; /* texto preto */
    font-weight: bold;
    padding: 0.75rem 2rem; /* py-3 px-8 */
    border-radius: 9999px; /* arredondado */
    text-decoration: none;
    transition: transform 0.3s ease;
}

section.cta a:hover {
    transform: scale(1.05);
}

/* Contact Section */
#contato {
    background-color: #1a1a1a; /* fundo preto mais claro */
    padding: 5rem 1.5rem;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

#contato h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#contato h2 .text-primary {
    color: #c6f8e1; /* roxo da marca */
}

#contato p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #d1d5db; /* cinza claro */
}

#contato .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

#contato .md\:w-1\/2 {
    flex: 1 1 0;          /* cada coluna ocupa metade disponível */
    max-width: 50%;       /* não ultrapassa 50% */
    padding-left: 1.5rem; /* espaço interno à esquerda */
    padding-right: 1.5rem;/* espaço interno à direita */
    box-sizing: border-box; /* conta o padding dentro da largura */
}


#contato .space-y-6 > div {
    display: flex;
    align-items: start;
    gap: 1rem;
}

#contato .space-y-6 h3 {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

#contato form {
    background-color: #2d2d2d;
    border: 1px solid #4b5563; /* cinza escuro */
    border-radius: 1rem;
    padding: 2rem;
}

#contato form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

#contato form input,
#contato form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #3a3a3a;
    border: 1px solid #4b5563;
    border-radius: 0.75rem;
    color: #fff;
    outline: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

#contato form input:focus,
#contato form textarea:focus {
    border-color: #c6f8e1;
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.3);
}

#contato form button {
    width: 100%;
    background-color: #c6f8e1;
    color: #fff;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contato form button:hover {
    background-color: #c6f8e1;
    transform: scale(1.05);
}

/* Espaçamento interno consistente */
#contato form {
    padding: 2rem; /* já tinha, mantém */
}

/* Inputs e textarea respeitando o padding do form */
#contato form input,
#contato form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #3a3a3a;
    border: 1px solid #4b5563;
    border-radius: 0.75rem;
    color: #fff;
    outline: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box; /* ADICIONADO */
}

/* Botão igual à largura dos campos */
#contato form button {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: bold;
    background-color: #c6f8e1;
    color: #0f0101;
    border: none;
    cursor: pointer;
    box-sizing: border-box; /* ADICIONADO */
}


/* Responsivo para mobile e tablets */
@media (max-width: 768px) {
    #contato .md\:w-1\/2 {
        flex: 1 1 100%;       /* ocupa 100% da largura */
        max-width: 100%;
        padding-left: 1.5rem; /* mantém espaço interno */
        padding-right: 1.5rem;
        box-sizing: border-box;
    }

    #contato form {
        width: 100%;
        padding: 2rem;        /* garante espaço interno */
        box-sizing: border-box;
    }

    #contato form input,
    #contato form textarea,
    #contato form button {
        width: 100%;
        box-sizing: border-box; /* para não estourar o form */
    }
}
/* Mobile pequeno */
@media (max-width: 465px) {
    #contato .md\:w-1\/2 {
        flex: 1 1 100%;
        max-width: 100%;
        padding-left: 1rem;  /* um pouquinho menos que no tablet, pra não ficar apertado */
        padding-right: 1rem;
        box-sizing: border-box;
    }

    #contato form {
        width: 100%;
        padding: 1.5rem; /* mantém espaço interno proporcional */
        box-sizing: border-box;
    }

    #contato form input,
    #contato form textarea,
    #contato form button {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Footer */
footer {
    background-color: #1f1f1f; /* fundo preto escuro */
    color: #f5f5f5; /* cor clara para textos */
    padding: 3rem 1.5rem;
    border-top: 1px solid #4b4b4b;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* mantém espaço igual entre colunas */
    align-items: flex-start; /* todas alinhadas ao topo */
    flex-wrap: wrap; /* colunas empilham no mobile */
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem; /* espaçamento uniforme */
}

.footer-column {
    flex: 1; /* todas ocupam espaço igual */
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-column p,
.footer-column ul {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #c6f8e1; /* cor roxa */
}

.social-links {
    display: flex;
    justify-content: flex-start; /* no desktop, alinhado à esquerda da coluna */
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-links a i {
    font-size: 1.5rem;
    color: #f8f7f4;
    transition: color 0.3s;
}

.social-links a:hover i {
    color: #c6f8e1;
}

.footer-copy {
    text-align: center;
    color: #777;
    margin-top: 2rem;
    font-size: 0.85rem;
}

/* Ajuste responsivo para telas pequenas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center; /* centraliza os ícones no mobile */
    }
}

