:root {
    /* Cores Temas da ADEL TT (baseadas na logo) */
    --adel-bg-dark: #070e17;
    --adel-blue-dark: #0a192f;
    --adel-blue: #15458c;
    --adel-neon-blue: #00d2ff;
    --adel-gold: #ffcc00;
    --adel-gold-dark: #ccaa00;
    --adel-white: #ffffff;
    --adel-gray-100: #1e293b;
    --adel-text-light: #e2e8f0;
    --adel-gold-transparent: rgba(255, 204, 0, 0.4);
    --adel-white-transparent: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--adel-text-light);
    background-color: var(--adel-bg-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
    text-align: justify;
}

/* Tipografia Esportiva */
.sport-title {
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(10, 25, 47, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--adel-gold);
}

.navbar-custom .navbar-brand {
    color: var(--adel-gold);
    font-weight: 900;
    font-style: italic;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.navbar-custom .navbar-brand span {
    color: var(--adel-white);
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--adel-gold);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--adel-bg-dark) 0%, var(--adel-blue-dark) 100%);
    color: var(--adel-white);
    padding: 8rem 0 10rem 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 70%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 204, 0, 0.03) 0px,
            rgba(255, 204, 0, 0.03) 2px,
            transparent 2px,
            transparent 10px);
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--adel-neon-blue) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 1;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--adel-gold);
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Buttons */
.btn-custom-primary {
    background-color: transparent;
    color: var(--adel-blue-dark);
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    padding: 0.8rem 2.5rem;
    border: none;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--adel-gold), #ffa500);
    transform: skewX(-15deg);
    z-index: -1;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.btn-custom-primary:hover {
    color: var(--adel-blue-dark);
}

.btn-custom-primary:hover::before {
    transform: skewX(-15deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--adel-white);
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    padding: 0.8rem 2.5rem;
    border: none;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border: 2px solid var(--adel-white);
    transform: skewX(-15deg);
    z-index: -1;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    color: var(--adel-gold);
}

.btn-custom-outline:hover::before {
    border-color: var(--adel-gold);
    background: rgba(255, 204, 0, 0.05);
    transform: skewX(-15deg) scale(1.05);
}

/* Features Section */
.features-section {
    padding: 4rem 0 8rem 0;
    background-color: var(--adel-bg-dark);
    position: relative;
}

.feature-card {
    background: var(--adel-gray-100);
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%;
    border-bottom: 4px solid var(--adel-blue);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.15);
    border-bottom-color: var(--adel-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--adel-blue), var(--adel-blue-dark));
    color: var(--adel-white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--adel-gold), #e6b800);
    color: var(--adel-blue-dark);
    transform: rotate(15deg);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.feature-title {
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: var(--adel-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--adel-text-light);
    opacity: 0.8;
}

/* Feature Link */
.feature-link a {
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 800;
    font-style: italic;
    color: var(--adel-gold) !important;
}

.feature-link a i {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-link a {
    color: var(--adel-neon-blue) !important;
}

.feature-card:hover .feature-link a i {
    transform: translateX(8px);
}

/* Decorativo imagem Hero */
.hero-image-container {
    width: 380px;
    height: 380px;
    position: relative;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--adel-gold);
    border-radius: 50%;
    padding: 4px;
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.05);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: #04090e;
    color: var(--adel-text-light);
    padding: 4rem 0 2rem 0;
    border-top: 5px solid var(--adel-gold);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 15px);
    pointer-events: none;
}

.footer-text {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-social-link {
    color: var(--adel-text-light);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social-link:hover {
    color: var(--adel-gold);
    transform: translateY(-3px) rotate(5deg);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--adel-blue-dark);
    position: relative;
    clip-path: polygon(0 0, 100% 30px, 100% calc(100% - 30px), 0 100%);
    margin-top: -30px;
    z-index: 2;
}

.team-card {
    background: var(--adel-gray-100);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--adel-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.15);
}

.team-card:hover::after {
    transform: scaleX(1);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--adel-gold);
    margin: 0 auto 1.5rem auto;
    object-fit: cover;
    padding: 4px;
    background-color: var(--adel-bg-dark);
    transition: all 0.4s ease;
}

.team-card:hover .team-image {
    border-color: var(--adel-gold);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
    transform: scale(1.05);
}

/* Schedule Section */
.schedule-card {
    background: var(--adel-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s ease;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    position: relative;
    height: 100%;
}

.schedule-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--adel-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.schedule-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.schedule-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.schedule-icon {
    font-size: 2.5rem;
    color: var(--adel-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-section {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
        padding: 5rem 0 8rem 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Custom Pagination */
.pagination {
    --bs-pagination-bg: transparent;
    --bs-pagination-border-color: var(--adel-gold-transparent);
    --bs-pagination-color: var(--adel-gold);
    --bs-pagination-hover-bg: rgba(255, 204, 0, 0.1);
    --bs-pagination-hover-color: var(--adel-gold);
    --bs-pagination-hover-border-color: var(--adel-gold);
    --bs-pagination-focus-bg: rgba(255, 204, 0, 0.1);
    --bs-pagination-focus-color: var(--adel-gold);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(255, 204, 0, 0.25);
    --bs-pagination-active-bg: var(--adel-gold);
    --bs-pagination-active-color: var(--adel-bg-dark);
    --bs-pagination-active-border-color: var(--adel-gold);
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled-color: rgba(255, 255, 255, 0.3);
    --bs-pagination-disabled-border-color: rgba(255, 255, 255, 0.1);
}

.page-link {
    font-weight: bold;
    border-radius: 4px;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 4px;
}