/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham Book', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Gotham Black', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Cabeçalho */
header {
    background-color: rgba(0, 0, 0, 0.92);
    color: #fff;
    padding: 21px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efeito de transparência ao rolar */
header.transparent {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Gotham Black', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #fff;
    /*transform: scale(1.05);*/
}

.logo i {
    margin-right: 10px;
    font-size: 24px;
}

/*
.logo img {
     filter: drop-shadow(0 2px 5px rgba(255, 0, 0, 0.3));
    transition: all 0.3s ease;
}


.logo:hover img {
    filter: drop-shadow(0 2px 10px rgba(255, 0, 0, 0.5));
}
*/
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: #ff0000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.mobile-menu-btn:hover {
    color: #ff0000;
    transform: scale(1.1);
}

/* Video Hero */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 78px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 1000px;
    padding-bottom: 60px;
}

.video-logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.video-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-glow-effect {
    position: absolute;
    width: 120%;
    height: 120%;
    animation: pulse-glow 4s infinite alternate;
    z-index: 1;
    border-radius: 50%;
}

.video-logo-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    /*filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 1));*/
    animation: fadeInLeft 1s ease;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.video-logo:hover .video-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 20px rgba(255, 0, 0, 0.3));
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.video-text {
    flex: 1;
    text-align: left;
    animation: fadeInRight 1s ease;
}

.video-text h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.video-text p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    display: flex;
    gap: 10px;
    animation: fadeIn 1s ease 1s both;
}

.video-control-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    border-color: #ff0000;
    transform: scale(1.1);
}

/* Botões - TODOS QUADRADOS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    border: none;
    cursor: pointer;
    gap: 10px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    border-radius: 0;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0;
}

.btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover i {
    transform: scale(1.2);
}

.btn-outline {
    background: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    border-radius: 0;
}

.btn-outline:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-outline:hover i {
    transform: rotate(360deg);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Gotham Book', sans-serif;
}

.btn-card:hover {
    background: #cc0000;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-card:hover i {
    transform: translateX(3px);
}

/* Títulos das seções */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ff0000;
    border-radius: 0;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
}

/* Sobre */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #555;
}

.about-image {
    flex: 1;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.overlay-content h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Metodologia */



/* Metodologia */
.methodology {
    background-color: #f9f9f9;
}

.methodology-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .methodology-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .methodology-content {
        grid-template-columns: 1fr;
    }
}

.methodology-item {
    background-color: white;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    border-radius: 0;
}

.methodology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.methodology-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.methodology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.methodology-item:hover .methodology-image img {
    transform: scale(1.05);
}

.methodology-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.methodology-overlay h3 {
    font-size: 18px;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    flex: 1;
    padding-right: 10px;
}

.methodology-badge {
    background-color: #ff0000;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.methodology-content-inner {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.methodology-content-inner p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.methodology-content-inner h4 {
    color: #000;
    margin: 20px 0 10px;
    font-size: 18px;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 5px;
}

