@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Merriweather+Sans:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
    /* Neutrals */
    --color-white: #F2F2F3;
    --color-gray-100: #D9D9D9;
    --color-gray-500: #504D4D;
    --color-darkest: #1E1818;
    --color-black: #050202;

    /* Copper Rust */
    --color-copper-lightest: #F3EEE1;
    --color-copper: #905A4A;
    --color-copper-dark: #7C4B3D;

    /* Wine Berry */
    --color-wine: #652330;
    --color-wine-dark: #270E10;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Merriweather Sans', sans-serif;

    /* Spacing */
    --space-base: 16px;
    --space-md: 32px;
    --space-lg: 64px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-darkest);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-base);
}

header {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-wine);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--color-darkest);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-copper);
}

.btn-login {
    background-color: #EBDDD4;
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    color: var(--color-darkest);
    font-weight: 700;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: var(--color-gray-100);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('uploads/fundo.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero-curves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    /* Darkened significantly for more definition */
}

.hero-curves svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(144, 90, 74, 0.08) 0%, rgba(247, 245, 242, 0) 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Tablet Mockup */
.tablet-wrapper {
    perspective: 1000px;
}

.tablet {
    width: 280px;
    height: 380px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 12px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotateY(15deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tablet:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.tablet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    width: 3px;
    height: 40px;
    background: #333;
    border-radius: 2px;
    transform: translateY(-50%);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.tablet-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tablet-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.badge {
    background: transparent;
    border: 1px solid var(--color-copper);
    color: var(--color-copper);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    line-height: 110%;
    margin-bottom: 24px;
    color: var(--color-darkest);
}

h1 em {
    font-style: italic;
    color: var(--color-copper);
    display: block;
}

.subtitle {
    font-size: 1.125rem;
    line-height: 160%;
    color: var(--color-gray-500);
    max-width: 500px;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 48px;
}

.hero-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    width: 100%;
    align-items: stretch;
}

.hero-form input {
    flex: 1;
    /* Faz os 3 inputs dividirem o espaço igualmente na mesma linha */
    min-width: 180px;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: white;
    transition: all 0.3s ease;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--color-copper);
    box-shadow: 0 0 0 3px rgba(144, 90, 74, 0.15);
}

.hero-form button {
    border: none;
    cursor: pointer;
    width: 100%;
    flex: 1 1 100%;
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form input {
        flex: 1 1 auto;
        width: 100%;
        min-width: 100%;
        margin-bottom: 8px;
    }

    .hero-form button {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100%;
        margin: 8px 0 0 0;
        display: block;
        text-align: center;
        padding: 18px 16px;
        box-sizing: border-box;
        border-radius: 9999px;
    }
}

.btn-primary {
    background-color: var(--color-copper);
    color: white;
    padding: 18px 40px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 10px 20px rgba(144, 90, 74, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-copper-dark);
    transform: translateY(-2px);
}

.link-video {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-darkest);
    font-weight: 700;
    font-size: 1rem;
}

.play-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-copper);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gray-100);
    border: 3px solid white;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.75rem;
    line-height: 160%;
    color: var(--color-gray-500);
}

/* Photo Section */
.hero-photo-wrapper {
    position: relative;
    max-width: 540px;
    justify-self: end;
}

.hero-photo-wrapper {
    position: relative;
    z-index: 1;
}

.rotating-badge {
    position: absolute;
    top: -45px;
    right: -45px;
    width: 150px;
    height: 150px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 136px;
    height: 136px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.rotating-badge svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
    /* Slower, more graceful rotation */
}

.rotating-badge text {
    font-family: var(--font-body);
    font-size: 9px;
    /* Reduzindo um pouquinho a letra */
    font-weight: 500;
    fill: var(--color-darkest);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #652330;
    /* Official Wine color */
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 12;
}

.photo-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.photo-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.photo-container:hover img {
    transform: scale(1.02);
}

.info-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-copper);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.75rem;
    line-height: 160%;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gray-500);
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tablet-wrapper {
        display: none;
    }

    .hero-photo-wrapper {
        justify-self: center;
        margin-top: -95px;
        margin-bottom: -25px;
        order: -1;
        max-width: 220px;
    }

    .rotating-badge {
        display: none;
    }

    .badge,
    .subtitle,
    .cta-group {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .info-card {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
        line-height: 110%;
    }
}

/* Essencial Section */
.essencial {
    padding: var(--space-lg) 0 10vw;
    background-color: #F4F1ED;
    /* Specific soft beige for sections */
    position: relative;
    overflow: hidden;
}

.essencial::after {
    content: "TRANSFORMAÇÃO";
    position: absolute;
    bottom: -1vw;
    left: 0;
    width: 100vw;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 10vw;
    /* Ajustado para caber sem cortar */
    font-weight: 700;
    color: rgba(144, 90, 74, 0.05);
    line-height: 1;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    letter-spacing: 0.5vw;
    /* Espaçamento leve para não estourar a tela */
}

.essencial .container {
    position: relative;
    z-index: 1;
}

.essencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: flex-start;
}

.essencial-header {
    max-width: 500px;
}

.overline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 160%;
    color: var(--color-darkest);
    text-transform: capitalize;
    display: block;
    margin-bottom: 12px;
}

.essencial-header h2 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    line-height: 120%;
    color: var(--color-darkest);
}

.essencial-body {
    padding-top: 24px;
}

.essencial-body p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-darkest);
    margin-bottom: 32px;
    line-height: 160%;
}

.essencial-list {
    list-style: none;
    margin-bottom: 40px;
}

.essencial-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    line-height: 160%;
    color: var(--color-darkest);
}

