:root {
    --primary-color: #ff0000; /* Cor dourada/bronze dos botões */
    --secondary-color: #6e60bb; /* Cor roxa/vinho */
    --bg-dark: #000;
    --text-dark: #fff;
    --text-light: #fff;
    --bg-light: #111;
}

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Imagem/carol.jpg');
    background-size: cover;
    background-position: center 33%;
    background-position: right 35;
    color: var(--text-light);
    padding: 100px 0;
    text-align: left;
    position: relative;
}

.hero-text-mobile {
    display: none;
}

.social-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-icons a:hover {
    transform: scale(1.2);
}
.hero-content {
    max-width: 600px;
}

.logo {
    width: 500px;
    margin-bottom: 50px;
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    display: block;
}

.hero-text {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 4.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

    .hero h1 {
        font-size: 2.5rem;
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 1.8rem;
        }
    }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff0000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* What is section */
.what-is {
    padding: 80px 0;
}

.what-is-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.what-is-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.about-image {
    flex: 0 0 140px;
    max-width: 140px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-block {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.faq-block h2 {
    margin-bottom: 14px;
}

.faq-question {
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-answer {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    .hero {
        min-height: 450px;
        padding: 0;
        background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('Imagem/carol.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 0;
    }
    .hero::before {
        display: none;
    }
    /* Posicionar ícones de redes sociais no canto direito */
    .social-icons {
        position: absolute;
        top: 20px;
        right: 15px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 10;
    }
    .social-icons a img {
        width: 35px;
        height: 35px;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        background-color: transparent;
        color: var(--text-light);
        position: absolute;
        z-index: 5;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    /* Logo no topo sobre a foto */
    .hero-logo {
        width: 120px;
        height: auto;
        margin-bottom: 0;
        margin-left: 15px;
        margin-top: 15px;
        border-radius: 0;
        display: block;
        position: relative;
        transform: none;
        z-index: 6;
    }
    .logo {
        width: 260px;
        margin-bottom: 20px;
    }
    /* Esconder título e botão dentro do header no mobile (vai aparecer abaixo do hero) */
    .hero-content h1,
    .hero-content .btn-primary {
        display: none !important;
    }

    /* Bloco que será exibido somente em telas pequenas, abaixo do header */
    .hero-text-mobile {
        display: block;
        color: var(--text-light);
        padding: 30px 20px 40px;
        text-align: center;
        background: rgba(0, 0, 0, 0.6);
        margin-top: 0;
    }

    .hero-text-mobile .hero-text-mobile-inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .hero-text-mobile h1 {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .hero-text-mobile .btn-primary {
        display: inline-block;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        margin: 20px auto 0;
    }
    .what-is-container,
    .about-grid,
    .books {
        flex-direction: column;
        align-items: center;
    }
    .what-is-content,
    .about-right {
        width: 100%;
    }
    .about-text,
    .what-is-content,
    .feature-card,
    .book {
        text-align: center;
    }
    .about-grid {
        flex-direction: column;
        align-items: center;
    }
    .about-image {
        max-width: 220px;
    }
    .about-right {
        width: 100%;
    }
    .about-text {
        text-align: center;
    }
    .books {
        gap: 20px;
        justify-content: center;
    }
}

.what-is-content {
    flex: 1;
}

.features-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    color: var(--text-dark);
}

/* Steps placed inside the right column of `what-is` */
.what-is-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.what-is-steps .step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.what-is-steps .step span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.what-is-steps .step p {
    margin: 0;
}

/* Pricing Section */
.pricing {
    background-color: #111;
    padding: 60px 0;
    text-align: center;
}

.old-price {
    text-decoration: line-through;
    color: #fafaf9;
}

.current-price {
    font-size: 4.6rem;
    color: var(--text-dark);
    margin: 10px 0;
}

.btn-secondary {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

/* Livros Section */
.fundolivros {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('Imagem/FundoCorrente.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    box-shadow: inset 0 80px 120px rgba(0,0,0,0.9), inset 0 -40px 80px rgba(0,0,0,0.8), 0 30px 60px rgba(0,0,0,0.6);
    border-top: 1px solid rgba(0,0,0,0.6);
    transform: translateZ(0);
}
.livros-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3.4rem;
}
.books {
    display: flex;
    gap: 320px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}
.book {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0,0,0,0.45);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    width: 280px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.book img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.book-title {
    margin: 12px 0 6px;
    font-size: 1.55rem;
}
.book-price {
    margin-bottom: 12px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #020000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 1rem;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    .what-is-container,
    .about-grid,
    .books {
        flex-direction: column;
        align-items: center;
    }
    .what-is-image {
        flex: 0 0 auto;
    }
    .what-is-image img {
        height: auto;
        width: 100%;
    }
    .books {
        gap: 20px;
        justify-content: center;
    }
    .book {
        width: 100%;
        max-width: 320px;
    }
    .book img {
        height: auto;
    }
}
