/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* Smooth scroll otimizado e fluidez melhorada */
* {
    scroll-behavior: smooth;
}

/* Melhorias de fluidez geral */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Transições mais fluidas para todos os elementos interativos */
a, button, .btn-primary, .btn-secondary, .btn-inscricao, 
.curso-card, .instrutor-page, .floating-nav-menu a {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Micro-interações premium para links */
a:not(.btn-primary):not(.btn-secondary):not(.btn-inscricao):hover {
    color: #d3b98e;
    text-shadow: 0 0 8px rgba(211, 185, 142, 0.4);
    transform: translateY(-1px);
}

/* Micro-interações para todos os botões */
button:hover, .btn-primary:hover, .btn-secondary:hover, .btn-inscricao:hover {
    filter: brightness(1.1);
}

/* Performance otimizada */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Otimização para scroll fluido */
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* Parallax suave para hero */
#hero {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #d5e2e2;
    background: linear-gradient(135deg, #1c2e3a 0%, #0f93ae 25%, #1c2e3a 50%, #07b2d6 75%, #1c2e3a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    animation: pageLoadFade 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pageLoadFade {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Melhorias de performance e fluidez */
.curso-card,
.instrutor-card,
.btn-primary,
.btn-secondary,
.btn-inscricao,
.instagram-btn,
.hero-content,
section h2,
.section-subtitle {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Animações de entrada com GPU acceleration */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-60px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(60px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes para animações */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    opacity: 1;
}

.fade-up { animation-name: fadeInUp; }
.fade-left { animation-name: fadeInLeft; }
.fade-right { animation-name: fadeInRight; }
.fade-scale { animation-name: fadeInScale; }

/* Delays escalonados para efeito cascata */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Fixo Tradicional */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(28, 46, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(15, 147, 174, 0.3);
}

.floating-nav:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(15, 147, 174, 0.3),
                0 0 15px rgba(7, 178, 214, 0.4),
                inset 0 1px 3px rgba(255, 255, 255, 0.15);
    border-color: rgba(15, 147, 174, 0.5);
}

.floating-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1.6) contrast(1.4) saturate(1.2);
    drop-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    -webkit-filter: brightness(1.6) contrast(1.4) saturate(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.nav-logo:hover .logo-image {
    transform: scale(1.1);
    filter: brightness(1.8) contrast(1.5) saturate(1.3);
    drop-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    -webkit-filter: brightness(1.8) contrast(1.5) saturate(1.3) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}

.floating-nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.floating-nav-menu a {
    color: #d5e2e2;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0.6rem 1.2rem;
    border-radius: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.floating-nav-menu a:hover {
    color: #d3b98e;
    background: rgba(211, 185, 142, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(211, 185, 142, 0.2);
}

.floating-nav-menu a.active {
    color: #1c2e3a;
    background: linear-gradient(135deg, #d3b98e 0%, #C1A870 100%);
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(211, 185, 142, 0.4);
}

.floating-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 185, 142, 0.1) 0%, rgba(193, 168, 112, 0.1) 100%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-nav-menu a:hover::before {
    opacity: 1;
}

/* Menu Hambúrguer Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #d3b98e;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    transform-origin: left center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: -3px;
    left: 6px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 26px;
    left: 6px;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #1c2e3a 0%, #0f93ae 25%, #1c2e3a 50%, #047595 75%, #1c2e3a 100%);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease-in-out infinite;
    color: #d5e2e2;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientFlow {
    0% { 
        background-position: 0% 50%; 
        filter: brightness(1) hue-rotate(0deg);
    }
    25% { 
        background-position: 50% 100%; 
        filter: brightness(1.05) hue-rotate(5deg);
    }
    50% { 
        background-position: 100% 50%; 
        filter: brightness(1.1) hue-rotate(10deg);
    }
    75% { 
        background-position: 50% 0%; 
        filter: brightness(1.05) hue-rotate(5deg);
    }
    100% { 
        background-position: 0% 50%; 
        filter: brightness(1) hue-rotate(0deg);
    }
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(7, 178, 214, 0.08) 0%, transparent 50%);
    animation: shimmerGlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmerGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Títulos do hero separados */
.hero-title-line1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    color: #d5e2e2;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.hero-title-animated {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-title-line2-part1,
.hero-title-line2-part2 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    color: #d3b98e;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title-line2-part1 {
    margin-bottom: 0.3rem;
}

.hero-title-line2-part2 {
    margin-bottom: 1.5rem;
}

/* Efeito sweep light sutil no contorno */
.hero-title-line2-part1::before,
.hero-title-line2-part2::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 45%, 
        rgba(211, 185, 142, 0.4) 50%, 
        transparent 55%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: sweepLight 4s linear infinite;
    border-radius: 8px;
    z-index: -1;
    filter: blur(1px);
}

@keyframes sweepLight {
    0% {
        background-position: -200% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Efeito adicional de contorno sutil */
.hero-title-line2-part1::after,
.hero-title-line2-part2::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        transparent 40%, 
        rgba(255, 215, 0, 0.2) 50%, 
        transparent 60%);
    background-size: 300% 300%;
    animation: gentleGlow 6s ease-in-out infinite;
    border-radius: 6px;
    z-index: -2;
}

@keyframes gentleGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.6;
    }
}

