/* ===== GLOBAL RESET & STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Garante que nenhum elemento cause overflow horizontal */
*,
*::before,
*::after {
    box-sizing: inherit;
    max-width: 100%;
}

/* Exceções para elementos que precisam de largura total */
html,
body,
section,
header,
footer,
.hero-background,
.background-image,
.texture-image {
    max-width: none;
}

/* ===== IMAGE PROTECTION & DARK MODE FIX ===== */
/* Previne escurecimento automático de imagens em modo escuro */
img, picture, video, canvas {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    /* Força imagens a manterem cores originais em dark mode */
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    -webkit-filter: none !important;
}

/* Garante que imagens mantenham brilho original em dark mode */
@media (prefers-color-scheme: dark) {
    img, picture, video, canvas {
        opacity: 1 !important;
        filter: none !important;
        -webkit-filter: none !important;
    }
}

/* Previne seleção de texto e imagens */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Permite seleção em campos de texto e áreas específicas */
input,
textarea,
p,
span,
a,
button {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    /* Previne zoom horizontal indesejado */
    overflow-x: hidden;
    /* Garante que o HTML ocupe 100% da viewport */
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Electrolize', sans-serif;
    font-size: 16px;
    background-color: #000000;
    color: #FFFFFF;
    /* Previne scroll horizontal - CRÍTICO para responsividade */
    overflow-x: hidden;
    /* Garante que o body ocupe 100% da largura */
    width: 100%;
    min-height: 100vh;
    /* Remove margem padrão do navegador */
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    body {
        background-image: url('Doc/texture_mobile.svg');
        background-size: cover;
        background-position: center;
        background-repeat: repeat-y;
        background-attachment: fixed;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Audiowide', sans-serif;
}

/* ===== HEADER COMPONENT ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Logo responsiva - mostra logo_tablet em tablets */
.logo-desktop {
    display: block !important;
}

.logo-tablet {
    display: none !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-menu ul li a {
    color: #0CFFE8;
    text-align: center;
    text-shadow: 0 0 3px #0CFFE8;
    font-family: 'Audiowide', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:active {
    color: #FFFFFF;
    text-shadow: 0 0 8px #0CFFE8;
}

.btn-entrar {
    padding: 12px 32px;
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: #0CFFE8;
    font-family: 'Audiowide', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-entrar:hover,
.btn-entrar:active {
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn-hover.png');
    color: #FFFFFF;
}

/* ===== HERO SECTION ===== */
#hero {
    position: relative;
    width: 100%;
    min-height: 56.25vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
}

.background-pc {
    display: block !important;
}

.background-tablet,
.background-mobile {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(48px, 6vw, 92px);
    color: #FFFFFF;
    font-family: 'Audiowide', sans-serif;
    font-weight: 400;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(12, 255, 232, 0.6);
    letter-spacing: 4px;
}

.hero-description {
    font-size: clamp(16px, 1.5vw, 24px);
    color: #FFFFFF;
    font-family: 'Electrolize', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.texture-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1200px) {
    .nav-menu ul {
        gap: 24px;
    }

    .nav-menu ul li a {
        font-size: 14px;
    }

    .nav-menu {
        gap: 24px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 481px) {
    /* Troca de logo em tablets */
    .logo-desktop {
        display: none !important;
    }

    .logo-tablet {
        display: block !important;
    }

    .logo img {
        height: 55px;
    }
}

@media screen and (max-width: 1024px) {
    #hero {
        min-height: 75vw;
    }

    .background-pc {
        display: none !important;
    }

    .background-tablet {
        display: block !important;
    }

    .background-mobile {
        display: none !important;
    }

    .nav-menu ul {
        gap: 16px;
    }

    .nav-menu ul li a {
        font-size: 13px;
    }

    .nav-menu {
        gap: 20px;
    }
}

@media screen and (max-width: 900px) {
    .nav-menu ul li a {
        font-size: 12px;
    }

    .nav-menu ul {
        gap: 12px;
    }

    .nav-menu {
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    #header {
        display: none;
    }

    #hero {
        height: 42.55vw;
        min-height: auto;
        max-height: none;
        align-items: flex-end;
    }

    .background-pc {
        display: none !important;
    }

    .background-tablet {
        display: none !important;
    }

    .background-mobile {
        display: block !important;
    }

    .background-image {
        object-fit: contain;
    }

    .hero-content {
        padding: 20px;
        padding-bottom: 25px;
        text-align: center;
    }

    .hero-title {
        margin-bottom: 10px;
        white-space: nowrap;
        font-size: 47.5px;
        letter-spacing: 2.5px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-description {
        color: #FFF;
        text-align: center;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        font-family: 'Electrolize', sans-serif;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        padding: 0;
        max-width: fit-content;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    /* Volta para logo desktop em mobile */
    .logo-desktop {
        display: block !important;
    }

    .logo-tablet {
        display: none !important;
    }

    .logo img {
        height: 45px;
    }

    #hero {
        height: 42.55vw;
        min-height: auto;
        max-height: none;
        align-items: flex-end;
    }

    .hero-content {
        padding: 16px;
        padding-bottom: 16px;
        text-align: center;
    }

    .hero-title {
        margin-bottom: 6px;
        white-space: nowrap;
        font-size: 32px;
        letter-spacing: 1px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-description {
        color: #FFF;
        text-align: center;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        font-family: 'Electrolize', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        padding: 0;
        max-width: fit-content;
        margin: 0 auto;
    }
}

/* ===== ABOUT SERIE SECTION ===== */
#about-serie {
    position: relative;
    min-height: 100vh;
    background-color: transparent;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 100px 16px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    #about-serie {
        background-image: none;
        background-color: transparent;
    }
}

.about-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-texture-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.about-texture-mobile {
    display: none;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-title-wrapper {
    position: relative;
    display: block;
    width: calc(100% - 20px);
}

.about-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: 2px;
    padding-top: 41px;
    padding-left: 8px;
}

.title-line {
    width: 100%;
    height: auto;
    display: block;
}

.title-line-mobile {
    display: none;
}

.about-description {
    font-family: 'Electrolize', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #BDBDBD;
    margin: 0;
}

.about-description .highlight-link {
    color: #0CFFE8;
    text-decoration: underline;
    cursor: pointer;
}

.about-description strong {
    font-family: 'Audiowide', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
}

.about-logo-button {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.about-logo {
    display: flex;
}

.about-logo img {
    width: 200px;
    height: auto;
}

.btn-saiba-mais {
    padding: 20px 60px;
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: #0CFFE8;
    font-family: 'Audiowide', sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 280px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-saiba-mais:hover,
.btn-saiba-mais:active {
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn-hover.png');
    color: #FFFFFF;
}

.btn-mobile {
    display: none;
}

.btn-desktop {
    display: flex;
}

.about-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
}

.video-border {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    top: 0;
    left: 0;
}

.video-wrapper {
    position: relative;
    width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
    margin: 15px;
}

#player {
    width: 100%;
    height: 100%;
}

/* ===== ABOUT SERIE RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    #about-serie {
        padding: 0;
        background-image: none;
        background-color: transparent;
    }

    .about-texture-desktop {
        display: none;
    }

    .about-texture-mobile {
        display: block;
        z-index: 2;
    }

    .about-container {
        gap: 20px;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .about-title {
        color: #FFF;
        text-shadow: 0 0 7px #0CFFE8;
        font-family: 'Audiowide', sans-serif;
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding-left: 0;
        margin-bottom: 0;
    }

    .title-line-desktop {
        display: none;
    }

    .title-line-mobile {
        display: block;
        margin-left: -20px;
        margin-right: 5px;
        margin-top: 0;
        width: calc(100% + 20px - 25px);
        padding: 0;
    }

    .about-title-wrapper {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        position: relative;
    }

    .about-description {
        font-size: 17.5px;
        line-height: 2;
    }

    .about-logo img {
        width: 200px;
    }

    .about-content {
        order: 1;
    }

    .about-video {
        order: 2;
        width: 100%;
        align-self: center;
        padding: 0;
    }

    .btn-mobile {
        display: flex;
        order: 3;
        width: 100%;
        align-self: center;
    }

    .btn-desktop {
        display: none;
    }

    .about-logo-button {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .btn-saiba-mais {
        font-size: 25px;
        width: calc(100% - 16px);
        height: auto;
        aspect-ratio: 280 / 72;
        margin: 0 auto;
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    #about-serie {
        padding: 0;
        background-image: none;
        background-color: transparent;
    }

    .about-container {
        padding: 16px;
    }

    .about-title {
        color: #FFF;
        text-shadow: 0 0 7px #0CFFE8;
        font-family: 'Audiowide', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding-left: 0;
        margin-bottom: 0;
    }

    .title-line-mobile {
        margin-left: -16px;
        margin-right: 4px;
        margin-top: 0;
        width: calc(100% + 16px - 20px);
        padding: 0;
    }

    .about-title-wrapper {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        position: relative;
    }

    .about-description {
        font-size: 13px;
    }

    .about-logo img {
        width: 140px;
    }

    .btn-mobile {
        width: calc(100% - 16px);
        max-width: none;
        height: auto;
        aspect-ratio: 280 / 72;
        margin: 0 auto;
        padding: 0;
    }

    .video-wrapper {
        border-radius: 0;
    }
}

/* ===== MORE DETAILS SECTION ===== */
#more-details {
    position: relative;
    background-color: transparent;
    padding: 0;
}

@media screen and (max-width: 768px) {
    #more-details {
        background-color: transparent;
    }
}

