:root {
    --bg-color-dark: #b93e00; /* laranja mais escuro para degradê */
    --bg-color: #fb5404; /* laranja vibrante */
    --text-color: #ffffff; /* branco */
    --container-bg: #ff6e2c; /* laranja do card/container */
    --btn-green: #0b6e4f; /* verde dos botões */
    --btn-green-hover: #138a57; /* hover dos botões */
    --card-green: #0b3b2b; /* fundo dos cartões */
}

/* Base */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, var(--bg-color-dark), var(--bg-color));
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: auto;
    max-width: 500px;
    background-color: var(--bg-color);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.logo-text {
    margin-bottom: 30px;
}

.logo-text h1 {
    margin: 0;
    font-size: 2.5em;
}

.logo-text p {
    margin: 0;
    font-size: 1.1em;
}

/* Links / botões */
.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--bg-color-dark);
    color: var(--text-color);
    padding: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 10px;
    border-color: #fb5404;
    font-weight: bold;
    width: 100%;
}

.link i {
    font-size: 1.2em;
}

.link:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-2px);
}

.work-with-us {
    color: var(--text-color);
}

.work-with-us h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

#work-form input,
#work-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
}

#work-form input {
    background-color: rgba(255,255,255,0.06);
    color: var(--text-color);
    border: 1px solid rgba(255,255,255,0.1);
}

#work-form input::placeholder {
    color: rgba(255,255,255,0.8);
}

#work-form button {
    background-color: var(--bg-color-dark);
    color: var(--text-color);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.15s;
}

#work-form button:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-2px);
}

#work-form input[type="file"] {
    padding: 6px;
    background: rgba(255,255,255,0.03);
    color: var(--text-color);
    border-radius: 5px;
}

/* WhatsApp card (imagem retangular acima do botão) */
.whatsapp-card {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    background-color: var(--card-green);
}

.whatsapp-image {
    width: 100%;
    aspect-ratio: 800/420; /* mantém proporção retangular ideal */
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.04));
}

.whatsapp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.whatsapp-button {
    display: block;
    text-align: center;
    padding: 14px;
    background-color: var(--bg-color-dark);
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 12px 12px;
    transition: background-color 0.25s, transform 0.12s;
}

.whatsapp-button i {
    margin-right: 8px;
}

.whatsapp-button:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-2px);
}

/* Logo image inside the <h1> */
.logo-img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Modal de candidatura */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.is-open {
    display: flex;
}

.modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.modal .modal-content {
    position: relative;
    z-index: 1001;
    background: var(--bg-color); /* agora laranja para combinar com a página */
    color: var(--text-color);
    border-radius: 12px;
    padding: 20px;
    width: 92%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal .modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.6rem;
    cursor: pointer;
}

#work-form input[type="text"],
#work-form input[type="email"],
#work-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: none;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.06);
    color: var(--text-color);
    border: 1px solid rgba(255,255,255,0.14); /* contraste aumentado em fundo laranja */
}

#work-form input::placeholder { color: rgba(255,255,255,0.8); }

#work-form button { margin-top: 6px; }

/* Estilos para o modal do mapa */
.map-frame-wrap {
    width: 100%;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.map-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-fallback {
    text-align: center;
    margin-top: 6px;
    color: rgba(255,255,255,0.95);
}

.map-fallback a {
    color: var(--text-color);
    background: var(--bg-color-dark);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

/* Ícones de contato (somente ícone abaixo da logo) */
.icon-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color-dark);
    color: var(--text-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: transform 0.12s, background 0.2s;
}

.icon-link i { font-size: 1.2rem; }

.icon-link:hover {
    background: var(--btn-green-hover);
    transform: translateY(-3px);
}

/* Estilos para Informações de Contato */
.contact-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.3;
}

.contact-item i {
    color: var(--text-color);
    min-width: 22px;
    font-size: 1.1rem;
    margin-top: 2px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    word-break: break-word;
}

/* Estilo do nome da marca sob a logo */
.brand-name {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.95rem;
    color: var(--text-color);
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.brand-name::after {
    content: '';
    display: block;
    width: 48%;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 3px;
}

/* Toast de sucesso (confete) */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.98);
    background: rgba(0,0,0,0.85);
    color: var(--text-color);
    padding: 14px 20px;
    border-radius: 12px;
    z-index: 5000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
}

.toast.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Badge do desenvolvedor */
.dev-badge {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.12);
    color: var(--text-color);
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 2000;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.dev-badge img {
    width: 86px;
    height: auto;
    display: block;
}

.dev-badge span {
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.95;
}

.dev-badge:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

@media (max-width: 480px) {
    .logo-text h1 { font-size: 2.2em; }
    .logo-img { max-width: 120px; }
    .map-frame-wrap { height: 220px; }
    .icon-link { width: 44px; height: 44px; font-size: 1rem; }
    .contact-item { font-size: 0.92rem; }
    .brand-name { font-size: 1.6rem; }
    .container{ width: 300px;}
    .toast { width: auto; left: 50%; padding: 12px 16px; }
    .dev-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 2px;
        padding: 6px 8px;
    }
    .logo-text p {
    margin: 0;
    font-size: 1em;
}

    .dev-badge img { width: 68px; }
    .dev-badge span { font-size: 12px; }
}
