/* ================================================
   WorldSoccer | WS Consultoria Esportiva
   style.css — Folha de estilos principal
   Cores da marca: Laranja #FF6600 | Preto | Branco
   ================================================ */

/* ---------- Variáveis de cor da marca ---------- */
:root {
    --ws-orange: #FF6600;
    --ws-orange-hover: #E65C00;
    --ws-black: #000000;
    --ws-dark-1: #1A1A1A;
    --ws-dark-2: #222222;
    --ws-dark-3: #2B2B2B;
    --ws-white: #FFFFFF;
    --ws-gray: #9E9E9E;
}

/* ---------- Base ---------- */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--ws-black);
    color: var(--ws-white);
    overflow-x: hidden;
}

/* ---------- Navbar ---------- */
.navbar {
    transition: all 0.4s ease;
    padding: 20px 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid var(--ws-dark-3);
}

.navbar-brand img {
   height: 80px;          /* aumentado de 45px para 80px */
   width: auto;           /* mantém a proporção */
   transition: transform 0.3s ease;
}

.navbar-brand span {
    color: var(--ws-orange);
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-link {
    color: var(--ws-white) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--ws-orange) !important;
}

/* ---------- Hero ---------- */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    /* Imagem de fundo elegante */
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Sobreposição escura para garantir legibilidade do texto */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

/* Garante que o conteúdo fique acima da sobreposição */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.text-orange { color: var(--ws-orange); }

/* ---------- Botões ---------- */
.btn-ws-primary {
    background-color: var(--ws-orange);
    color: var(--ws-white);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-ws-primary:hover {
    background-color: var(--ws-orange-hover);
    transform: translateY(-2px);
    color: var(--ws-white);
}

.btn-ws-outline {
    background-color: transparent;
    color: var(--ws-white);
    border: 2px solid var(--ws-white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-ws-outline:hover {
    border-color: var(--ws-orange);
    color: var(--ws-orange);
}

/* ---------- Seções gerais ---------- */
section { padding: 100px 0; }

.section-title {
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--ws-orange);
}

/* ---------- Cards "Sobre" ---------- */
.about-card {
    background-color: var(--ws-dark-1);
    padding: 40px;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease;
}

.about-card:hover { transform: translateY(-10px); }

.about-card i {
    font-size: 2.5rem;
    color: var(--ws-orange);
    margin-bottom: 20px;
    display: block;
}

/* ---------- Cards de Produtos (Hub) ---------- */
.product-card {
    background-color: var(--ws-dark-2);
    border: 1px solid var(--ws-dark-3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: scale(1.03);
    border-color: var(--ws-orange);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
}

.product-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.badge-ws {
    background-color: var(--ws-orange);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
    width: fit-content;
}

.badge-soon {
    background-color: transparent;
    border: 1px solid var(--ws-gray);
    color: var(--ws-gray);
}

/* ---------- Contato ---------- */
.contact-box {
    background-color: var(--ws-dark-1);
    border-radius: 12px;
    padding: 50px;
}

.contact-link {
    color: var(--ws-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-link i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--ws-orange);
}

.contact-link:hover { color: var(--ws-orange); }

/* ---------- Rodapé ---------- */
footer {
    background-color: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid var(--ws-dark-3);
}

/* ---------- Animações ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsividade ---------- */
@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .navbar { background-color: var(--ws-black); }
}

/* ===== Imagens nos cards de produto ===== */
.product-card {
  position: relative;
  padding-top: 200px; /* reserva o espaço da imagem */
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Imagem de cada card (ajuste os caminhos) */
.col-lg-4:nth-child(1) .product-card::before {
  background-image: url('../img/fundo_card_agente.png');
}

.col-lg-4:nth-child(2) .product-card::before {
  background-image: url('../img/fundo_card_sinal.png');
}

.col-lg-4:nth-child(3) .product-card::before {
  background-image: url('../img/fundo_card_progestao.png');
}