/* Section styles */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* HERO */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15,15,15,0.9) 0%, rgba(26,26,46,0.9) 100%);
    overflow: hidden;
}
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.profile-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
}
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.hero-title {
    font-size: 4.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.hero-stats {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 40px;
    font-weight: bold;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollIndicator 2s infinite;
}
.scroll-indicator a {
    color: var(--color-text);
    font-size: 2rem;
}

/* ABOUT */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-image {
    flex: 1;
    position: relative;
}
.about-image img {
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.wings-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--color-accent);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--color-accent);
}
.about-text {
    flex: 1;
}
.about-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.stat-card {
    padding: 20px 10px;
    text-align: center;
}
.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: bold;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* VIDEOS */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.video-card {
    overflow: hidden;
    transition: transform var(--transition-normal);
}
.video-card:hover {
    transform: translateY(-10px);
}
.video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}
.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.video-card:hover .play-overlay {
    opacity: 1;
}
.video-info {
    padding: 20px;
}
.video-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-meta {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* Skeleton Loading */
.skeleton-card .skeleton-img {
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(90deg, #2a2a4a 25%, #3a3a5a 50%, #2a2a4a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.skeleton-card .skeleton-text {
    height: 20px;
    margin: 15px;
    background: linear-gradient(90deg, #2a2a4a 25%, #3a3a5a 50%, #2a2a4a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}
.skeleton-card .skeleton-text.short {
    width: 50%;
}

/* TIMELINE (Logros) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-bg-dark);
    border: 4px solid var(--color-accent);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.left {
    left: 0;
}
.timeline-item.right {
    left: 50%;
}
.timeline-item.right::after {
    left: -10px;
}
.timeline-content {
    padding: 20px;
}
.timeline-content h3 {
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.timeline-content p {
    color: var(--color-text-muted);
}

/* COMMUNITY */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}
.social-card {
    padding: 30px 20px;
    text-align: center;
    display: block;
}
.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.social-card h3 {
    margin-bottom: 5px;
    color: var(--color-text);
}
.social-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.youtube-color { color: #FF0000; }
.tiktok-color { color: #00f2fe; }
.instagram-color { color: #E1306C; }
.facebook-color { color: #1877F2; }
.whatsapp-color { color: #25D366; }

.motto-box {
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.motto-box blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 15px;
}
.motto-author {
    color: var(--color-primary);
    font-weight: bold;
}

/* WINGSTORE */
.wingstore-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(26,26,46,0.9) 0%, rgba(139,92,246,0.2) 100%);
    border: 2px solid var(--color-primary);
}
.discount-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-error);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.9rem;
}
.wingstore-brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}
.wingstore-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}
.code-box {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: inline-block;
}
.code-label {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.code-display {
    display: flex;
    align-items: center;
    gap: 15px;
}
#promo-code {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: 2px;
}
.copy-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: bold;
    transition: background var(--transition-fast);
}
.copy-btn:hover {
    background: #059669;
}

/* LINKS HUB */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}
.link-btn {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--color-bg-card);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text);
    transition: all var(--transition-normal);
}
.link-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.02);
}

/* CONTACT */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}
.btn-submit {
    width: 100%;
    margin-top: 10px;
}
.form-message {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}
.form-message.success {
    color: var(--color-secondary);
}
.form-message.error {
    color: var(--color-error);
}

#hero { position: relative; overflow: hidden; }