/* Desktop Version */
.details-container-pc {
    display: block !important;
    position: relative;
    width: 100%;
}

.details-pc-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-pc-image {
    width: 100%;
    height: auto;
    display: block;
}

.details-pc-link {
    position: absolute;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.details-pc-link-1 {
    bottom: 8%;
    left: 2%;
    width: 96%;
    height: 4%;
}

.details-pc-link-2 {
    bottom: 4%;
    left: 2%;
    width: 96%;
    height: 4%;
}

.details-pc-link-3 {
    bottom: 0.5%;
    left: 2%;
    width: 96%;
    height: 3.5%;
}

/* Tablet Version */
.details-container-tablet {
    display: none !important;
    position: relative;
    width: 100%;
}

.details-tablet-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-tablet-image {
    width: 100%;
    height: auto;
    display: block;
}

.details-tablet-link {
    position: absolute;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.details-tablet-link-1 {
    bottom: 8%;
    left: 2%;
    width: 96%;
    height: 4%;
}

.details-tablet-link-2 {
    bottom: 4%;
    left: 2%;
    width: 96%;
    height: 4%;
}

.details-tablet-link-3 {
    bottom: 0.5%;
    left: 2%;
    width: 96%;
    height: 3.5%;
}

/* Mobile Version */
.details-container-mobile {
    display: none !important;
}

.details-mobile-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-mobile-image {
    width: 100%;
    height: auto;
    display: block;
}

.details-mobile-link {
    position: absolute;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.details-mobile-link-1 {
    bottom: 8%;
    left: 2%;
    width: 96%;
    height: 4%;
    margin-top: 8px;
}

.details-mobile-link-2 {
    bottom: 4%;
    left: 2%;
    width: 96%;
    height: 4%;
}

.details-mobile-link-3 {
    bottom: 0.5%;
    left: 2%;
    width: 96%;
    height: 3.5%;
}


/* ===== MORE DETAILS RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .details-container-pc {
        display: none !important;
    }

    .details-container-tablet {
        display: block !important;
    }

    .details-container-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .details-container-pc {
        display: none !important;
    }

    .details-container-tablet {
        display: none !important;
    }

    .details-container-mobile {
        display: block !important;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .details-mobile-image-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .details-mobile-image {
        width: 100%;
        height: auto;
    }

    .details-mobile-link-1 {
        bottom: 8.5%;
        left: 2%;
        width: 96%;
        height: 4.5%;
    }

    .details-mobile-link-2 {
        bottom: 4%;
        left: 2%;
        width: 96%;
        height: 4.5%;
    }

    .details-mobile-link-3 {
        bottom: 0%;
        left: 2%;
        width: 96%;
        height: 4%;
    }
}

@media screen and (max-width: 480px) {
    .details-container-pc {
        display: none !important;
    }

    .details-container-tablet {
        display: none !important;
    }

    .details-container-mobile {
        display: block !important;
    }

    .details-mobile-link-1 {
        bottom: 8.5%;
        left: 1%;
        width: 98%;
        height: 4.5%;
    }

    .details-mobile-link-2 {
        bottom: 4%;
        left: 1%;
        width: 98%;
        height: 4.5%;
    }

    .details-mobile-link-3 {
        bottom: 0%;
        left: 1%;
        width: 98%;
        height: 4%;
    }
}

/* ===== COURSE INFORMATION SECTION ===== */
#course-info {
    position: relative;
    background-color: #000000;
    background-image: url('Doc/4 sessao informacao de curso/HexTexture_pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    #course-info {
        background-image: none;
        background-color: transparent;
    }
}

.course-info-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.course-content-img {
    width: 100%;
    height: auto;
    display: block;
}

.course-content-pc {
    display: block !important;
}

.course-content-tablet,
.course-content-mobile {
    display: none !important;
}

.btn-aproveite {
    padding: 20px 60px;
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: #0CFFE8;
    font-family: 'Audiowide', sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 280px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-aproveite:hover,
.btn-aproveite:active {
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn-hover.png');
    color: #FFFFFF;
}

/* ===== COURSE INFORMATION RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    #course-info {
        background-image: url('Doc/4 sessao informacao de curso/HexTexture_tablet.png');
        padding: 80px 30px;
    }

    .course-content-pc {
        display: none !important;
    }

    .course-content-tablet {
        display: block !important;
    }

    .course-content-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    #course-info {
        padding: 60px 20px;
        background-image: none;
        background-color: transparent;
    }

    .course-info-container {
        gap: 30px;
    }

    .course-content-pc,
    .course-content-tablet {
        display: none !important;
    }

    .course-content-mobile {
        display: block !important;
        width: 100%;
    }

    .btn-aproveite {
        width: calc(100% - 16px);
        max-width: none;
        height: auto;
        aspect-ratio: 280 / 72;
        margin: 0 auto;
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    #course-info {
        padding: 40px 10px;
        background-image: none;
        background-color: transparent;
    }

    .course-content-mobile {
        width: 100%;
    }

    .btn-aproveite {
        font-size: 18px;
        padding: 0;
        width: calc(100% - 16px);
        max-width: none;
        height: auto;
        aspect-ratio: 280 / 72;
        margin: 0 auto;
    }
}

/* ===== STEPS TO SUCCESS SECTION ===== */
#steps-success {
    position: relative;
    background-color: transparent;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 100px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    #steps-success {
        background-image: none;
        background-color: transparent;
    }
}

.steps-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.steps-img {
    width: 100%;
    height: auto;
    display: block;
}

.steps-pc {
    display: block !important;
}

.steps-tablet,
.steps-mobile {
    display: none !important;
}

/* ===== STEPS TO SUCCESS RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    #steps-success {
        padding: 80px 30px;
    }

    .steps-pc {
        display: none !important;
    }

    .steps-tablet {
        display: block !important;
    }

    .steps-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    #steps-success {
        padding: 60px 20px;
        background-image: none;
        background-color: transparent;
    }

    .steps-container {
        gap: 30px;
    }

    .steps-pc,
    .steps-tablet {
        display: none !important;
    }

    .steps-mobile {
        display: block !important;
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #steps-success {
        padding: 40px 10px;
        background-image: none;
        background-color: transparent;
    }

    .steps-mobile {
        max-width: 100%;
        width: 100%;
    }
}

/* ===== PRICE SECTION ===== */
#price-section {
    position: relative;
    background-color: transparent;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    #price-section {
        background-image: none;
        background-color: transparent;
    }
}

