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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            color: #333;
            background-color: #fff;
            line-height: 1.6;
        }

        /* Navegação */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: transparent;
            transition: all 0.3s ease;
            padding: 1rem 2rem;
        }

        nav.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-direction: row;
			text-transform: uppercase;
			font-weight: bold
        }

        .nav-menu a {
            text-decoration: none;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #3b82f6;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('https://eliastomejr.com.br/fundo2.jpg');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 2rem;
            animation: fadeIn 1s ease-out;
			
        }
		.hero-content h1{
			font-family: 'Syncopate', sans-serif;
			text-transform: uppercase
		}
		
		#btnTopo {
			position: fixed;
			bottom: 25px;
			right: 25px;
			width: 50px;
			height: 50px;
			border: none;
			border-radius: 50%;
			background: #0d6efd; /* Altere para a cor do seu site */
			color: #fff;
			font-size: 22px;
			cursor: pointer;
			display: none;
			z-index: 9999;
			box-shadow: 0 5px 15px rgba(0,0,0,.3);
			transition: all .3s ease;
		}

		#btnTopo:hover {
			background: #0b5ed7;
			transform: translateY(-4px);
		}		

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero h1 .gradient {
			background: linear-gradient(to right, #634dfc, #8a9cfe, #c98afd);
				background-clip: border-box;
			  -webkit-background-clip: text;
			  -webkit-text-fill-color: transparent;
			  background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: #000;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(to right, #3b82f6, #06b6d4);
            color: white;
            box-shadow: 0 10px 15px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 15px 25px rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
        }

        .btn-secondary {
            border: 2px solid #7c3aed;
            color: #7c3aed;
            background-color: transparent;
        }

        .btn-secondary:hover {
            background-color: rgba(124, 58, 237, 0.1);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        .scroll-indicator svg {
            width: 24px;
            height: 40px;
            stroke: #999;
            stroke-width: 2;
            fill: none;
        }

        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Seção Sobre */
        .section {
            padding: 8rem 2rem;
        }

        .section-title {
			font-family: 'Syncopate', sans-serif;
			text-transform: uppercase;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0px;
            color: #111;
        }


		
        .section-subtitle {
            font-size: 1.125rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

		.title-underline {
			width: 200px;
			height: 2px;
			background: linear-gradient(to right, #3b82f6, #7c3aed);
			border-radius: 9999px;
			margin: 0 auto 12px auto ;
		}
        /* Sobre Mim */
        .about {
            background: linear-gradient(to bottom right, #f9fafb, #fff, #eff6ff);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .about-image-wrapper {
            position: relative;
            width: 288px;
            height: 384px;
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            inset: -16px;
            background: linear-gradient(135deg, #3b82f6, #7c3aed, #ec4899);
            border-radius: 1rem;
            opacity: 0.3;
            filter: blur(20px);
            transition: opacity 0.3s ease;
        }

        .about-image-wrapper:hover::before {
            opacity: 0.5;
        }

        .about-image img {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1rem;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .about-text p {
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        /* Seções de Aulas e Exercícios */
        .aulas {
            background-color: #fff;
        }

        .exercicios {
            background: linear-gradient(to bottom right, #f9fafb, #fff, #fef3c7);
        }

        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

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

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

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

        .section-icon img {
            width: 256px;
            height: 256px;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        }

        .section-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-text p {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: #555;
        }

        .feature-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(to right, #3b82f6, #06b6d4);
        }

        .exercicios .feature-dot {
            background: linear-gradient(to right, #7c3aed, #ec4899);
        }


.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
    background-color: #fff;
    font-size: 14px;
}

.table th,
.table td {
    padding: 12px;
    vertical-align: middle;
    border: 1px solid #dee2e6;
}

.table thead th {
    background-color: #f8f9fa;
    color: #212529;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

.table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.table tbody tr:hover {
    background-color: #e9ecef;
    transition: 0.2s;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: rgba(0,0,0,.03);
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-sm th,
.table-sm td {
    padding: 6px;
}

.seta{
    font-size:20px;
    color:#3b82f6;
    text-shadow:0 0 10px rgba(59,130,246,.4);
}



        /* Footer */
        footer {
            background-color: #111;
            color: #fff;
            padding: 3rem 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #999;
            font-size: 0.9rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #999;
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
        }
		/* Classe que transforma o PNG em Branco */
        .png-branco {
            filter: brightness(2) invert(1);
			height: 60px
        }
        /* Responsivo */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background-color: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                padding: 1rem 2rem;
                gap: 1rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

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

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .about-content,
            .section-content {
                grid-template-columns: 1fr;
            }

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

            .section-title {
                font-size: 2rem;
            }

            .about-image-wrapper {
                width: 100%;
                max-width: 288px;
                margin: 0 auto;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            .nav-container {
                padding: 0;
            }
        }