:root {
    --orange: #F94C13;
    --orange-dark: #d83d0c;
    --black: #151515;
    --bg-dark: #1a1a1a;
    --branco: #F4F4F5;
    --white: #ffffff;
    --verde: #58A040;
    --text-muted: #aaaaaa;
}

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

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Texture/Grain Overlay */
.noise-overlay {
    display: none;
}

/* Typography Foundation */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

p,
span,
strong {
    font-family: 'Inter', sans-serif;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.slide-left {
    opacity: 0;
    transform: translateX(-80px);
}

.scroll-reveal.slide-right {
    opacity: 0;
    transform: translateX(80px);
}

.scroll-reveal.slide-left.in-view,
.scroll-reveal.slide-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax Utils */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Topo Oferta */
#topo-oferta {
    padding: 8px 0;
    text-align: center;
    background-color: #ffcc00;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    font-family: 'Outfit', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: padding 0.3s ease;
}

#topo-oferta.scrolled {
    padding: 7px 0;
}

.topo-label {
    font-size: 0.7rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
    max-height: 20px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

#topo-oferta.scrolled .topo-label {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*
    background-color: var(--black);
    padding: 5px;
    border-radius: 10px;
    */
    transition: padding 0.3s ease;
}



.countdown-box {
    background: linear-gradient(135deg, #e0e0e0, #999);
    color: #1a1a1a;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease, height 0.3s ease, font-size 0.3s ease;
}

#topo-oferta.scrolled .countdown-box {
    width: 41px;
    height: 41px;
    font-size: 1.28rem;
}

.countdown-box::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine-vertical 2s infinite ease-in-out;
}

#days.countdown-box::after,
#hours.countdown-box::after {
    display: none;
}

#minutes.countdown-box::after {
    animation-duration: 4s;
}

#seconds.countdown-box::after {
    animation-duration: 2s;
}

@keyframes shine-vertical {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.countdown-item span {
    font-size: 0.6rem;
    color: var(--black);
    margin-top: 4px;
    font-weight: 600;
    text-transform: lowercase;
    transition: font-size 0.3s ease, margin 0.3s ease;
}

#topo-oferta.scrolled .countdown-item span {
    font-size: 0.51rem;
    margin-top: 3px;
}

/* Topo / Hero */
#topo {
    padding: 40px 0 60px 0;
    background-image: url('img/bg-topo.png');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    #topo {
        background-image: url('img/bg-mobile2.png');
        background-position: center;
        padding-bottom: 0;
    }
}

.hero-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-logos {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.hero-logos img#instituto {
    height: 45px;
}

.hero-logos img#mec {
    height: 62.5px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
}

.hero-content h2 {
    margin-bottom: 1rem;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-pos {
    font-size: 1.25rem;
    font-weight: 400;
}

.hero-eng {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--orange);
    background: linear-gradient(90deg, var(--orange), #FED70D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-fs {
    font-size: 2.4rem;
    font-weight: 700;
}

.hero-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
}

.hero-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-action p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-self: flex-start;
    min-width: 300px;
    z-index: -1;
}

.hero-image img#player {
    max-width: 100%;
    margin-bottom: -100px;
    margin-top: -25px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

@media(max-width: 768px) {
    .hero-wrap {
        flex-direction: column;
        text-align: center;
    }

    .hero-logos {
        justify-content: center;
        position: relative;
    }

    .hero-logos img#instituto {
        height: 45px;
    }

    .hero-logos img#mec {
        position: absolute;
        right: 0;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img#player {
        margin-bottom: 0;
        margin-top: -15%;
        position: relative;
        z-index: -1;
    }

    .hero-action .botao,
    .hero-action p {
        margin: 0 40px;
        width: auto;
    }
}

/* Buttons */
.botao {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(249, 76, 19, 0.4);
}

.botao:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 76, 19, 0.6);
}

