/* Configuração da Fonte Personalizada */
@font-face {
    font-family: 'CustomFont';
    src: url('fonts/TT0586M_.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #0d0d0d;
    --text-light: #ffffff;
    --text-muted: #8a8a93;
    --accent: #2a2a2a;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

.custom-font {
    font-family: 'CustomFont', sans-serif;
}

/* Container do Logo */
.logo-container {
    position: absolute;
    top: 2.5rem;
    left: 5%;
    z-index: 20;
}

.logo-container img {
    height: 45px;
    object-fit: contain;
    /* Se a logo for preta, descomente a linha abaixo para torná-la branca */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Coluna de Conteúdo Principal */
.content-col {
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 10% 2rem 5%;
}

/* Badge Em Breve */
.badge-soon {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Título e Textos */
.title-main {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.95;
    margin-bottom: 0.5rem;
    color: #fdfdfd;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.subtitle {
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 300;
    color: var(--text-muted);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a0a0a5;
    max-width: 500px;
}

/* Container da Imagem do Arquiteto */
.architect-bg-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.architect-img {
    height: 95vh;
    object-fit: contain;
    object-position: bottom right;
    /* Suaviza o corte reto na parte inferior, se houver */
    mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 100%);
    filter: drop-shadow(-10px 0 20px rgba(0, 0, 0, 0.6));
}

/* Overlay de Gradiente para fundir a imagem com o fundo */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 40%),
        linear-gradient(to top, var(--bg-dark) 0%, transparent 10%);
}

/* Ícones Sociais */
.social-icons a {
    color: var(--text-light);
    font-size: 1.1rem;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(255, 255, 255, 0.03);
}

.social-icons a:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Animações de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-stagger>* {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-stagger>*:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in-stagger>*:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in-stagger>*:nth-child(3) {
    animation-delay: 0.5s;
}

.fade-in-stagger>*:nth-child(4) {
    animation-delay: 0.7s;
}

.fade-in-stagger>*:nth-child(5) {
    animation-delay: 0.9s;
}

.architect-bg-container {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

/* Responsividade (Mobile e Tablets) */
@media (max-width: 991.98px) {
    .architect-bg-container {
        width: 100%;
        opacity: 1 !important;
        z-index: 0;
    }

    .architect-img {
        height: 80vh;
        opacity: 1;
        object-position: center bottom;
    }

    .content-col {
        align-items: center;
        text-align: center;
        padding: 5rem 5% 4rem 5%;
        /* Fundo escuro mais suave para destacar o texto sem esconder a foto */
        background: linear-gradient(to top, var(--bg-dark) 5%, rgba(13, 13, 13, - 0.7) 100%);
        position: relative;
        z-index: 10;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .logo-container {
        left: 50%;
        transform: translateX(-50%);
        top: 2rem;
    }

    .gradient-overlay {
        background: linear-gradient(to top, var(--bg-dark) 10%, transparent 50%);
    }
}