.list-icon {
    width: 20px;
    height: 20px;
    background-color: var(--color-darkest);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4.5 20.29L5.21 21L12 18L18.79 21L19.5 20.29L12 2Z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4.5 20.29L5.21 21L12 18L18.79 21L19.5 20.29L12 2Z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    background-color: #EEE9DE;
    padding: 12px 32px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-darkest);
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s;
}

.essencial-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.essencial-cta-arrow {
    font-size: 1.25rem;
    color: var(--color-darkest);
    opacity: 0.5;
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: var(--color-gray-100);
}

.image-photo-box {
    width: 100%;
    margin-top: 64px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
}

.image-photo-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .essencial-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .essencial {
        padding-top: 40px;
    }

    .essencial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .essencial-header h2 {
        font-size: 2.75rem;
        margin-bottom: 8px;
    }

    .image-placeholder-box {
        border-radius: 16px;
        margin-top: 40px;
    }

    .essencial-cta {
        flex-direction: column;
        gap: 12px;
    }

    .essencial-cta .btn-secondary {
        width: 100%;
        padding: 16px 20px;
    }

    .essencial-cta-arrow {
        display: none;
    }
}

/* Transformacao Section */
.transformacao {
    padding: var(--space-lg) 0;
    background-color: white;
    text-align: center;
}

.transformacao .overline {
    margin-bottom: 12px;
}

.transformacao h2 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    color: var(--color-darkest);
    line-height: 120%;
    margin-bottom: 16px;
}

.transformacao .section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 160%;
    color: var(--color-darkest);
    margin-bottom: 64px;
    display: block;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
}

.card {
    grid-column: span 1;
    background: #F4F1ED;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-wide {
    grid-column: span 2;
    flex-direction: row;
}

.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.card-wide .card-image {
    width: 50%;
    aspect-ratio: auto;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.card-wide .card-content {
    width: 50%;
}

.card-tag {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 160%;
    color: var(--color-darkest);
    margin-bottom: 16px;
    display: block;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 120%;
    color: var(--color-darkest);
    margin-bottom: 12px;
}

.card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 160%;
    color: var(--color-darkest);
    opacity: 0.8;
    margin-bottom: 24px;
}

.card-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-darkest);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .essencial-header h2,
    .transformacao h2,
    .feature-content h2,
    .ebook-cta h2,
    h2.section-title {
        font-size: 2rem !important;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-wide {
        grid-column: span 1;
        flex-direction: column;
    }

    .card-wide .card-image-placeholder,
    .card-wide .card-image,
    .card-wide .card-content {
        width: 100%;
    }

    .card-wide .card-image-placeholder,
    .card-wide .card-image {
        aspect-ratio: 4/3;
    }
}

/* Features/Recursos Section */
.features {
    padding: var(--space-lg) 0;
    background-color: #EEE9DE;
    /* Stronger beige tone */
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:first-child {
    border-top: none;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse .feature-content {
    direction: ltr;
}

.feature-top-info {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-number {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-darkest);
}

.feature-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-darkest);
    opacity: 0.8;
}

.feature-content .tag {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-darkest);
    margin-bottom: 12px;
    display: block;
}

.feature-content h2 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    line-height: 120%;
    color: var(--color-darkest);
    margin-bottom: 24px;
    max-width: 450px;
}

.feature-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 160%;
    color: var(--color-darkest);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 400px;
}

.feature-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-outline {
    padding: 10px 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-darkest);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    transition: background 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.feature-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #F4F1ED;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 700;
    text-align: center;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

@media (max-width: 1024px) {
    .feature-content h2 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {

    .features {
        padding-top: 40px;
    }

    .features .section-header {
        margin-bottom: 40px !important;
    }

    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .feature-item.reverse .feature-content {
        direction: ltr;
    }

    .feature-image-placeholder {
        aspect-ratio: 4/3;
    }
}

/* Scrolling Banner Section */
.scrolling-banner {
    background-color: #652330;
    /* Wine tone */
    color: white;
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scrolling-banner-track {
    display: flex;
    white-space: nowrap;
    animation: scrollBanner 30s linear infinite;
    align-items: center;
    width: max-content;
}

.scrolling-banner span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
}

.scrolling-banner span.star {
    font-size: 12px;
    padding: 0 30px;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* eBook CTA Section */
.ebook-cta {
    padding: var(--space-lg) 0;
    background-color: #652330;
    /* Official Wine Dark tone */
    color: white;
    text-align: center;
}

.ebook-cta h2 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    line-height: 120%;
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ebook-cta p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 160%;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 48px;
}

.ebook-button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.btn-accent {
    padding: 14px 40px;
    background-color: #905A4A;
    /* Copper Primário */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, background 0.3s;
}

.btn-accent:hover {
    background-color: #7C4B3D;
    transform: translateY(-2px);
}

.btn-white-outline {
    padding: 14px 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-white-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ebook-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    line-height: 0;
}

.ebook-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #4F1C26;
    /* Darker wine for placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .ebook-cta h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ebook-cta h2 {
        font-size: 2.75rem;
    }

    .ebook-button-group {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .ebook-image-wrapper {
        border-radius: 20px;
    }
}

/* Credits Bar */
.credits-bar {
    background-color: #4a1520;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
}

.credits-bar span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #8a4a55;
    letter-spacing: 0.5px;
}

.credits-heart {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-inline: 2px;
    fill: currentColor;
}

.credits-logo {
    height: 16px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(33%) sepia(20%) saturate(900%) hue-rotate(310deg) brightness(90%) contrast(90%);
    transition: opacity 0.3s;
}

.credits-logo:hover {
    opacity: 0.8;
}