/* ==========================================================================
   SHALIMAR PRAIA HOTEL - PÁGINA DE OPORTUNIDADES / PROMOÇÕES
   Arquivo: css/oportunidades.css
   Versão: 2.0 - Design Minimalista
   ========================================================================= */

/* === HERO SECTION === */
.oportunidades-hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.oportunidades-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.oportunidades-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 60, 126, 0.85), rgba(0, 114, 188, 0.7));
    z-index: 1;
}

.oportunidades-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
    padding: 0 20px;
    max-width: 600px;
}

.oportunidades-hero-title {
    font-family: var(--font-main);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

.oportunidades-hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.5;
}

/* === BARRA DE DESTAQUES === */
.oportunidades-destaques-bar {
    background: var(--azul-navy);
    padding: 0;
    overflow-x: auto;
}

.destaques-list {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: max-content;
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 25px;
    color: var(--branco);
    font-size: 0.8rem;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.destaque-item:last-child {
    border-right: none;
}

.destaque-item i {
    font-size: 0.95rem;
    color: var(--dourado-shalimar);
}

/* === SEÇÃO DE INTRODUÇÃO === */
.oportunidades-intro-section {
    padding: 40px 0;
    background: var(--branco);
}

.intro-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--azul-navy);
    margin-bottom: 12px;
}

.intro-content p {
    font-size: 0.95rem;
    color: var(--cinza-texto);
    line-height: 1.7;
}

/* === SEÇÃO DE OPORTUNIDADES === */
.oportunidades-lista-section {
    padding: 50px 0;
    background: var(--cinza-claro);
}

.oportunidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* === CARD DE OPORTUNIDADE === */
.oportunidade-card {
    background: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transicao);
    display: flex;
    flex-direction: column;
}

.oportunidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.oportunidade-imagem {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.oportunidade-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.oportunidade-card:hover .oportunidade-imagem img {
    transform: scale(1.05);
}

.oportunidade-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 60, 126, 0.9);
    color: var(--branco);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.oportunidade-badge i {
    color: var(--dourado-shalimar);
    font-size: 0.65rem;
}

.oportunidade-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.oportunidade-titulo {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-navy);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.oportunidade-subtitulo {
    font-size: 0.85rem;
    color: var(--dourado-shalimar);
    font-weight: 500;
    margin: 0 0 10px 0;
}

.oportunidade-descricao {
    font-size: 0.8rem;
    color: var(--cinza-texto);
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oportunidade-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--cinza-medio);
}

.btn-conhecer {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--azul-brand), var(--azul-navy));
    color: var(--branco);
    border: none;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transicao);
}

.btn-conhecer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 188, 0.25);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: #25D366;
    color: var(--branco);
    border: none;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transicao);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 50px 30px;
    background: var(--branco);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.empty-icon {
    font-size: 2.5rem;
    color: var(--cinza-medio);
    margin-bottom: 15px;
}

.empty-state h3 {
    font-size: 1.1rem;
    color: var(--azul-navy);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 0.85rem;
    color: var(--cinza-texto);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--azul-brand), var(--azul-navy));
    color: var(--branco);
    border: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transicao);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 188, 0.25);
}

/* === SEÇÃO DE VANTAGENS === */
.oportunidades-vantagens-section {
    padding: 50px 0;
    background: var(--branco);
}

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

.section-header h2 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--azul-navy);
    margin-bottom: 8px;
}

.section-header p {
    font-size: 0.9rem;
    color: var(--cinza-texto);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vantagem-card {
    text-align: center;
    padding: 25px 18px;
    background: var(--cinza-claro);
    border-radius: 12px;
    transition: var(--transicao);
}

.vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: var(--branco);
}

.vantagem-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--azul-brand), var(--azul-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vantagem-icon i {
    font-size: 1.3rem;
    color: var(--branco);
}

.vantagem-card h3 {
    font-size: 0.95rem;
    color: var(--azul-navy);
    margin-bottom: 8px;
}

.vantagem-card p {
    font-size: 0.8rem;
    color: var(--cinza-texto);
    line-height: 1.5;
    margin: 0;
}

/* === CTA SECTION === */
.oportunidades-cta-section {
    position: relative;
    padding: 60px 0;
    background: url('../imagens/oportunidades-cta-bg.jpg') center/cover no-repeat fixed;
}

.oportunidades-cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 60, 126, 0.9), rgba(0, 114, 188, 0.85));
}

.oportunidades-cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: var(--branco);
    max-width: 550px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transicao);
}

.cta-buttons .btn-whatsapp {
    background: #25D366;
    color: var(--branco);
}

.cta-buttons .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.cta-buttons .btn-outline-light:hover {
    background: var(--branco);
    color: var(--azul-navy);
    transform: translateY(-2px);
}

/* === ALERT === */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.alert-danger {
    background: #FEE2E2;
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* === RESPONSIVO === */
@media (max-width: 1200px) {
    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .oportunidades-hero-title {
        font-size: 2.2rem;
    }

    .oportunidades-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .oportunidades-hero-section {
        height: 40vh;
        min-height: 280px;
    }

    .oportunidades-hero-title {
        font-size: 2rem;
    }

    .oportunidades-hero-subtitle {
        font-size: 0.9rem;
    }

    .destaques-list {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .destaque-item {
        padding: 12px 18px;
        font-size: 0.75rem;
    }

    .oportunidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .oportunidade-imagem {
        height: 140px;
    }

    .oportunidade-content {
        padding: 14px;
    }

    .oportunidade-titulo {
        font-size: 1rem;
    }

    .oportunidade-actions {
        flex-direction: column;
        gap: 6px;
    }

    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .vantagem-card {
        padding: 20px 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .oportunidades-hero-title {
        font-size: 1.7rem;
    }

    .intro-content h2 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .oportunidades-grid {
        grid-template-columns: 1fr;
    }

    .oportunidade-imagem {
        height: 150px;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}