body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #FAFAFA;
    /* Fundo principal branco */
    color: #02050C;
    /* Cor de texto principal escura */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* General Rotha Button Styles */
.btn-primary-rotha,
.btn-secondary-rotha {
    /* padding is controlled by Tailwind utility classes or specific CSS variables below */
    padding-top: var(--tw-py, 0.5rem);
    /* Default padding, can be overridden by Tailwind */
    padding-bottom: var(--tw-py, 0.5rem);
    padding-left: var(--tw-px, 1rem);
    padding-right: var(--tw-px, 1rem);
    border-radius: 2rem;
    /* rounded-4xl */
    font-weight: 500;
    /* medium */
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    /* Base for gradient border */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    /* Allows gradient border + background */
    position: relative;
    color: #F1F0F0;
    /* rotha-text */
    overflow: hidden;
    /* For shimmer effect */
    -webkit-tap-highlight-color: transparent;
    /* Better mobile tap experience */
    backdrop-filter: blur(4px);
    /* Subtle glass effect on button background */
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
    /* Stacking context for pseudo-elements */
}

.btn-primary-rotha::before,
.btn-secondary-rotha::before {
    /* Hover state background - revealed on hover */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    opacity: 0;
    transition: opacity 0.7s ease-out;
    z-index: -2;
    /* Behind main background and shimmer */
    pointer-events: none;
}

.btn-primary-rotha:hover::before,
.btn-secondary-rotha:hover::before {
    opacity: 1;
}

.btn-primary-rotha::after,
.btn-secondary-rotha::after {
    /* Shimmer effect */
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.15) 50%,
            /* Shimmer highlight */
            rgba(255, 255, 255, 0) 70%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 1.2s ease-out 0.1s, opacity 0.7s ease-out 0.2s;
    opacity: 0;
    pointer-events: none;
    border-radius: inherit;
    z-index: -1;
    /* Between main background and hover background */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #FAFAFA;
    /* Fundo principal branco */
    color: #02050C;
    /* Cor de texto principal escura */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* General Rotha Button Styles */
.btn-primary-rotha,
.btn-secondary-rotha {
    /* padding is controlled by Tailwind utility classes or specific CSS variables below */
    padding-top: var(--tw-py, 0.5rem);
    /* Default padding, can be overridden by Tailwind */
    padding-bottom: var(--tw-py, 0.5rem);
    padding-left: var(--tw-px, 1rem);
    padding-right: var(--tw-px, 1rem);
    border-radius: 2rem;
    /* rounded-4xl */
    font-weight: 500;
    /* medium */
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    /* Base for gradient border */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    /* Allows gradient border + background */
    position: relative;
    color: #F1F0F0;
    /* rotha-text */
    overflow: hidden;
    /* For shimmer effect */
    -webkit-tap-highlight-color: transparent;
    /* Better mobile tap experience */
    backdrop-filter: blur(4px);
    /* Subtle glass effect on button background */
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
    /* Stacking context for pseudo-elements */
}

.btn-primary-rotha::before,
.btn-secondary-rotha::before {
    /* Hover state background - revealed on hover */
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    opacity: 0;
    transition: opacity 0.7s ease-out;
    z-index: -2;
    /* Behind main background and shimmer */
    pointer-events: none;
}

.btn-primary-rotha:hover::before,
.btn-secondary-rotha:hover::before {
    opacity: 1;
}

.btn-primary-rotha::after,
.btn-secondary-rotha::after {
    /* Shimmer effect */
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.15) 50%,
            /* Shimmer highlight */
            rgba(255, 255, 255, 0) 70%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 1.2s ease-out 0.1s, opacity 0.7s ease-out 0.2s;
    opacity: 0;
    pointer-events: none;
    border-radius: inherit;
    z-index: -1;
    /* Between main background and hover background */
}

.btn-primary-rotha:hover::after,
.btn-secondary-rotha:hover::after {
    left: 150%;
    opacity: 0.5;
    /* Make shimmer visible */
}

/* Specific Button Backgrounds */
.btn-primary-rotha {
    /* Default state: Darker Red to Lighter Red gradient, with a border from Dark Blue to Red */
    background-image: linear-gradient(to top, rgba(128, 26, 26, 0.75), rgba(255, 51, 51, 0.75)), linear-gradient(to left, #fafafa, #FF3333);
}

.btn-primary-rotha::before {
    /* Hover state: Lighter Red to Darker Red gradient, with a border from Red to Dark Blue */
    background-image: linear-gradient(to top, rgba(255, 51, 51, 0.75), rgba(128, 26, 26, 0.75)), linear-gradient(to left, #FF3333, #02050D);
}

/* Specific Button Backgrounds */
.btn-secondary-rotha {
    /* Default state: Darker Red to Lighter Red gradient, with a border from Dark Blue to Red */
    background-image: linear-gradient(to top, rgba(40, 5, 13, 0.75), rgba(2, 5, 13, 0.75)), linear-gradient(to left, #fafafa, #02050D);
}

.btn-secondary-rotha::before {
    /* Hover state: Lighter Red to Darker Red gradient, with a border from Red to Dark Blue */
    background-image: linear-gradient(to top, rgba(2, 5, 13, 0.75), rgba(40, 5, 13, 0.75)), linear-gradient(to left, #02050D, #02050D);
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

.series-card img {
    transition: transform 0.4s ease;
}

.series-card:hover img {
    transform: scale(1.05);
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    background-color: rgba(2, 5, 12, 0.8); /* bg-rotha-bg/80 */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 51, 51, 0.2);
    color: #f1f0f0; /* text-rotha-text */
}

#cookie-consent-banner.visible {
    display: block; /* <<< ADICIONE ESTA LINHA CRÍTICA */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#cookie-consent-banner a {
    color: #ff3333; /* text-[#ff3333] */
    text-decoration: underline;
}

#cookie-consent-banner a:hover {
    color: #ff6666; /* hover:text-[#ff6666] */
}

@keyframes pulse-rotha {
    0%, to {
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 51, 51, 0);
    }
}

.rotha-pulse-button {
    animation: pulse-rotha 2s infinite;
}


/* Specific Button Backgrounds */
.btn-primary-rotha {
    /* Default state: Darker Red to Lighter Red gradient, with a border from Dark Blue to Red */
    background-image: linear-gradient(to top, rgba(128, 26, 26, 0.75), rgba(255, 51, 51, 0.75)), linear-gradient(to left, #fafafa, #FF3333);
}

.btn-primary-rotha::before {
    /* Hover state: Lighter Red to Darker Red gradient, with a border from Red to Dark Blue */
    background-image: linear-gradient(to top, rgba(255, 51, 51, 0.75), rgba(128, 26, 26, 0.75)), linear-gradient(to left, #FF3333, #02050D);
}

/* Specific Button Backgrounds */
.btn-secondary-rotha {
    /* Default state: Darker Red to Lighter Red gradient, with a border from Dark Blue to Red */
    background-image: linear-gradient(to top, rgba(40, 5, 13, 0.75), rgba(2, 5, 13, 0.75)), linear-gradient(to left, #fafafa, #02050D);
}

.btn-secondary-rotha::before {
    /* Hover state: Lighter Red to Darker Red gradient, with a border from Red to Dark Blue */
    background-image: linear-gradient(to top, rgba(2, 5, 13, 0.75), rgba(40, 5, 13, 0.75)), linear-gradient(to left, #02050D, #02050D);
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

.series-card img {
    transition: transform 0.4s ease;
}

.series-card:hover img {
    transform: scale(1.05);
}