body {
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
}

/* --- ESTILOS DO FUNDO FIXO --- */
.full-screen-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/banner-initial.png');
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

/* --- ESTILOS DO CONTEÚDO PRINCIPAL (QUE ROLA) --- */
.full-screen-content {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.full-screen-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 0.08rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.full-screen-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.full-screen-content .call-to-action {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- ESTILOS DO BOTÃO --- */
.button {
    background-color: #e50914; 
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.button:hover {
    background-color: #f40612;
    transform: scale(1.05);
}

/* --- ESTILOS DA SEÇÃO DA TV --- */
.tv-section {
    background-color: #000;
    color: white;
    padding: 70px 45px;
}

.container-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.text-column {
    flex: 1;
    padding-right: 50px;
}

.image-column {
    flex: 1;
}

.tv-section h2 {
    font-size: 3.7rem;
    font-weight: bold;
}

.tv-section p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.image-column img {
    max-width: 100%;
    height: auto;
}

/* --- ESTILO PARA A LINHA DIVISORA CINZA --- */
.divider {
    height: 5px;
    background-color: #6c6c6c;
    margin: 0;
    padding: 0;
}

/* --- ESTILOS DA NOVA SEÇÃO (DISPOSITIVOS) --- */
.devices-section {
    background-color: #000;
    color: white;
    padding: 70px 45px;
}

.devices-section h2 {
    font-size: 3.7rem;
    font-weight: bold;
    line-height: 1.2; 
}

.devices-section p {
    font-size: 1.4rem; 
    line-height: 1.8; 
}

.container-flex.reversed {
    flex-direction: row-reverse;
}

/* --- ESTILOS DO HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 10;
}


.divider-footer {
    height: 5px;
    background-color: #6c6c6c;
    margin: 0;
    padding: 0;
}

/* --- ESTILOS DO RODAPÉ --- */
.main-footer {
    background-color: #000;
    color: #999;
    padding: 30px 45px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
}

.footer-contact {
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-column {
    flex-basis: 22%;
    min-width: 150px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-brand {
    font-size: 0.8rem;
    margin-top: 20px;
}

/* --- ESTILOS DA SEÇÃO DE PERGUNTAS FREQUENTES --- */
.faq-section {
    background-color: #000000;
    color: #fff;
    padding: 70px 45px;
    text-align: center;
}

.faq-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.accordion-item {
    background-color: #2c2c2c;
    border: 1px solid #000;
    margin-bottom: 10px;
    border-radius: 5px;
}

.accordion-button {
    color: #ffffff;
    background-color: transparent;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 10px 25px; 
    position: relative;
    display: flex;
    justify-content: space-between;
}
.accordion-button::after {
    background-image: url('../assets/images/add.svg') !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px !important;
    height: 20px !important;
    transform: none !important;
    transition: none !important;
}
.accordion-button:not(.collapsed)::after {
    transform: none !important;
}


.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #2c2c2c;
    box-shadow: none;
}

.accordion-body {
    background-color: #ffffff;
    color: #000000;
    text-align: left;
    padding: 25px;
}
.call-to-action-faq {
    margin-top: 50px;
}

.call-to-action-faq p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}