@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400&display=swap');

:root {
    --primary-blue: #0033CC;
    --whatsapp-green: #0BC144;
    --text-white: #ffffff;
    --bg-dark: #0a0a0a;
    --font-main: 'Satoshi', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.full-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-section {
    text-align: center;
    padding: 1rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding-top: 1rem;
}

.top-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
}

.top-text strong {
    font-weight: 800;
}

.highlight-blue-bg {
    background-color: var(--primary-blue);
    padding: 0 6px;
    border-radius: 2px;
    font-weight: 800;
}

.banner-blue {
    background-color: var(--primary-blue);
    padding: 1rem;
    text-align: center;
    color: white;
    width: 100%;
}

.vaga-label {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.job-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.banner-black {
    background-color: #000;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    width: 100%;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-item img {
    height: 20px;
    width: auto;
}

.main-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: auto;
}

.person-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: -10px;
}

.person-img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 50vh;
}

.cta-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.cta-label {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0.5rem;
}

.whatsapp-btn {
    display: block;
    width: 100%;
    background-color: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 0 0 0 rgba(0, 68, 255, 0.7);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 68, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 68, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 68, 255, 0);
    }
}

.brand-logo {
    display: block;
    height: 70px;
    margin: 1rem auto;
}

@media (min-width: 768px) {
    .content-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .person-img {
        max-height: 80vh;
    }
}