.botao.whats {
    background: linear-gradient(135deg, #4ade80, var(--verde));
    box-shadow: 0 4px 15px rgba(88, 160, 64, 0.4);
}

.botao.whats:hover {
    background: linear-gradient(135deg, #52e588, #5fac47);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(88, 160, 64, 0.5), 0 0 15px rgba(74, 222, 128, 0.3);
}

.pulso {
    animation: pulso-fade 1s infinite;
}

@keyframes pulso-fade {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Detalhes / Strip */
#detalhes {
    padding: 1.5rem 0;
    background: var(--orange);
    background-image: url('img/textura.png');
    background-blend-mode: overlay;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detalhes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background-color: var(--black);
    background-image: url('img/textura.png');
    background-blend-mode: overlay;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

.card i,
.card img.icon-img {
    height: 2rem;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    width: auto;
    display: inline-block;
}

.card strong {
    display: block;
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}

.card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Professores Section */
#como-funciona {
    padding: 2.5rem 0;
    background: var(--black);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--white);
}

#prof-title {
    background: linear-gradient(90deg, var(--orange), #FED70D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin: 0 auto 2.5rem auto;
}

.section-title span {
    color: var(--orange);
}

.mook-block {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mook-block img {
    max-width: 90%;
}

.creative-feats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 2.5rem;
}

@media(max-width: 768px) {
    .creative-feats {
        grid-template-columns: 1fr;
    }
}

.c-feat {
    background: #111;
    background-image: url('img/textura.png');
    background-size: 40px;
    background-blend-mode: overlay;
    border: 1.5px solid var(--orange);
    border-radius: 60px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-feat:hover {
    transform: scale(1.02);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 8px 25px rgba(249, 76, 19, 0.2);
    background: #1a1a1a;
}

.c-feat span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.prof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.professor {
    background: #FAFAFA;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem;
    transition: all 0.3s;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-areas:
        "img info"
        "img bio";
    gap: 8px 15px;
    align-items: start;
}

.professor:hover {
    border-color: rgba(249, 76, 19, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.prof-top {
    display: contents;
}

.prof-top img {
    grid-area: img;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    border: 1.5px solid var(--white);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.prof-info {
    grid-area: info;
    align-self: end;
}

.prof-info h3 {
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.2;
}

.prof-info h3 span {
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    color: var(--black);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    font-family: 'Inter', sans-serif;
}

.prof-info .titulo {
    font-size: 0.8rem;
    color: var(--black);
    font-weight: 500;
}

.professor p.bio {
    grid-area: bio;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

/* Institucional Anhanguera */
#institucional-anhanguera {
    padding: 3rem 0;
    background-color: #f8f8f8;
    color: #333;
}

.inst-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.inst-content {
    flex: 1.2;
}

.inst-titulo {
    color: var(--orange);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.inst-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.inst-cards {
    display: flex;
    gap: 15px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.inst-card {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 15px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.inst-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.inst-card span {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.3;
    display: block;
}

.inst-logo {
    flex: 0.8;
    text-align: right;
}

.inst-logo img {
    max-width: 100%;
    width: 320px;
}

@media (max-width: 768px) {
    .inst-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .inst-titulo {
        display: none;
    }

    .inst-logo {
        text-align: center;
        order: -1;
    }

    .inst-logo img {
        width: 200px;
    }

    .inst-cards {
        justify-content: center;
    }
}

/* MEC Section */
#mec-cert {
    padding: 3rem 0;
    background: linear-gradient(90deg, #A43F1B, #F94C13);
    background-image: linear-gradient(90deg, #A43F1B, #F94C13), url('img/textura.png');
    background-blend-mode: normal, overlay;
    background-size: auto, 120px;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat, repeat;
    color: #fff;
    border-top: none;
    border-bottom: none;
    position: relative;
}

.mec-wrap {
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

@media(max-width: 768px) {
    .mec-wrap {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .mec-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mec-img img {
        margin: 0 auto;
    }
}

.mec-content {
    flex: 1;
}

.mec-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mec-content p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
}

.mec-content a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.mec-img {
    flex: 0 0 auto;
    width: 300px;
}

.mec-img img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.mec-img img:hover {
    transform: rotate(3deg);
}

/* Bonus Mentoria Section */
#bonus-mentoria {
    padding: 2rem 0 0.5rem 0;
    background: linear-gradient(90deg, #A43F1B, #F94C13);
    background-image: linear-gradient(90deg, #A43F1B, #F94C13), url('img/textura.png');
    background-blend-mode: normal, overlay;
    background-size: auto, 120px;
    background-attachment: scroll, fixed;
    background-repeat: no-repeat, repeat;
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.bonus-content {
    flex: none;
    max-width: 800px;
}

.bonus-tag {
    display: inline-block;
    background: #fff;
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.bonus-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

#bonus-mentoria h3 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-family: 'Outfit', sans-serif;
}

.bonus-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 30px auto;
    background: rgba(0, 0, 0, 0.15);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bonus-img-inline {
    max-width: 240px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    margin-bottom: -25px;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    margin-top: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.bonus-img-inline:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .bonus-wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .bonus-img {
        text-align: center;
        order: -1;
    }

    #bonus-mentoria h3 {
        font-size: 1.8rem;
    }
}

/* Modulos */
#modulos {
    padding: 3rem 0;
    background-color: var(--bg-dark);
    background-image: url('img/textura.png');
    background-size: 120px;
    background-blend-mode: overlay;
    position: relative;
}

#modulos h2.section-title {
    background: linear-gradient(90deg, var(--orange), #FED70D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin: 0 auto 3rem auto;
}

.modulos-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.modulo-item {
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.modulo-item i {
    color: var(--orange);
    font-size: 1.4rem;
}

.modulo-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

@media (max-width: 768px) {
    .modulos-flex {
        grid-template-columns: 1fr;
    }
}

/* Perfil Simulating Linkedin - Clean Edition */
#perfil {
    padding: 2.5rem 0;
    background: #f3f2ef;
    color: var(--black);
}

#perfil h2.section-title {
    color: var(--black);
}

.linkedin-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e0dfdc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.li-banner {
    height: 90px;
    background-color: #0e76a8;
    position: relative;
}

.li-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    bottom: -50px;
    left: 20px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.li-content {
    padding: 60px 20px 20px 20px;
}

.li-nome {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.li-cargo {
    color: #555;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 14px;
}

.li-school {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 14px;
}

.li-school img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.li-school p {
    font-size: 0.82rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.li-school span {
    font-weight: 400;
    color: #666;
    display: block;
    font-size: 0.78rem;
}

.li-desc {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.li-desc h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
    font-family: 'Outfit', sans-serif;
}

.li-desc p {
    font-size: 0.8rem;
    color: #444;
    margin-bottom: 0;
    line-height: 1.5;
}

.li-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.badge {
    background: #fff;
    color: #777;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 1px solid #c8c6c0;
    font-family: 'Inter', sans-serif;
}

.badge i {
    color: #888;
    margin-right: 4px;
    font-size: 0.7rem;
}

.badge-skill {
    background: #fff;
    color: #777;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 1px solid #c8c6c0;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

/* Marquee Suave Animado */
.marquee-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -25px;
    margin-bottom: -25px;
}

.marquee-container {
    background: #ffd700;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg);
    margin: 0 -30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-text 15s linear infinite;
    font-family: 'Outfit', sans-serif;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
}

.marquee-content span {
    padding: 0 2rem;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Preco CTA */
#preco {
    padding: 3rem 0;
    background: linear-gradient(rgba(249, 76, 19, 0.1), rgba(0, 0, 0, 0.8)), url('img/textura.png');
    background-color: var(--black);
    text-align: center;
}

.preco-focus {
    max-width: 600px;
    margin: 0 auto;
}

.preco-focus img {
    max-width: 80%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.preco-focus h3 {
    margin-bottom: 2rem;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    line-height: 1.1;
}

/* FAQ Accordion Compacto */
#faq {
    padding: 2.5rem 0;
    background: var(--bg-dark);
}

.faq-wrap {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.faq-item.active {
    border-color: rgba(249, 76, 19, 0.4);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-item.active .faq-btn {
    color: var(--orange);
}

.faq-body {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 300px;
    padding: 0 20px 20px 20px;
}

.faq-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Rodape */
#rodape {
    background-color: #999;
    background-image: url('img/textura.png');
    background-size: 70px;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#rodape p {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 5px;
}

#rodape img {
    margin-top: 15px;
    max-width: 180px;
}

/* Modal Elegante */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--black);
    margin: 10% auto;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.topo-modal {
    padding: 15px 20px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topo-modal h3 {
    font-size: 1.1rem;
}

.close {
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

.corpo-modal {
    padding: 16px 20px;
}

.corpo-modal p {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #ccc;
}

.corpo-modal input[type="text"],
.corpo-modal input[type="email"],
.corpo-modal input[type="tel"],
.corpo-modal select {
    width: 100%;
    padding: 8px 10px;
    background: #f4f4f5;
    border: 1px solid #ddd;
    color: #222;
    border-radius: 4px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.corpo-modal input::placeholder {
    color: #888;
}

.corpo-modal select:invalid {
    color: #888;
}

.corpo-modal select option {
    color: #222;
}

.corpo-modal input:focus,
.corpo-modal select:focus {
    outline: none;
    border-color: var(--orange);
}

.corpo-modal input[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, var(--verde));
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.3s;
}

.corpo-modal input[type="submit"]:hover {
    box-shadow: 0 5px 15px rgba(88, 160, 64, 0.4);
}

/* Sticky Footer Banner */
#sticky-footer-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(21, 21, 21, 0.85);
    /* var(--black) = #151515 */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    padding: 8px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

#sticky-footer-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#sticky-footer-banner p {
    font-size: 0.9rem;
    color: var(--white);
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

#sticky-footer-banner .btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
}

#sticky-footer-banner .close-footer {
    position: absolute;
    top: 5px;
    right: 15px;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

#sticky-footer-banner .close-footer:hover {
    color: var(--white);
}

@media(max-width: 768px) {
    #sticky-footer-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-top: 12px;
        padding-bottom: 10px;
    }

    #sticky-footer-banner p {
        font-size: 0.85rem;
    }

    #sticky-footer-banner .btn-small {
        width: auto;
        align-self: stretch;
        margin: 0 40px;
        padding: 10px 18px;
        justify-content: center;
    }
}