/* Ash Division Landing Page Styles */
/* Paleta de cores: #000101 #F9695A #909090 #434242 #ACADAA #7D7D7D */

:root {
    --primary-black: #000101;
    --primary-red: #c91400;
    --light-gray: #909090;
    --dark-gray: #434242;
    --medium-gray: #ACADAA;
    --text-gray: #7D7D7D;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
    background-color: #f1f1ff !important;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
    text-align: center;
    color: white;
}

.line-scale-pulse-out {
    display: inline-block;
    position: relative;
}

.line-scale-pulse-out > div {
    background-color: var(--primary-red);
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    animation-fill-mode: both;
    display: inline-block;
    animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
    animation-delay: -0.4s !important;
}

.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
    animation-delay: -0.2s !important;
}

@keyframes line-scale-pulse-out {
    0% {
        transform: scaley(1);
    }
    50% {
        transform: scaley(0.4);
    }
    100% {
        transform: scaley(1);
    }
}

/* Navbar */
.navbar {
    background: rgba(0, 1, 1, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    border-radius: 50%;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

/* Carousel */

.carousel-item img {
    height: 40rem;
    filter: brightness(0.7);
}

.carousel-caption {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.carousel-caption .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55a4a;
    border-color: #e55a4a;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 1rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.bg-black{
    background-color: #000101;
}

.dec-none{
    color: white;
    text-decoration: none;
}

.dec-none:hover{
    color: red;
    text-decoration: none;
}

/* Team Section */
.team-member {
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    margin-bottom: 20px;
}

.team-member h4 {
    color: var(--primary-black);
    font-weight: bold;
    margin-bottom: 5px;
}

.team-member .position {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 15px;
}

.team-member .description {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-black);
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

/* Recruits Section */
#recrutas{
    background-color: #000101;
}

.recruit-requirements {
    list-style: none;
    padding: 0;
}

.recruit-requirements li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.recruit-requirements i {
    margin-right: 10px;
}

/* Rules Section */
.rule-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.rule-card:hover {
    transform: translateY(-5px);
}

.rule-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.rule-card h4 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: bold;
}

.rule-card p {
    color: var(--text-gray);
}

/* Stats Section */
.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Next Game Section */
.next-game-info h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.game-date, .game-time, .game-location {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.game-description {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.game-details p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.game-details i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
}

/* Contact Section */
.contact-info {
    padding: 30px;
}

.contact-item {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-red);
    margin-right: 15px;
    width: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-black);
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: var(--primary-black) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}

.footer-brand img {
    border-radius: 50%;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    text-decoration: none;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-gray);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-red);
    color: white;
    text-decoration: none;
}

/* WhatsApp Button */
#whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#whatsapp-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.4);
    transition: all 0.3s ease;
}

#whatsapp-container a:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.bounce-6 {
    animation: bounce-6 2s infinite;
}

@keyframes bounce-6 {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

/* Background Sections */
.bg-dark {
    background: var(--primary-black) !important;
}

.bg-light {
    background: #f8f9fa !important;
}

/* Responsive Design */



@media (max-width: 768px) {
    .carousel-item img {
        height: 25rem;
    }
}


@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption .lead {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .team-img img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-caption {
        width: 95%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #e55a4a;
}