.price-container {
    position: relative;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-img {
    width: 100%;
    height: auto;
    display: block;
}

.price-pc {
    display: block !important;
}

.price-tablet,
.price-mobile {
    display: none !important;
}

.btn-comprar-ja {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 60px;
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: #0CFFE8;
    font-family: 'Audiowide', sans-serif;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 320px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.btn-comprar-ja:hover,
.btn-comprar-ja:active {
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn-hover.png');
    color: #FFFFFF;
    transform: translateX(-50%) scale(1.05);
}

.btn-comprar {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 60px;
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    color: #0CFFE8;
    font-family: 'Audiowide', sans-serif;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 320px;
    height: 80px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.btn-comprar:hover,
.btn-comprar:active {
    background-color: transparent;
    background-image: url('Doc/botoes_geral/btn-hover.png');
    color: #FFFFFF;
    transform: translateX(-50%) scale(1.05);
}

/* ===== PRICE SECTION RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .price-pc {
        display: none !important;
    }

    .price-tablet {
        display: block !important;
    }

    .price-mobile {
        display: none !important;
    }

    .btn-comprar-ja {
        display: none !important;
    }

    .btn-comprar {
        display: flex !important;
        font-size: 20px;
        width: 300px;
        height: 75px;
        bottom: 6%;
    }
}

@media screen and (max-width: 768px) {
    #price-section {
        background-image: none;
        background-color: transparent;
    }

    .price-pc,
    .price-tablet {
        display: none !important;
    }

    .price-mobile {
        display: block !important;
    }

    .btn-comprar-ja {
        display: flex !important;
        font-size: 22px;
        width: calc(100% - 16px);
        height: auto;
        aspect-ratio: 320 / 80;
        top: 52%;
        left: 8px;
        right: 8px;
        transform: none;
        margin: 0 auto;
    }

    .btn-comprar-ja:hover,
    .btn-comprar-ja:active {
        transform: scale(1.05);
    }

    .btn-comprar {
        display: flex !important;
        font-size: 18px;
        width: calc(100% - 16px);
        height: auto;
        aspect-ratio: 320 / 80;
        bottom: 6%;
        left: 8px;
        right: 8px;
        transform: none;
        margin: 0 auto;
        padding: 0;
    }

    .btn-comprar:hover,
    .btn-comprar:active {
        transform: scale(1.05);
    }
}

@media screen and (max-width: 480px) {
    #price-section {
        background-image: none;
        background-color: transparent;
    }

    .btn-comprar-ja {
        display: flex !important;
        font-size: 20px;
        width: calc(100% - 16px);
        height: auto;
        aspect-ratio: 320 / 80;
        top: 52%;
        left: 8px;
        right: 8px;
        transform: none;
        margin: 0 auto;
        padding: 0;
    }

    .btn-comprar-ja:hover,
    .btn-comprar-ja:active {
        transform: scale(1.05);
    }

    .btn-comprar {
        display: flex !important;
        font-size: 16px;
        width: calc(100% - 16px);
        height: auto;
        aspect-ratio: 320 / 80;
        bottom: 5%;
        left: 8px;
        right: 8px;
        transform: none;
        margin: 0 auto;
        padding: 0;
    }

    .btn-comprar:hover,
    .btn-comprar:active {
        transform: scale(1.05);
    }
}

/* ===== FAQ SECTION ===== */
#faq {
    position: relative;
    background-color: transparent;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 100px 40px;
}

@media screen and (max-width: 768px) {
    #faq {
        background-image: none;
        background-color: transparent;
    }
}

.faq-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(12, 255, 232, 0.3);
}