.methodology-details {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.methodology-details li {
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.methodology-details li i {
    color: #ff0000;
    margin-top: 3px;
    flex-shrink: 0;
}


/* Horários */
.schedule {
    background-color: #f1f1f1;
}

.schedule-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.schedule-table-container {
    overflow-x: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    background-color: white;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.schedule-table th {
    background-color: #000;
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid #333;
}

.schedule-table th:last-child {
    border-right: none;
}

.schedule-table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eaeaea;
    height: 100px;
    position: relative;
    transition: all 0.3s ease;
}

.schedule-table td:hover {
    background-color: #f9f9f9;
    transform: scale(1.02);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-class {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    border-radius: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #ff0000;
}

.schedule-class.empty {
    border-left: none;
    background-color: transparent;
}

/* Cores específicas para cada tipo de aula */
.schedule-table td[data-day="Segunda"] .schedule-class:not(.empty),
.schedule-table td[data-day="Terça"] .schedule-class:not(.empty),
.schedule-table td[data-day="Quarta"] .schedule-class:not(.empty),
.schedule-table td[data-day="Quinta"] .schedule-class:not(.empty),
.schedule-table td[data-day="Sexta"] .schedule-class:not(.empty),
.schedule-table td[data-day="Sábado"] .schedule-class:not(.empty) {
    background-color: #f8f8f8;
}

/* Cores por tipo de aula baseado no nome */
.schedule-class:not(.empty) .class-name {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-class:not(.empty) .class-time {
    font-size: 13px;
    color: #666;
    background-color: #eee;
    padding: 3px 8px;
    border-radius: 0;
}

/* Aplicando cores específicas para cada tipo de aula */
.schedule-class:not(.empty):has(.class-name:contains("KIDS 1")) {
    border-left-color: #ff0000;
    background-color: rgba(255, 0, 0, 0.05);
}

.schedule-class:not(.empty):has(.class-name:contains("KIDS 2")) {
    border-left-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.05);
}

.schedule-class:not(.empty):has(.class-name:contains("JUVENIL")) {
    border-left-color: #4ecdc4;
    background-color: rgba(78, 205, 196, 0.05);
}

.schedule-class:not(.empty):has(.class-name:contains("FUNDAMENTOS")) {
    border-left-color: #45b7d1;
    background-color: rgba(69, 183, 209, 0.05);
}

.schedule-class:not(.empty):has(.class-name:contains("INTERMEDIÁRIO")) {
    border-left-color: #96ceb4;
    background-color: rgba(150, 206, 180, 0.05);
}

.schedule-class:not(.empty):has(.class-name:contains("Open Mat")) {
    border-left-color: #feca57;
    background-color: rgba(254, 202, 87, 0.1);
}

.empty-cell {
    background-color: #f9f9f9;
}

.schedule-legend {
    background-color: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.schedule-legend h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 10px;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 0;
    flex-shrink: 0;
}

.legend-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.schedule-notes {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
}

.schedule-notes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.schedule-notes ul {
    list-style: none;
    padding-left: 0;
}

.schedule-notes li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.schedule-notes li i {
    color: #ff0000;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Instrutores */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instructor-card {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #eaeaea;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.instructor-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    border-radius: 0;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-belt {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ff0000;
    color: white;
    padding: 8px 15px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
}

.instructor-info {
    padding: 25px;
    text-align: center;
}

.instructor-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #000;
}

.instructor-title {
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.instructor-info p {
    color: #666;
    margin-bottom: 15px;
}

.instructor-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.instructor-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #f1f1f1;
    color: #333;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.instructor-social a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.instructor-social a:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.instructor-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instructor-social a:nth-child(1):hover { /* Instagram */
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.instructor-social a:nth-child(2):hover { /* WhatsApp */
    background-color: #25D366;
    color: white;
}

/* Galeria */
.gallery-section {
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    border: 1px solid #eaeaea;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Imagem fixa antes do rodapé */
.fixed-image-section {
    position: relative;
    height: 500px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('transforme.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 80px 0;
}

.fixed-image-content {
    max-width: 890px;
    padding: 0 20px;
    z-index: 2;
}

.fixed-image-content h3 {
    font-size: 55px;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.fixed-image-content p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Contato */
.contact {
    background-color: #f1f1f1;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3, .contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-item i {
    color: #ff0000;
    font-size: 22px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    color: white;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-btn:hover {
    background-color: #ff0000;
    transform: translateY(-5px) rotate(10deg);
}

.contact-form form {
    background-color: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 0;
    font-size: 16px;
    font-family: 'Gotham Book', sans-serif;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
    background-color: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    border-radius: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
}

/* Rodapé */
footer {
    background-color: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
    padding-right: 30px;
}

.footer-column h3 {
    color: #ff0000;
    margin-bottom: 25px;
    font-size: 22px;
}

.footer-column p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-newsletter h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    background-color: #222;
    color: white;
}

.newsletter-form button {
    background: #ff0000;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #cc0000;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.footer-schedule {
    list-style: none;
}

.footer-schedule li {
    margin-bottom: 12px;
    color: #aaa;
    font-size: 14px;
}

.footer-schedule strong {
    color: #ff0000;
    display: inline-block;
    min-width: 100px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #000;
    color: white;
    border-bottom: 3px solid #ff0000;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.modal-close:hover {
    color: #ff0000;
    transform: scale(1.2);
}

.modal-content {
    padding: 30px;
}

.modal-content h4 {
    color: #000;
    margin: 20px 0 10px;
    font-size: 20px;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 5px;
}

.modal-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.modal-content li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 20px;
    position: relative;
}

.modal-content li:before {
    content: '•';
    color: #ff0000;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.modal-schedule {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #ff0000;
}

.modal-schedule h5 {
    color: #000;
    margin-bottom: 10px;
    font-size: 18px;
}

.modal-schedule ul {
    margin: 0;
}

.modal-schedule li {
    padding-left: 0;
}

.modal-schedule li:before {
    content: none;
}

/* Conteúdo da graduação */
.graduation-content h4 {
    color: #000;
    margin: 25px 0 15px;
    font-size: 20px;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 5px;
}

.graduation-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.graduation-highlight {
    background-color: #fff5f5;
    padding: 15px 20px;
    margin: 20px 0;
    border-left: 4px solid #ff0000;
}

.graduation-highlight p {
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.graduation-important {
    background-color: #ff0000;
    color: white !important;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}

.graduation-content ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.graduation-content li {
    margin-bottom: 10px;
    color: #666;
    padding-left: 15px;
    position: relative;
}

.graduation-content li:before {
    content: '✓';
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .video-text h1 {
        font-size: 50px;
    }
    
    .fixed-image-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .video-logo-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .video-text {
        text-align: center;
    }
    
    .video-text h1 {
        font-size: 42px;
    }
    
    .video-text p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .fixed-image-section {
        height: 400px;
        margin: 60px 0;
    }
    
    .fixed-image-content h3 {
        font-size: 32px;
    }
    
    .fixed-image-content p {
        font-size: 18px;
    }
    
    .methodology-content {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .logo-glow-effect {
        width: 700px;
        height: auto;
        /*background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, transparent 70%);*/
    }
    
    /* Responsividade para horários */
    .schedule-table {
        font-size: 14px;
    }
    
    .schedule-table th {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .schedule-table td {
        padding: 10px;
        height: 90px;
    }
    
    .schedule-class:not(.empty) .class-name {
        font-size: 13px;
    }
    
    .schedule-class:not(.empty) .class-time {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 21px;
        right: 15px;
    }
    
    .video-hero {
        height: 80vh;
        margin-top: 78px;
    }
    
    .video-text h1 {
        font-size: 32px;
    }
    
    .video-text p {
        font-size: 16px;
    }
    
    .video-logo-image {
        max-width: 500px;
    }
    
    .video-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .video-control-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        padding-right: 0;
    }
    
    .fixed-image-section {
        height: 350px;
        margin: 40px 0;
        background-attachment: scroll;
    }
    
    .fixed-image-content h3 {
        font-size: 28px;
    }
    
    .fixed-image-content p {
        font-size: 16px;
    }
    
    /* Responsividade para horários em tablets */
    .schedule-table th {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .schedule-table td {
        height: 80px;
        padding: 8px;
    }
    
    .schedule-class:not(.empty) .class-name {
        font-size: 12px;
    }
    
    .schedule-class:not(.empty) .class-time {
        font-size: 11px;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    
    .video-text h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .about-text h3, .contact-info h3, .contact-form h3 {
        font-size: 24px;
    }
    
    .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .fixed-image-section {
        height: 300px;
        margin: 30px 0;
    }
    
    .fixed-image-content h3 {
        font-size: 24px;
    }
    
    .fixed-image-content p {
        font-size: 14px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .video-logo-image {
        max-width: 700px;
    }
    
    /* Responsividade para horários em celulares */
    .schedule-table th {
        font-size: 11px;
        padding: 10px 5px;
    }
    
    .schedule-table td {
        height: 70px;
    }
    
    .schedule-class:not(.empty) .class-name {
        font-size: 11px;
    }
    
    .schedule-class:not(.empty) .class-time {
        font-size: 10px;
        padding: 2px 5px;
    }
}