/* ===== 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, #803afa, #f1a20e);
    -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: #803afa;
    color: #ffffff;
}

/* 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 rgba(139, 92, 246, 0.5); /* roxo elegante */
}

/* Texto */

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

#sobre h2 span {
    color: #8b5cf6;
}

#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, #803afa, #f1a20e);
    -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: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* para mobile */
}

#servicos .grid > div {
    background-color: #222;
    border: 1px solid #444;
    border-radius: 1rem;
    width: 220px; /* quadradinho */
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#servicos .grid > div:hover {
    transform: translateY(-8px);
    border-color: #7f00ff;
}

/* Quadradinho do ícone no canto superior esquerdo */
#servicos .grid i {
    font-size: 2rem;
    color: #7f00ff;
}

#servicos .icon-box {
    background-color: rgba(127, 0, 255, 0.1); /* roxo clarinho */
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    align-self: flex-start; /* para ficar no canto esquerdo */
}

/* Título do card */
#servicos h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Descrição do card */
#servicos .card-text {
    color: #aaa;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background-color: #1a1a1a; /* fundo preto mais claro que o hero */
    padding: 60px 20px;
    color: #eee;
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header .highlight {
    color: #a855f7; /* roxo degradê ou roxo do seu estilo */
}

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

.section-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #803afa, #f1a20e); /* degradê roxo -> laranja */
}

.step {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.step.reverse {
    flex-direction: row-reverse;
}

.step-text, .step-image {
    flex: 1 1 45%;
    max-width: 45%;
}

.step-text {
    padding: 0 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #a855f7; /* roxo */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.step-text p {
    line-height: 1.4;
    font-size: 1rem;
    color: #ccc;
}

.step-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .step, .step.reverse {
        flex-direction: column;
    }
    .step-text, .step-image {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 0;
    }
    /* Esconder a linha vertical no mobile */
    .process-steps::before {
        display: none;
    }
}
/* Mobile pequeno - esconder linha e ajustar steps */
@media (max-width: 465px) {
    .process-steps::before {
        display: none; /* esconde a linha */
    }

    .step, .step.reverse {
        flex-direction: column; /* empilha texto e imagem */
    }

    .step-text, .step-image {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 0; /* remove padding extra que deixava a imagem gigante */
    }
}

/* CTA Section */
section.cta {
    padding: 5rem 1.5rem; /* py-20 px-6 */
    background: linear-gradient(to right, #803afa, #e2860d); /* 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: #803afa; /* 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: #803afa;
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.3);
}

#contato form button {
    width: 100%;
    background-color: #803afa;
    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: #803afa;
    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: #803afa;
    color: #fff;
    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: #803afa; /* 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: #e2860d;
    transition: color 0.3s;
}

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

.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 */
    }
}

