/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --yellow: #FADB14;
    --dark: #1A1A1A;
    --black: #000000;
    --white: #FFFFFF;
    --text-grey: #666666;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-grey);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px; /* Pill shape identical to reference */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 1px;
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-yellow:hover {
    background-color: transparent;
    color: var(--yellow);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-outline-black {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-black:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-pulse {
    position: relative;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(26, 26, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 26, 26, 0);
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
}

.section-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.section-dark .section-subtitle {
    font-weight: 300;
}

.section-dark .section-subtitle strong {
    font-weight: 700;
    color: var(--white);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo .yellow-text {
    color: var(--yellow);
}

.logo .white-text {
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--yellow);
}

.btn-header {
    padding: 8px 25px;
    font-size: 12px;
}

/* Cargo Lift Banner */
.cargo-banner {
    background-color: #000000;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.cargo-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    align-items: center;
    position: relative;
}

/* Removed grunge background */

.cargo-image {
    flex: 1;
    z-index: 10;
    padding-right: 40px;
}

.cargo-image img {
    width: 100%;
    max-width: 500px;
}

.cargo-content {
    flex: 1;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything relative to the block */
    padding-left: 20px;
}

.cargo-top-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.cargo-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.decorative-line {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.line-left, .line-right {
    height: 1px;
    background-color: var(--white);
    flex: 1;
}

.line-center-yellow {
    height: 6px;
    width: 50px;
    background-color: var(--yellow);
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
    margin: 0 -2px; /* overlap lines slightly */
    z-index: 2;
}

.cargo-title {
    font-family: var(--font-heading);
    font-size: 100px;
    line-height: 0.9;
    font-style: italic;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    width: 100%;
}

.text-white {
    color: var(--white);
}

.text-yellow {
    color: var(--yellow);
}

.cargo-custom {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    border-top: 1px solid var(--yellow);
    padding: 15px 0 25px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.cargo-icons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.icon-separator {
    width: 1px;
    height: 50px;
    background-color: rgba(255,255,255,0.3);
}

.cargo-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.cargo-icon-box i {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.cargo-icon-box span {
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.scroll-icon::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    margin-top: 8px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Split Layout Generic */
.split-section {
    display: flex;
    min-height: 600px;
}

.split-half {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image-half {
    position: relative;
    flex: 0.4;
}

.split-image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-content {
    padding: 80px 10%;
    max-width: 600px;
}

/* Players / Serviços Section (Yellow) */
.section-yellow {
    background-color: var(--yellow);
    color: var(--black);
}

.section-yellow .section-title {
    color: var(--black);
    margin-bottom: 8px;
}

.section-yellow .section-subtitle {
    color: var(--black);
    margin-bottom: 10px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.app-btn {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.app-btn:hover {
    opacity: 0.8;
}

.app-btn i {
    font-size: 24px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-small {
    font-size: 10px;
    text-transform: uppercase;
}

.app-btn-large {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
}

.section-yellow .split-image-half img {
    object-fit: contain; /* Like the reference player with transparent background */
}

/* Trainers / Experiência Section (Dark) */
.section-dark {
    background-color: var(--dark);
    color: var(--text-grey);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .hero-buttons {
    justify-content: center;
}

/* Clubs / Clientes Section (White) */
.section-white {
    background-color: var(--white);
}

.section-white .section-title {
    color: var(--black);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 10%;
}

.logo-box {
    border: 1px solid #EEEEEE;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-grey);
    text-transform: uppercase;
}

/* Newsletter / Contato Section */
.newsletter-section {
    background-color: var(--yellow);
    padding: 80px 0;
    text-align: center;
}

.newsletter-section .section-title {
    color: var(--black);
}

.newsletter-section .section-subtitle {
    color: var(--black);
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-container {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-right {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--black);
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-textarea {
    width: 100%;
    height: 100%;
    padding: 15px 20px;
    border: 1px solid var(--black);
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    resize: none;
    color: var(--black);
}

.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-submit-container {
    margin-top: 30px;
}

/* Footer */
.footer {
    background-color: var(--yellow);
    padding: 20px 0 40px;
}

.footer .container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer a {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
    }

    .split-half {
        min-height: 400px;
    }

    .split-image-half {
        flex: 0.4;
        min-height: 300px;
    }

    .logos-grid {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .cargo-title {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .header .container {
        justify-content: center;
    }

    .cargo-banner {
        min-height: auto;
        padding: 100px 15px 40px;
    }

    .cargo-container {
        flex-direction: column;
        text-align: center;
    }

    .cargo-image {
        padding-right: 0;
        margin-left: 0 !important;
        margin-bottom: 20px;
    }

    .cargo-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .cargo-content {
        padding-left: 0;
    }

    .cargo-title {
        font-size: 50px;
        text-align: center;
    }

    .cargo-icons {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .icon-separator {
        display: none;
    }

    .cargo-icon-box {
        flex: 0 0 45%;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .split-content {
        padding: 40px 20px;
    }

    .split-image-half {
        min-height: 250px;
    }

    .form-container {
        flex-direction: column;
    }

    .form-right {
        height: 200px;
    }

    .newsletter-section {
        padding: 50px 15px;
    }

    .footer .container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .footer a {
        font-size: 12px;
    }

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

    .logo-box {
        height: 80px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cargo-title {
        font-size: 36px;
    }

    .cargo-subtitle {
        font-size: 12px;
    }

    .cargo-custom {
        font-size: 14px;
    }

    .cargo-icon-box i {
        font-size: 24px;
    }

    .cargo-icon-box span {
        font-size: 9px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}
