/* ===== GLOBAL RESET & STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Electrolize', sans-serif;
    font-size: 16px;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

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: 48px;
    width: auto;
}

.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;
}

.background-tablet,
.background-mobile {
    display: none;
}

.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) {
    #hero {
        min-height: 75vw;
    }

    .background-pc {
        display: none;
    }

    .background-tablet {
        display: block;
    }

    .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-tablet {
        display: none;
    }

    .background-mobile {
        display: block;
    }

    .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) {
    #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: #000000;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 100px 16px;
    overflow: hidden;
}

.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: 20px;
}

.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: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
}

#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;
    }

    .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: 350px;
        height: 90px;
    }
}

@media screen and (max-width: 480px) {
    #about-serie {
        padding: 0;
    }

    .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: 100%;
        max-width: 280px;
    }

    .video-wrapper {
        border-radius: 4px;
    }
}

/* ===== MORE DETAILS SECTION ===== */
#more-details {
    position: relative;
    background-color: #1E1E1E;
    padding: 0;
}

.fine-line-top {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 16px;
    filter: drop-shadow(0 0 6px rgba(12, 255, 232, 1));
}

.fine-line-bottom {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    filter: drop-shadow(0 0 6px rgba(12, 255, 232, 1));
}

.fine-line-pc {
    display: block;
}

.fine-line-tablet,
.fine-line-mobile {
    display: none;
}

.details-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    width: 100%;
}

.details-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 0 7px #0CFFE8;
    margin-bottom: 80px;
    letter-spacing: 2px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    margin-bottom: 100px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.detail-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: relative;
}

.detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-number {
    font-family: 'Audiowide', sans-serif;
    font-size: 36px;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.detail-text {
    font-family: 'Electrolize', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 220px;
    margin: 0;
}

.details-footnotes {
    text-align: center;
    padding: 30px 40px 50px;
    background-color: #141414;
    position: relative;
}

.details-footnotes p {
    font-family: 'Electrolize', sans-serif;
    font-size: 12px;
    color: #0CFFE8;
    line-height: 1.8;
    margin: 6px 0;
}

/* ===== MORE DETAILS RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .fine-line-pc {
        display: none;
    }

    .fine-line-tablet {
        display: block;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
        row-gap: 80px;
    }

    .details-title {
        font-size: 40px;
        margin-bottom: 60px;
    }

    .detail-number {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .details-container {
        padding: 60px 30px 40px;
    }

    .fine-line-tablet {
        display: none;
    }

    .fine-line-mobile {
        display: block;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
        row-gap: 70px;
    }

    .details-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .detail-icon {
        width: 100px;
        height: 100px;
    }

    .detail-number {
        font-size: 28px;
    }

    .detail-text {
        font-size: 13px;
    }

    .details-footnotes {
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .details-container {
        padding: 50px 20px 30px;
    }

    .details-title {
        font-size: 26px;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    .details-grid {
        gap: 40px 20px;
        row-gap: 60px;
    }

    .detail-icon {
        width: 80px;
        height: 80px;
    }

    .detail-number {
        font-size: 24px;
    }

    .detail-text {
        font-size: 12px;
        max-width: 160px;
    }

    .details-footnotes {
        margin-top: 20px;
    }

    .details-footnotes p {
        font-size: 10px;
        line-height: 1.6;
    }
}

/* ===== 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;
}

.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;
}

.course-content-tablet,
.course-content-mobile {
    display: none;
}

.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;
    }

    .course-content-tablet {
        display: block;
    }

    .course-content-mobile {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #course-info {
        padding: 60px 20px;
        background-image: url('Doc/4 sessao informacao de curso/HexTexture_tablet.png');
    }

    .course-info-container {
        gap: 30px;
    }

    .course-content-pc,
    .course-content-tablet {
        display: none;
    }

    .course-content-mobile {
        display: block;
        width: 100%;
    }

    .btn-aproveite {
        width: 100%;
        max-width: 280px;
    }
}

@media screen and (max-width: 480px) {
    #course-info {
        padding: 40px 10px;
    }

    .course-content-mobile {
        width: 100%;
    }

    .btn-aproveite {
        font-size: 18px;
        padding: 16px 40px;
        height: 60px;
    }
}

/* ===== STEPS TO SUCCESS SECTION ===== */
#steps-success {
    position: relative;
    background-color: #000000;
    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;
}

.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;
}

.steps-tablet,
.steps-mobile {
    display: none;
}

/* ===== STEPS TO SUCCESS RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    #steps-success {
        padding: 80px 30px;
    }

    .steps-pc {
        display: none;
    }

    .steps-tablet {
        display: block;
    }

    .steps-mobile {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #steps-success {
        padding: 60px 20px;
    }

    .steps-container {
        gap: 30px;
    }

    .steps-pc,
    .steps-tablet {
        display: none;
    }

    .steps-mobile {
        display: block;
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #steps-success {
        padding: 40px 10px;
    }

    .steps-mobile {
        max-width: 100%;
        width: 100%;
    }
}

/* ===== PRICE SECTION ===== */
#price-section {
    position: relative;
    background-color: #000000;
    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;
}

.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;
}

.price-tablet,
.price-mobile {
    display: none;
}

.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: flex;
    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;
    }

    .price-tablet {
        display: block;
    }

    .price-mobile {
        display: none;
    }

    .btn-comprar {
        font-size: 20px;
        width: 300px;
        height: 75px;
        bottom: 6%;
    }
}

@media screen and (max-width: 768px) {
    .price-pc,
    .price-tablet {
        display: none;
    }

    .price-mobile {
        display: block;
    }

    .btn-comprar {
        font-size: 18px;
        width: 280px;
        height: 70px;
        bottom: 6%;
    }
}

@media screen and (max-width: 480px) {
    .btn-comprar {
        font-size: 16px;
        width: 240px;
        height: 60px;
        padding: 16px 40px;
        bottom: 5%;
    }
}

/* ===== FAQ SECTION ===== */
#faq {
    position: relative;
    background-color: #000000;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    padding: 100px 40px;
}

.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;
}

.faq-contact p {
    font-family: 'Electrolize', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 8px 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: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(12, 255, 232, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(12, 255, 232, 0.6);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    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: #0CFFE8;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(12, 255, 232, 0.05);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.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;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-family: 'Electrolize', sans-serif;
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.8;
    margin: 12px 0;
}

.faq-answer a {
    color: #0CFFE8;
    text-decoration: none;
    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;
    }

    .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;
    }
}

@media screen and (max-width: 480px) {
    #faq {
        padding: 60px 20px;
    }

    .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: #000000;
    background-image: url('Doc/texture_all_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    min-height: 100vh;
}
