/* ===========================
   10n tennumber Football Academy
   Premium Theme - Black / Gold / White
   =========================== */

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #161616;
    --gold: #b8960c;
    --gold-light: #d4af37;
    --gold-dark: #8a7209;
    --white: #ffffff;
    --white-off: #f5f5f5;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #333333;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    color: var(--gold-light);
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.5px;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

.header-top-left .separator {
    margin: 0 10px;
    opacity: 0.3;
}

.header-top-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-top-right a {
    color: var(--gray);
    display: flex;
    align-items: center;
}

.header-top-right a:hover {
    color: var(--gold-light);
}

.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.header.scrolled .navbar {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header.scrolled .header-top {
    transform: translateY(-100%);
    height: 0;
    overflow: hidden;
    border: none;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 12px 28px;
    border-radius: 4px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(184, 150, 12, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 14px;
}

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

.btn-full {
    width: 100%;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/training.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.92) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    display: block;
    width: 3px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
    background: var(--black-light);
    border-top: 1px solid rgba(184, 150, 12, 0.2);
    border-bottom: 1px solid rgba(184, 150, 12, 0.2);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold-light);
    display: block;
    line-height: 1;
}

.stat-suffix {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-light);
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--black-light);
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-media img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.section-text p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--gold-light);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 15px;
    font-weight: 500;
}

/* ===========================
   PROGRAMS
   =========================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    border-color: rgba(184, 150, 12, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.program-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(184, 150, 12, 0.08) 0%, var(--black-card) 100%);
}

.program-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
}

.program-age {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 12px;
}

.program-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-details {
    text-align: left;
    margin-bottom: 24px;
}

.program-details li {
    font-size: 13px;
    color: var(--gray-light);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-left: 16px;
    position: relative;
}

.program-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* ===========================
   COACHES CAROUSEL
   =========================== */
.carousel-wrapper {
    position: relative;
    padding: 0 48px;
}

.coaches-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 8px 0 16px;
    cursor: grab;
}

.coaches-carousel:active {
    cursor: grabbing;
}

.coaches-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.coach-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.coach-card:hover {
    border-color: rgba(184, 150, 12, 0.3);
    transform: translateY(-4px);
}

.coach-photo {
    height: 280px;
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coach-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        var(--black-card) 0%,
        transparent 50%
    );
}

.coach-info {
    padding: 24px;
    max-height: 280px;
    overflow-y: auto;
}

.coach-info::-webkit-scrollbar {
    width: 4px;
}

.coach-info::-webkit-scrollbar-track {
    background: transparent;
}

.coach-info::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 2px;
}

.coach-info::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.coach-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.coach-license {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.coach-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.coach-info p:last-child {
    margin-bottom: 0;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   CTA / REGISTRATION
   =========================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/banner-field.webp') center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.cta-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.cta-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cta-form select option {
    background: var(--black-card);
    color: var(--white);
}

.cta-form input::placeholder {
    color: var(--gray);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1);
}

.cta-form .btn {
    margin-top: 8px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 12px;
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(184, 150, 12, 0.3);
}

.contact-icon {
    color: var(--gold-light);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
}

.contact-card a {
    color: var(--gray-light);
}

.contact-card a:hover {
    color: var(--gold-light);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-dark);
}

/* ===========================
   ANIMATIONS (scroll reveal)
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .section-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

    .navbar-inner {
        height: 64px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        background-position: center 30%;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(10, 10, 10, 0.7) 35%,
            rgba(10, 10, 10, 0.7) 60%,
            rgba(10, 10, 10, 1) 90%
        );
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 64px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .section {
        padding: 64px 0;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .carousel-wrapper {
        padding: 0 36px;
    }

    .coach-card {
        min-width: 240px;
        max-width: 240px;
    }

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

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .carousel-wrapper {
        padding: 0 28px;
    }

    .coach-card {
        min-width: 220px;
        max-width: 220px;
    }

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

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

    .gallery-item.large {
        grid-column: span 1;
    }
}

/* ===========================
   UTILITY - selection color
   =========================== */
/* ===========================
   WHATSAPP FLOATING BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: var(--white);
    animation: none;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

::selection {
    background: var(--gold);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
