/* ===================================================== */
/* HERO LÓGOS ESPORTES */
/* ===================================================== */

.esportes-hero {
    position: relative;
    padding: 320px 8% 240px 8%;
    background: #6E9A2E;
    color: white;
    overflow: hidden;
}

.esportes-hero-bg {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.10), transparent 40%),
    linear-gradient(135deg, #47631d, #6E9A2E );
    animation: esportesPulse 20s ease-in-out infinite alternate;
}

@keyframes esportesPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.esportes-hero-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.esportes-hero-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #2F3130;
    margin-bottom: 30px;
    display: inline-block;
}

.esportes-hero-title {
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #FAFAF5;
}

.esportes-hero-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e1e7d8;
    max-width: 800px;
    margin-bottom: 60px;
}

.esportes-hero-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.esportes-hero-primary {
    background: #2F3130;
    color: #ffffff;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease
}

.esportes-hero-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.esportes-hero-secondary {
    border: 1px solid rgba(50, 50, 50, 0.75);
    padding: 20px 50px;
    text-decoration: none;
    color: #F7F6F0;
    transition: 0.3s ease;
}

.esportes-hero-secondary:hover {
    border-color: #ffffff;
    transform: translateY(-6px);
}

/* ===================================================== */
/* ESCALA EMPRESARIAL - FUNDO CLARO */
/* ===================================================== */

.esportes-scale {
    padding: 320px 8%;
    background: #f4f9fb;
    color: #2F3130;
}

.esportes-scale-container {
    max-width: 1300px;
    margin: 0 auto;
}

.esportes-dark-label {
    color: #2F3130;
}

.esportes-light-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6E9A2E;
    display: inline-block;
    margin-bottom: 25px;
}

.esportes-scale-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.esportes-scale-header h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.esportes-scale-header p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #797c75;
}

.esportes-scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}

.esportes-scale-card {
    padding: 70px;
    background: white;
    border: 1px solid #e2eef2;
    transition: 0.4s ease;
}

.esportes-scale-card:hover {
    transform: translateY(-12px);
    border-color: #6E9A2E;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.esportes-scale-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.esportes-scale-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b553c;
}

/* ===================================================== */
/* DADOS INTELIGENTES */
/* ===================================================== */

.esportes-data {

    position: relative;
    padding: 200px 8%;
    background: linear-gradient(180deg, #6E9A2E 0%, #5E8526 100%);
    overflow: hidden;
}

.esportes-data-container {
    max-width: 1300px;
    margin: 0 auto;
}

.esportes-section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #2F3130;
    display: inline-block;
    margin-bottom: 25px;
}

.esportes-data-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.esportes-data-header h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.esportes-data-header p {
    font-size: 1.15rem;
    color: #e1e7d8;
    line-height: 1.9;
}

.esportes-data-grid {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 300px;
    margin-top: 50px;
}

.esportes-data-grid:hover .esportes-data-card {
    opacity: 0.8;
    transform: scale(0.98);
}

.esportes-data-card:hover {
    opacity: 1 !important;
    transform: scale(1.02);
}

.esportes-data-card {
    flex: 1 1 0;
    padding: 45px;
    border-radius: 0;
    background: #2B2B2B;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transform: translateZ(0);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        border 0.3s ease,
        box-shadow 0.3s ease;
}

.esportes-data-grid:hover .esportes-data-card {
    transform: scale(0.96);
}

.esportes-data-card:hover {
    transform: scale(1.05) translateY(-3px);
    background: #303030;
    border: 1px solid rgba(110,154,46,0.4);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    z-index: 2;
}

.esportes-data-card::before {
    content: "Passe o mouse";
    position: absolute;
    bottom: 18px;
    right: 30px;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    transition: 0.3s ease;
}

.esportes-data-card:hover::before {
    opacity: 0;
}

.esportes-data-card::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 40px;
    height: 2px;
    width: 60px;
    background: #6E9A2E;
    transition: 0.4s ease;
}

.esportes-data-card:hover::after {
    width: calc(100% - 90px);
}

.esportes-data-card h3 {
    color: white;
    transition: 0.3s ease;
}

.esportes-data-card:hover h3 {
    color: #9cd842;
    transform: translateX(4px);
}

.esportes-data-card p {
    opacity: 0;
    transform: translateY(8px);
    margin-top: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        margin-top 0.3s ease;
    color: rgba(255,255,255,0.85);
}

.esportes-data-card:hover p {
    opacity: 1;
    transform: translateY(0);
    margin-top: 18px;
}

@media (max-width: 900px) {

    .esportes-data {
        padding: 160px 6%;
    }

    .esportes-data-grid {
        flex-direction: column;
        height: auto;
        gap: 18px;
        margin-top: 30px;
    }

    .esportes-data-card {
        flex: none;
        width: 100%;
        padding: 24px;
        transform: none !important;
        background: #2B2B2B;
        border: 1px solid rgba(255,255,255,0.12);
    }

    .esportes-data-grid:hover .esportes-data-card {
        transform: none;
    }

    .esportes-data-card h3 {
        font-size: 1.1rem;
    }

    .esportes-data-card p {
        opacity: 1;
        transform: none;
        margin-top: 12px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .esportes-data-card::after {
        width: calc(100% - 48px);
        left: 24px;
    }

    .esportes-data-card::before {
        display: none;
    }
}

/* ===================================================== */
/* FÁCIL CONEXÃO */
/* ===================================================== */

.esportes-flow {
    position: relative;
    padding: 320px 8%;
    background: #2F3130;
    color: white;
    overflow: hidden;
}

.esportes-flow-bg {
    position: absolute;
    inset: 0;
    background: #1a1b1b;
}

.esportes-flow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.esportes-titulo-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6E9A2E;
    display: inline-block;
    margin-bottom: 25px;
}