.hero-stats {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1c2e3a;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: none;
    background: linear-gradient(135deg, #07b2d6 0%, #0f93ae 50%, #047595 100%);
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    border: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(7, 178, 214, 0.5), 0 0 25px rgba(15, 147, 174, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Descrição principal do hero */
.hero-description {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    opacity: 0.98;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: #f0f8f0;
    letter-spacing: 0.3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem !important;
    color: #E8F5E8;
    font-style: italic;
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* Destacar palavras importantes com gradiente dourado */
.hero-subtitle .highlight {
    color: #7de4ff;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    transform: translateZ(0);
    backface-visibility: hidden;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #d3b98e 0%, #C1A870 100%);
    color: #1c2e3a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(211, 185, 142, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C1A870 0%, #d3b98e 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(211, 185, 142, 0.6), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::before,
.btn-secondary::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.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background-color: #ffffff;
    color: #107159;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Seções principais com animações fluidas */
section {
    padding: 5rem 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    transition: all 0.3s ease;
}

/* Efeito de entrada suave para seções */
section.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Título específico da seção de cursos */
#cursos h2 {
    color: #1c2e3a;
    text-shadow: 0 2px 8px rgba(28, 46, 58, 0.2);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #E8F5E8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

/* Subtítulo específico da seção de cursos */
#cursos .section-subtitle {
    color: #0f93ae;
    opacity: 1;
    font-weight: 400;
}


/* Seção de Cursos com Fundo Claro */
#cursos {
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 50%, #e8e8e8 100%);
    position: relative;
}

#cursos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(28, 46, 58, 0.08) 0%, transparent 60%);
    animation: coursesSectionGlow 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes coursesSectionGlow {
    0%, 100% { 
        opacity: 0.4;
        background-size: 100% 100%;
    }
    50% { 
        opacity: 0.8;
        background-size: 120% 120%;
    }
}

#cursos > .container {
    position: relative;
    z-index: 2;
}

.cursos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.curso-card {
    background: linear-gradient(145deg, rgba(28, 46, 58, 0.95) 0%, rgba(15, 147, 174, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(15, 147, 174, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(15, 147, 174, 0.3);
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
}

.curso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d3b98e, #0f93ae, #d3b98e);
}

.curso-card:hover {
    transform: translate3d(0, -25px, 0) scale(1.06);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7), 
                0 0 40px rgba(15, 147, 174, 0.4),
                0 0 20px rgba(7, 178, 214, 0.3);
    border-color: rgba(15, 147, 174, 1);
}

.curso-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(15, 147, 174, 0.1), transparent);
    transition: left 0.6s ease;
}

.curso-card:hover::after {
    left: 100%;
}

.curso-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d3b98e;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.curso-subtitle {
    font-size: 1.1rem;
    color: #B8B8B8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.curso-data {
    font-size: 1rem;
    color: #1c2e3a;
    font-weight: 600;
    margin-bottom: 1rem;
    background-color: #d3b98e;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
}

.curso-descricao {
    margin-bottom: 1.5rem;
}

.curso-descricao p {
    color: #E0E0E0;
    line-height: 1.6;
}

.btn-inscricao {
    background: linear-gradient(135deg, #07b2d6 0%, #0f93ae 100%);
    color: #1c2e3a;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(7, 178, 214, 0.3);
}

.btn-inscricao:hover {
    background: linear-gradient(135deg, #0f93ae 0%, #07b2d6 100%);
    transform: translate3d(0, -5px, 0) scale(1.02);
    box-shadow: 0 12px 35px rgba(7, 178, 214, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-inscricao::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-inscricao:hover::before {
    left: 100%;
}

/* Botão Cursos Encerrados - Cor do Cabeçalho */
.btn-cursos-encerrados {
    background: linear-gradient(145deg, #0f93ae, #07b2d6);
    border: 2px solid #0f93ae;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(15, 147, 174, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cursos-encerrados::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cursos-encerrados:hover::before {
    left: 100%;
}

.btn-cursos-encerrados:hover {
    background: linear-gradient(145deg, #0a7a8f, #05a0c1);
    border-color: #0a7a8f;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(15, 147, 174, 0.4);
}

/* Botões para Desktop */
.btn-fotos {
    background: linear-gradient(145deg, #d3b98e, #C1A870);
    color: #1c2e3a;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 185, 142, 0.3);
    letter-spacing: 1px;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(211, 185, 142, 0.5);
}

.btn-fotos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-fotos::after {
    content: '📸';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-fotos:hover {
    background: linear-gradient(145deg, #f4e6c7, #d3b98e);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(211, 185, 142, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(211, 185, 142, 0.8);
    color: #0a3d3d;
}

.btn-fotos:hover::before {
    left: 100%;
}

.btn-fotos:hover::after {
    transform: translateY(-50%) scale(1.1);
}

.btn-esgotado {
    background: linear-gradient(145deg, #6c757d, #5a6268);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-aguarde {
    background: linear-gradient(145deg, #9e9e9e, #757575);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: not-allowed;
    opacity: 0.8;
    box-shadow: 0 4px 15px rgba(117, 117, 117, 0.3);
    letter-spacing: 1px;
    width: 100%;
}

/* Seletores de Edição */
.curso-header-with-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.edition-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edition-selector label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d5e2e2;
    white-space: nowrap;
}

.edition-select {
    background: linear-gradient(145deg, #0f93ae, #07b2d6);
    color: #ffffff;
    border: 2px solid #0f93ae;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.edition-select:hover {
    background: linear-gradient(145deg, #0a7a8f, #05a0c1);
    border-color: #0a7a8f;
    transform: translateY(-1px);
}

.edition-select:focus {
    box-shadow: 0 0 0 3px rgba(15, 147, 174, 0.3);
}

/* Responsividade do seletor */
@media (max-width: 768px) {
    .curso-header-with-selector {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .edition-selector {
        width: 100%;
        justify-content: space-between;
    }
    
    .edition-select {
        flex: 1;
        min-width: 150px;
    }
}

/* Seção de Instrutores */
#instrutores {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1c2e3a 0%, #0f93ae 25%, #1c2e3a 50%, #047595 75%, #1c2e3a 100%);
    position: relative;
}

#instrutores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(15, 147, 174, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(7, 178, 214, 0.06) 1.5px, transparent 1.5px),
        linear-gradient(45deg, transparent 40%, rgba(7, 178, 214, 0.04) 50%, transparent 60%);
    background-size: 50px 50px, 30px 30px, 60px 60px;
    background-position: 0 0, 25px 25px, 0 0;
    animation: geometricFloat 12s ease-in-out infinite;
    z-index: 1;
    opacity: 0.8;
}

@keyframes geometricFloat {
    0%, 100% { 
        background-position: 0 0, 25px 25px, 0 0;
        opacity: 0.8;
    }
    50% { 
        background-position: 10px 10px, 35px 35px, 10px 10px;
        opacity: 1;
    }
}

#instrutores > .container {
    position: relative;
    z-index: 2;
}

/* Páginas individuais dos instrutores */
.instrutor-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem;
    background: linear-gradient(145deg, rgba(28, 46, 58, 0.95) 0%, rgba(15, 147, 174, 0.95) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(15, 147, 174, 0.1);
    border: 2px solid rgba(15, 147, 174, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.instrutor-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d3b98e, #07b2d6, #0f93ae);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.instrutor-page:hover::before {
    transform: scaleX(1);
}

.instrutor-page:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(15, 147, 174, 0.2);
    border-color: rgba(15, 147, 174, 0.4);
}

/* Layout esquerda/direita alternado */
.instrutor-page.right-layout {
    grid-template-columns: 1fr 1fr;
}

.instrutor-page.left-layout {
    grid-template-columns: 1fr 1fr;
}

/* Container da foto do instrutor */
.instrutor-photo-container {
    position: relative;
}

.instrutor-photo {
    width: 100%;
    max-width: 400px;
    height: 600px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(15, 147, 174, 0.2);
    border: 3px solid rgba(15, 147, 174, 0.4);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0 auto;
}

.instrutor-photo:hover {
    transform: scale(1.06) rotateY(8deg);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.7), 
        0 0 50px rgba(15, 147, 174, 0.4),
        0 0 100px rgba(15, 147, 174, 0.2);
    border-color: rgba(15, 147, 174, 0.8);
}

.instrutor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.instrutor-photo:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(15, 147, 174, 0.1) 0%, transparent 50%, rgba(15, 147, 174, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instrutor-photo:hover .photo-overlay {
    opacity: 1;
}

/* Conteúdo textual do instrutor */
.instrutor-content {
    padding: 2rem 0;
}

.instrutor-name {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.instrutor-title {
    font-size: 1.4rem;
    color: #d3b98e;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.instrutor-description {
    font-size: 1.2rem;
    color: #E8F5E8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-align: justify;
}

.instrutor-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    background: linear-gradient(135deg, rgba(7, 178, 214, 0.2) 0%, rgba(15, 147, 174, 0.2) 100%);
    color: #d3b98e;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(15, 147, 174, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-item:hover {
    background: linear-gradient(135deg, #07b2d6 0%, #0f93ae 100%);
    color: #1c2e3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 178, 214, 0.4);
}

/* CSS dos instrutores antigos removido - usando nova estrutura de páginas individuais */

/* Footer */
#contato {
    background: linear-gradient(135deg, #1c2e3a 0%, #0f93ae 50%, #1c2e3a 100%);
    color: #d5e2e2;
    padding: 4rem 0 2rem;
    position: relative;
}

#contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(7, 178, 214, 0.03) 0%, transparent 70%);
    z-index: 1;
}

#contato > .container {
    position: relative;
    z-index: 2;
}

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

.footer-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d3b98e;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #d3b98e;
}

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

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

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

.footer-links a:hover {
    color: #d3b98e;
}

/* Botões de Redes Sociais */
.social-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-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.6s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn svg {
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    box-shadow: 0 8px 25px rgba(196, 53, 132, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(196, 53, 132, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.tiktok-btn {
    background: linear-gradient(135deg, #000000 0%, #00f2ea 50%, #ff0050 100%);
    box-shadow: 0 8px 25px rgba(0, 242, 234, 0.3);
}

.tiktok-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 242, 234, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #E8F5E8;
}

/* Responsividade */
@media (max-width: 1024px) {
    .cursos-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .instrutores-container {
        grid-template-columns: 1fr;
    }
    
    .instrutor-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .instrutor-foto {
        width: 320px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Menu fixo padrão para mobile */
    .floating-nav {
        padding: 0.6rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .floating-nav .container {
        position: relative;
    }

    /* Logo responsivo para mobile */
    .logo-image {
        height: 60px;
    }

    /* Mostrar botão hambúrguer no mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Menu mobile escondido */
    .floating-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(28, 46, 58, 0.95);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border-top: 1px solid rgba(193, 168, 112, 0.3);
    }

    /* Menu mobile aberto */
    .floating-nav-menu.active {
        max-height: 320px;
        padding: 1rem 0;
    }

    .floating-nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.4rem 0;
    }

    .floating-nav-menu a {
        display: block;
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 0;
        background: none;
        min-height: 44px;
    }

    .floating-nav-menu a:hover {
        background: rgba(211, 185, 142, 0.1);
    }
    
    .hero-title-line1 {
        font-size: 2.8rem;
    }
    
    .hero-title-line2-part1,
    .hero-title-line2-part2 {
        font-size: 3.8rem;
        letter-spacing: 2px;
    }
    
    .hero-title-line2 {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Instrutores responsivo */
    .instrutor-page {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
        margin-bottom: 4rem;
    }
    
    .instrutor-page.right-layout {
        grid-template-columns: 1fr;
    }
    
    .instrutor-page.left-layout {
        grid-template-columns: 1fr;
    }
    
    .instrutor-photo {
        height: 500px;
        max-width: 350px;
        order: 1;
    }
    
    .instrutor-content {
        order: 2;
    }
    
    .instrutor-name {
        font-size: 1.9rem;
        text-align: center;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .instrutor-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .instrutor-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .instrutor-highlights {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .cursos-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instrutores-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title-line1 {
        font-size: 1.9rem;
    }
    
    .hero-title-line2-part1,
    .hero-title-line2-part2 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .hero-title-line2 {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .floating-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.6rem 0;
    }
    
    .floating-nav-menu {
        gap: 1rem;
    }
    
    .floating-nav-menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-stats {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
    
    /* Instrutores mobile */
    .instrutor-page {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .instrutor-page.right-layout {
        grid-template-columns: 1fr;
    }
    
    .instrutor-page.left-layout {
        grid-template-columns: 1fr;
    }
    
    .instrutor-photo {
        height: 450px;
        max-width: 320px;
        order: 1;
    }
    
    .instrutor-content {
        order: 2;
    }
    
    .instrutor-name {
        font-size: 1.9rem;
        text-align: center;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .instrutor-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .instrutor-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .instrutor-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .curso-card,
    .instrutor-card {
        padding: 1.5rem;
    }
    
    #hero {
        background-size: 200%;
        background-attachment: scroll;
        min-height: 110vh;
    }
    
    .instrutor-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .instrutor-foto {
        width: 280px;
        height: 350px;
    }
}


/* Créditos do desenvolvedor */
.developer-credits {
    background: rgba(28, 46, 58, 0.9);
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(15, 147, 174, 0.2);
}

.developer-credits p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

/* Otimizações Mobile e Tablet Adicionais */
@media (max-width: 1024px) {
    /* Tablets */
    .hero-title-line2-part1,
    .hero-title-line2-part2 {
        font-size: 4.5rem;
    }
    
    .floating-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.7rem 0;
    }
    
    .floating-nav-menu {
        gap: 1.5rem;
    }
    
    .curso-card {
        padding: 2.5rem;
    }
    
    .instrutor-page {
        padding: 3rem 2.5rem;
        gap: 3rem;
    }
    
    .instrutor-photo {
        height: 520px;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    /* Mobile melhorado */
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title-line2-part1,
    .hero-title-line2-part2 {
        font-size: 3.2rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .floating-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .floating-nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .floating-nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .cursos-container {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .curso-card {
        padding: 2rem 1.5rem;
        margin: 0 5px;
    }
    
    .instrutor-page {
        padding: 2rem 1rem;
        margin-bottom: 2.5rem;
        border-radius: 20px;
    }
    
    .instrutor-photo {
        height: 400px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .instrutor-name {
        font-size: 1.6rem;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .instrutor-title {
        font-size: 0.95rem;
    }
    
    .instrutor-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .developer-credits p {
        font-size: 0.75rem;
        padding: 0 10px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Mobile pequeno */
    .hero-title-line1 {
        font-size: 1.4rem;
    }
    
    .hero-title-line2-part1,
    .hero-title-line2-part2 {
        font-size: 2.4rem;
        letter-spacing: 0.5px;
    }
    
    .floating-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.4rem 0;
    }
    
    .floating-nav-menu {
        gap: 0.8rem;
    }
    
    .floating-nav-menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-stats {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-buttons {
        padding: 0 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
    
    .curso-card {
        padding: 1.5rem 1rem;
    }
    
    .curso-card h3 {
        font-size: 1.2rem;
    }
    
    .instrutor-page {
        padding: 1.5rem 0.8rem;
        margin-bottom: 2rem;
    }
    
    .instrutor-photo {
        height: 350px;
        max-width: 250px;
    }
    
    .instrutor-name {
        font-size: 1.4rem;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .instrutor-highlights {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .developer-credits p {
        font-size: 0.7rem;
        padding: 0 5px;
    }
}


/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .curso-card:hover,
    .instrutor-card:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-inscricao:hover,
    .floating-nav-menu a:hover {
        transform: none;
    }
    
    .curso-card:active,
    .btn-primary:active,
    .btn-secondary:active,
    .btn-inscricao:active {
        transform: scale(0.98);
    }

    /* Botão para Fotos dos Eventos */
    .btn-fotos {
        background: linear-gradient(145deg, #d3b98e, #C1A870);
        color: #1c2e3a;
        padding: 1.2rem 2rem;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(211, 185, 142, 0.3);
        letter-spacing: 1px;
        width: 100%;
        margin-top: 2rem;
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(211, 185, 142, 0.5);
    }

    .btn-fotos::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-fotos::after {
        content: '📸';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .btn-fotos:hover {
        background: linear-gradient(145deg, #f4e6c7, #d3b98e);
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 35px rgba(211, 185, 142, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
        border-color: rgba(211, 185, 142, 0.8);
        color: #0a3d3d;
    }

    .btn-fotos:hover::before {
        left: 100%;
    }

    .btn-fotos:hover::after {
        transform: translateY(-50%) scale(1.1);
    }

    .btn-fotos:active {
        transform: translateY(-2px) scale(1.02);
        transition: all 0.1s ease;
    }

    /* Botão Vagas Esgotadas */
    .btn-esgotado {
        background: linear-gradient(145deg, #6c757d, #5a6268);
        color: #ffffff;
        padding: 1.2rem 2rem;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        cursor: not-allowed;
        opacity: 0.7;
        box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
        letter-spacing: 1px;
        width: 100%;
        margin-top: 1.5rem;
    }
    
    .floating-nav-menu a:active {
        transform: scale(0.95);
        background: rgba(211, 185, 142, 0.15);
    }
    
    /* Melhor área de toque */
    .floating-nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-inscricao {
        min-height: 48px;
    }
}

/* ========================================
   LOJINHA SECTION
   ======================================== */

#lojinha {
    padding: 6rem 0;
    background: #1c2e3a;
    position: relative;
    overflow: hidden;
}

#lojinha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C1A870, transparent);
}

#lojinha h2 {
    text-align: center;
    font-size: 3rem;
    color: #E8F5E8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

#lojinha .section-subtitle {
    color: #E8F5E8;
    opacity: 0.9;
}

.lojinha-em-breve {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.lojinha-em-breve h3 {
    font-size: 3rem;
    color: #E8F5E8;
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #lojinha h2 {
        font-size: 2rem;
    }
    
    .lojinha-em-breve {
        padding: 3rem 1rem;
    }
    
    .lojinha-em-breve h3 {
        font-size: 2rem;
    }
}
