/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('./images/fundo.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1200px;
    padding: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 400px;
}

.hero-left h1 {
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.hero-left .red {
    color: #ff1e1e;
}

.hero-left .sub {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.hero-left .desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat strong {
    font-size: 2rem;
    display: block;
    color: #ff1e1e;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.cta-button {
    background: linear-gradient(to right, #ff1e1e, #c40000);
    padding: 1rem 2rem;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* About Section */
.about {
    padding: 120px 0;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #ff0000;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #ff0000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature p {
    color: #888888;
    font-size: 0.9rem;
}

/* About Images Mosaic */
.about-images-mosaic {
    position: relative;
    width: 100%;
}

.about-mosaic-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
}

.about-mosaic-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-mosaic-image:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
    z-index: 5;
}

.about-image-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.about-image-2 {
    grid-column: 2;
    grid-row: 1;
}

.about-image-3 {
    grid-column: 2;
    grid-row: 2;
}

.about-mosaic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-mosaic-image:hover img {
    transform: scale(1.08);
}

/* Corner Overlays */
.about-corner-overlay {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.about-corner-overlay.top-left {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-corner-overlay.top-right {
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.about-corner-overlay.bottom-left {
    bottom: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.about-corner-overlay.bottom-right {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.about-mosaic-image:hover .about-corner-overlay {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Subtle glow effect on hover */
.about-mosaic-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #cc0000, #ff0000);
    border-radius: 17px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.about-mosaic-image:hover::before {
    opacity: 0.3;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #0a0a0a;
}

.services h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    padding: 20px 20px 10px;
    color: #ff0000;
    text-transform: uppercase;
}

.service-card p {
    padding: 0 20px 20px;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Trainers Section */
.trainers {
    padding: 120px 0;
    background: #111111;
}

.trainers h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.trainer-card {
    text-align: center;
    background: #1a1a1a;
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
}

.trainer-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ff0000;
}

.trainer-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.trainer-card p {
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 5px;
}

.trainer-card span {
    color: #888888;
    font-size: 0.9rem;
}

/* Motivation Section */
.motivation {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://www.daveiroteam.com.br/images/fotofaixada.png') center/cover;
    text-align: center;
}

.motivation-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.1;
}

.motivation-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

/* 
Plans Section */
.plans {
    padding: 120px 0;
    background: #0a0a0a;
}

.plans h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.amount {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: #888888;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-button {
    background: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    padding: 15px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.plan-button:hover {
    background: #ff0000;
    color: white;
}

.featured .plan-button {
    background: white;
    color: #ff0000;
    border-color: white;
}

.featured .plan-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: #111111;
}

.gallery h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #0a0a0a;
}

.contact h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: #1a1a1a;
    border: 1px solid #333333;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff0000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888888;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.social-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.social-links a:hover {
    color: #ff0000;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 40px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px;
        display: block;
    }

    .hero {
        height: 100vh;
        padding: 60px 0 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .stats {
        justify-content: center;
        gap: 20px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .hero-right {
        order: -1;
    }

    .hero-right img {
        max-width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .motivation-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-left .sub {
        font-size: 1rem;
    }

    .hero-left .desc {
        font-size: 0.9rem;
    }

    .about-mosaic-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.about-text,
.service-card,
.trainer-card,
.plan-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #0a0a0a;
}

.testimonials h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: #1a1a1a;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #ff0000;
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0000;
}

.author-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.author-info span {
    color: #888888;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #ff0000;
    color: white;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #ff0000;
    transform: scale(1.2);
}

/* Gallery Improvements */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: -10px;
    right: 10px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff0000;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff0000;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 140px;
    right: 30px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 40px 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }

    .slider-controls {
        gap: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .close {
        font-size: 30px;
        top: -5px;
        right: 5px;
    }
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Enhanced Button Styles */
.cta-button:active {
    transform: translateY(0);
}

.plan-button:active {
    transform: scale(0.98);
}

/* Focus States for Accessibility */
.cta-button:focus,
.plan-button:focus,
.slider-btn:focus {
    outline: 2px solid #ff0000;
    outline-offset: 2px;
}

.nav-menu a:focus {
    outline: 2px solid #ff0000;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .scroll-to-top,
    .modal {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero,
    .about,
    .services,
    .trainers,
    .motivation,
    .plans,
    .testimonials,
    .gallery,
    .contact {
        background: white !important;
        color: black !important;
        page-break-inside: avoid;
    }
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #111111;
}

.faq h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #222222;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 0, 0, 0.1);
}

.faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ff0000;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #ff0000;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #0f0f0f;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Enhanced Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 1.2rem;
        width: 25px;
        height: 25px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Additional Enhancements */
.faq-item.active {
    border-left: 4px solid #ff0000;
}

.faq-question:focus {
    outline: 2px solid #ff0000;
    outline-offset: 2px;
}

/* Smooth animations for better UX */
.faq-item {
    transform: translateY(0);
    transition: all 0.3s ease, transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

/* Loading states */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Schedule Section */
.schedule {
    padding: 120px 0;
    background: #111111;
}

.schedule h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.schedule-table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.schedule-table th {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #333333;
    color: #ffffff;
    font-weight: 500;
}

.schedule-table td:first-child {
    background: #222222;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #ff0000;
}

.schedule-table td span {
    display: block;
    font-size: 0.8rem;
    color: #888888;
    margin-top: 5px;
    font-style: italic;
}

.schedule-table .blank-cell {
    background: #0f0f0f;
    color: #555555;
}

.schedule-table tr:hover {
    background: rgba(255, 0, 0, 0.05);
}

.schedule-table tr:hover td:first-child {
    background: #333333;
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .faq-item {
        border: 2px solid #ffffff;
    }

    .faq-question h3 {
        color: #ffffff;
    }

    .faq-answer p {
        color: #ffffff;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark theme */
}

/* Focus visible for better keyboard navigation */
.faq-question:focus-visible {
    outline: 3px solid #ff0000;
    outline-offset: 2px;
}

/* Improved button states */
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.plan-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced gallery modal */
.modal {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateY(-50%);
    }
}

/* Testimonials enhancements */
.testimonial-card {
    transition: all 0.6s ease;
}

.testimonial-card:not(.active) {
    opacity: 0;
    transform: translateX(50px);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

/* Performance optimizations */
.hero-image img,
.about-images img,
.service-card img,
.trainer-card img,
.gallery-item img {
    will-change: transform;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    .hero-image img:hover,
    .service-card:hover,
    .trainer-card:hover,
    .plan-card:hover,
    .gallery-item:hover {
        transform: none;
    }

    .scroll-to-top:hover {
        transform: none;
    }
}

/* F
loating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.floating-whatsapp i {
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments for floating WhatsApp */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.6rem;
    }

    .floating-whatsapp i {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
        font-size: 1.4rem;
    }

    .floating-whatsapp i {
        font-size: 1.4rem;
    }
}

/* Res
ponsive adjustments for about images mosaic */
@media (max-width: 768px) {
    .about-mosaic-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 400px;
        gap: 10px;
    }

    .about-image-1 {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .about-image-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .about-image-3 {
        grid-column: 2;
        grid-row: 2;
    }

    .about-corner-overlay {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .about-mosaic-container {
        grid-template-columns: 1fr;
        grid-template-rows: 2fr 1fr 1fr;
        height: 350px;
        gap: 8px;
    }

    .about-image-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .about-image-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .about-image-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .about-corner-overlay {
        width: 25px;
        height: 25px;
    }
}