.esportes-flow-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.esportes-flow-header h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.esportes-flow-header p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #cfdfb9;
}

.esportes-flow-flow {
    display: flex;
    flex-direction: column;
    gap: 100px;
    border-left: 2px solid #6E9A2E;
    padding-left: 60px;
}

.esportes-flow-item {
    display: flex;
    gap: 40px;
}

.esportes-flow-index {
    font-size: 2rem;
    font-weight: 600;
    color: #6E9A2E;
    min-width: 60px;
}

.esportes-flow-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.esportes-flow-item p {
    font-size: 1rem;
    color: #cfdfb9;
    line-height: 1.8;
}

/* ===================================================== */
/* HISTÓRICO LÓGOS ESPORTES */
/* ===================================================== */

.esportes-history {
    padding: 320px 8%;
    background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.10), transparent 40%),
    linear-gradient(135deg, #2e3f13, #496420);
    color: white;
    position: relative;
}

.esportes-history-container {
    max-width: 1300px;
    margin: 0 auto;
}

.esportes-title-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #6E9A2E;
    display: inline-block;
    margin-bottom: 25px;
}

.esportes-history-header {
    max-width: 850px;
    margin-bottom: 140px;
}

.esportes-history-header h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.esportes-history-header p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e1e7d8;
}

.esportes-history-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 30px;   
    padding-bottom: 40px;
    margin-top: 60px;
    cursor: grab;
    scroll-behavior: smooth;
}

.esportes-history-grid:active {
    cursor: grabbing;
}

.esportes-history-grid::-webkit-scrollbar {
    height: 10px;
}

.esportes-history-grid::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.35);
    border-radius: 20px;
}

.esportes-history-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.esportes-history-card {
    min-width: 280px;
    padding: 45px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    backdrop-filter: blur(6px);
    transition:
        transform 0.35s ease,
        background 0.3s ease,
        border 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
}

.esportes-history-card::after {
    content: "";
    position: absolute;
    left: 45px;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: #6E9A2E;
    transition: width 0.4s ease;
}

.esportes-history-card:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.10);
    border: 1px solid #6E9A2E;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.esportes-history-card:hover::after {
    width: 60px;
}

.esportes-history-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.esportes-history-card p {
    color: #e1e7d8;
    line-height: 1.7;
}

portes-history::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 120px;
    background: linear-gradient(to left, #496420, transparent);
    pointer-events: none;
}

@media (max-width: 900px) {
    .esportes-history-grid {
        flex-direction: column;
        overflow: visible;
        padding-top: 0;
        gap: 20px;
    }
   
    .esportes-history-card {
        min-width: 100%;
        transform: none !important;
    }
    
    .esportes-history::after {
        display: none;
    }
}

/* ===================================================== */
/* SEGURANÇA */
/* ===================================================== */

.esportes-security {
    padding: 320px 8%;
    background: #6E9A2E;
    color: white;
}

.esportes-security-container {
    max-width: 1300px;
    margin: 0 auto;
}

.esportes-security-header {
    max-width: 850px;
    margin-bottom: 140px;
    position: relative;
}

.esportes-security-header::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #2F3130
}

.esportes-security-header h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.esportes-security-header p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #d2d8c9;
}

.esportes-security-grid {
    display: grid;
    grid-template-columns: 520px 520px;
    gap: 60px;
    justify-content: start;
}

.esportes-security-item {
    max-width: 520px;
    text-align: left;
}

.esportes-security-item:nth-child(odd) {
    justify-self: end;
    padding-right: 40px;
}

.esportes-security-item:nth-child(even) {
    justify-self: start;
    padding-left: 40px;
}

.esportes-security-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.esportes-security-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #d2d8c9;
}

@media (max-width: 900px) {
    .esportes-security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .esportes-security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .esportes-security-grid::before {
        display: none;
    }

    .esportes-security-item:nth-child(odd),
    .esportes-security-item:nth-child(even) {
        padding: 0;
    }

}

/* ===================================================== */
/* CTA FINAL LÓGOS ESPORTES */
/* ===================================================== */

.esportes-final {
    position: relative;
    padding: 360px 8%;
    background: #2e4113;
    color: white;
    text-align: center;
    overflow: hidden;
}

.esportes-final-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, #5c8026, transparent 65%),
        linear-gradient(135deg, #3d5519, #1e2b0c);
    animation: esportesFinalPulse 20s ease-in-out infinite alternate;
}

@keyframes esportesFinalPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.esportes-final-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.esportes-final-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #a7e944;
    margin-bottom: 30px;
    display: inline-block;
}

.esportes-final h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.esportes-final p {
    font-size: 1.2rem;
    color: #e1e7d8;
    line-height: 1.9;
    margin-bottom: 80px;
}

.esportes-final-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.esportes-final-primary {
    background: #a7e944;
    color: #031b26;
    padding: 22px 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.esportes-final-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.esportes-final-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 22px 60px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.esportes-final-secondary:hover {
    border-color: #a7e944;
    transform: translateY(-6px);
}

@media (max-width: 992px) {
    .esportes-final h2 {
        font-size: 2.2rem;
    }
}