.faq-intro {
    font-family: 'Electrolize', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-contact {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.faq-contact > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.faq-contact p {
    font-family: 'Electrolize', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 0;
}

.faq-contact a {
    color: #0CFFE8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-contact a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.faq-hours {
    font-size: 14px;
    color: #CCCCCC;
    margin-top: 15px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2px;
}

.faq-item.active {
    background-color: transparent;
}

.faq-question {
    width: 100%;
    background-color: rgba(12, 255, 232, 0.4);
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(12, 255, 232, 0.5);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    color: #FFFFFF;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
    padding: 0 24px;
    background-color: transparent;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 24px;
    background-color: rgba(12, 255, 232, 0.15);
}

.faq-answer p {
    font-family: 'Electrolize', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 12px 0;
}

.faq-answer a {
    color: #0CFFE8;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ===== FAQ RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    #faq {
        padding: 80px 30px;
        background-image: none;
        background-color: transparent;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-intro {
        font-size: 15px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-contact p {
        font-size: 14px;
    }

    .faq-contact > div {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    #faq {
        padding: 60px 20px;
        background-image: none;
        background-color: transparent;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-intro {
        font-size: 14px;
    }

    .faq-question {
        font-size: 15px;
        padding: 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* ===== FOOTER ===== */
#footer {
    background-color: #0A0A0A;
    padding: 50px 40px;
    border-top: 2px solid rgba(12, 255, 232, 0.2);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Audiowide', sans-serif;
    font-size: 16px;
    color: #0CFFE8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-disclaimer {
    font-family: 'Electrolize', sans-serif;
    font-size: 13px;
    color: #999999;
    line-height: 1.8;
    margin: 0 0 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-family: 'Audiowide', sans-serif;
    font-size: 14px;
    color: #0CFFE8;
    margin: 0;
    letter-spacing: 1px;
}

/* ===== FOOTER RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    #footer {
        padding: 40px 30px;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
    }

    .footer-disclaimer {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    #footer {
        padding: 30px 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-disclaimer {
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* ===== PLACEHOLDER SECTIONS ===== */
section[id^="conteudo"],
section[id^="nossa"],
section[id^="oferta"] {
    background-color: transparent;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    min-height: 100vh;
}

@media screen and (max-width: 768px) {
    section[id^="conteudo"],
    section[id^="nossa"],
    section[id^="oferta"] {
        background-image: none;
        background-color: transparent;
    }
}
