﻿/* Caderno Aberto — base styles */
body {
    font-family: 'Manrope', sans-serif;
}

.responsive-heading-h1 {
    font-size: 2.5rem; /* Mobile */
}

@media (min-width: 768px) {
    .responsive-heading-h1 {
        font-size: 3.5rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .responsive-heading-h1 {
        font-size: 4.5rem; /* Desktop */
    }
}

.responsive-heading-h2 {
    font-size: 1.8rem; /* Mobile */
}

@media (min-width: 768px) {
    .responsive-heading-h2 {
        font-size: 2.2rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .responsive-heading-h2 {
        font-size: 2.5rem; /* Desktop */
    }
}

.site-title-responsive {
    font-size: 1.25rem; /* Mobile */
}

@media (min-width: 768px) {
    .site-title-responsive {
        font-size: 1.5rem; /* Tablet */
    }
}

@media (min-width: 1024px) {
    .site-title-responsive {
        font-size: 2rem; /* Desktop */
    }
}

/* Custom scrollbar hide for horizontal sections */
.scrollbar-hide-custom::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide-custom {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Services Tabs */
.tab-button.active-tab {
    background-color: #0ea5e9; /* sky-500 */
    color: white;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
}

/* Pricing Cards Equal Height */
.pricing-card-equal-height {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* Will be set by JS */
}

/* Team Card Expandable Bio */
.bio-full {
    transition: max-height 0.6s ease-out;
    max-height: 0;
    overflow: hidden;
}

.bio-full.expanded {
    max-height: 200px; /* Adjust as needed */
    transition: max-height 0.6s ease-in;
}

/* Accordion Icon Rotation */
.accordion-item summary svg {
    transition: transform 0.4s ease;
}

.accordion-item[open] summary svg {
    transform: rotate(180deg);
}

/* How It Works Arrows */
.arrow-right {
    position: relative;
    width: 20px; /* Adjust arrow size */
    height: 1px;
    background-color: #3f3f46; /* zinc-700 */
    margin: 0 10px;
}

.arrow-right::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #3f3f46; /* zinc-700 */
}

@media (max-width: 767px) {
    .arrow-right {
        display: none; /* Hide arrows on mobile */
    }
}

/* Footer Tile Hover Effect */
.footer-tile {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}/*
 * Base styles for the compliance core slot container.
 * Provides vertical and horizontal spacing for its content.
 */
.complianceCoreSlot {
    margin-top: 2.5rem; /* Top margin to separate from content above */
    padding-left: 1.5rem; /* Internal padding on the left */
    padding-right: 1.5rem; /* Internal padding on the right */
    line-height: 1.6; /* Default line height for text within the slot */
    font-size: 1rem; /* Base font size for general text */
}

/*
 * Heading styles for h1 within .complianceCoreSlot.
 * Moderate font size, clear vertical spacing.
 */
.complianceCoreSlot h1 {
    font-size: 2rem; /* Not excessively large, but clearly a main heading */
    font-weight: 700; /* Bold */
    line-height: 1.2;
    margin-top: 2rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

/*
 * Heading styles for h2 within .complianceCoreSlot.
 * Slightly smaller than h1, good for sub-sections.
 */
.complianceCoreSlot h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

/*
 * Heading styles for h3 within .complianceCoreSlot.
 * Further reduction in size, for minor sub-sections.
 */
.complianceCoreSlot h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
}

/*
 * Heading styles for h4 within .complianceCoreSlot.
 * Close to body text size, but distinct with weight and spacing.
 */
.complianceCoreSlot h4 {
    font-size: 1.15rem;
    font-weight: 500; /* Slightly less bold */
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

/*
 * Heading styles for h5 within .complianceCoreSlot.
 * Similar to body text size, primarily distinguished by weight and spacing.
 */
.complianceCoreSlot h5 {
    font-size: 1rem; /* Same as base text, but still a heading */
    font-weight: 500;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/*
 * Paragraph styles within .complianceCoreSlot.
 * Ensures consistent spacing between paragraphs.
 */
.complianceCoreSlot p {
    font-size: 1rem; /* Ensures consistency with base font size */
    line-height: 1.6; /* Good readability */
    margin-top: 0; /* Reset default browser margin-top */
    margin-bottom: 1rem; /* Space below each paragraph */
}

/*
 * Unordered list styles within .complianceCoreSlot.
 * Provides standard bullet points and indentation.
 */
.complianceCoreSlot ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

/*
 * List item styles within .complianceCoreSlot.
 * Adds spacing between individual list items.
 */
.complianceCoreSlot li {
    font-size: 1rem; /* Ensures consistency with base font size */
    line-height: 1.6;
    margin-bottom: 0.5rem; /* Space between list items */
}
main {
    overflow: hidden;
}

/* Previous market redesign layer */
.ve-redesign {
    background: #14130f;
    color: #f4efe4;
}

.ve-redesign header {
    background: rgba(20, 19, 15, 0.92) !important;
    border-bottom: 1px solid rgba(240, 184, 74, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.ve-redesign .site-title-responsive,
.ve-redesign footer .text-sky-500 {
    color: #f0b84a !important;
}

.ve-redesign a:hover {
    color: #f0b84a !important;
}

.ve-redesign #inicio {
    min-height: 92vh;
    height: auto;
    justify-content: flex-start;
    text-align: left;
    background-position: center right;
}

.ve-redesign #inicio::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 19, 15, 0.94) 0%, rgba(20, 19, 15, 0.74) 43%, rgba(20, 19, 15, 0.24) 100%),
        repeating-linear-gradient(135deg, rgba(240, 184, 74, 0.10) 0 1px, transparent 1px 32px);
    pointer-events: none;
}

.ve-redesign .hero-shade {
    opacity: 0.34 !important;
}

.ve-redesign #inicio .relative.z-10 {
    margin-left: max(1.5rem, calc((100vw - 1180px) / 2));
    margin-right: 1.5rem;
    max-width: 1180px;
    width: min(1180px, calc(100% - 3rem));
}

.ve-redesign .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
    gap: 2rem;
    align-items: center;
}

.ve-redesign .hero-copy {
    max-width: 760px;
}

.ve-redesign .responsive-heading-h1 {
    color: #f4efe4 !important;
    letter-spacing: 0;
    text-wrap: balance;
}

.ve-redesign #inicio .responsive-heading-h1::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin-top: 1.4rem;
    background: linear-gradient(90deg, #f0b84a, #19b99a, #e85d4f);
}

.ve-redesign #inicio p {
    color: #ddd4c5 !important;
    max-width: 720px;
}

.ve-redesign .hero-access-panel {
    background: rgba(20, 19, 15, 0.72);
    border: 1px solid rgba(240, 184, 74, 0.34);
    border-left: 5px solid #f0b84a;
    padding: 1.35rem;
    color: #f4efe4;
    backdrop-filter: blur(10px);
}

.ve-redesign .hero-access-panel strong {
    display: block;
    margin: 0.4rem 0 1rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.ve-redesign .hero-panel-kicker,
.ve-redesign .level-badge,
.ve-redesign .learning-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(240, 184, 74, 0.35);
    padding: 0.25rem 0.55rem;
    color: #f0b84a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ve-redesign .learning-tag {
    margin-top: 0.35rem;
    color: #63d6c3;
    border-color: rgba(99, 214, 195, 0.35);
}

.ve-redesign .hero-access-panel ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #ddd4c5;
}

.ve-redesign .hero-access-panel p {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: #bdb3a3 !important;
}

.ve-redesign .responsive-heading-h2,
.ve-redesign h2.text-sky-400 {
    color: #f0b84a !important;
}

.ve-redesign .text-sky-400,
.ve-redesign .text-sky-300,
.ve-redesign .text-sky-200 {
    color: #63d6c3 !important;
}

.ve-redesign .bg-sky-500 {
    background-color: #19b99a !important;
}

.ve-redesign .hover\:bg-sky-400:hover,
.ve-redesign .hover\:bg-sky-600:hover {
    background-color: #f0b84a !important;
    color: #14130f !important;
}

.ve-redesign .border-sky-400,
.ve-redesign .border-sky-500 {
    border-color: #f0b84a !important;
}

.ve-redesign main > section:nth-of-type(even) {
    background: #1c211b !important;
}

.ve-redesign main > section:nth-of-type(odd):not(#inicio) {
    background: #14130f !important;
}

.ve-redesign .bg-zinc-900 {
    background-color: #171612 !important;
}

.ve-redesign .bg-zinc-800 {
    background-color: #20251f !important;
}

.ve-redesign .bg-zinc-700 {
    background-color: #2b3028 !important;
}

.ve-redesign .border-zinc-700 {
    border-color: rgba(240, 184, 74, 0.18) !important;
}

.ve-redesign .rounded-xl,
.ve-redesign .rounded-lg {
    border-radius: 6px !important;
}

.ve-redesign .rounded-full {
    border-radius: 999px !important;
}

.ve-redesign .btn-smooth-scroll,
.ve-redesign .btn-select-plan,
.ve-redesign form button[type="submit"],
.ve-redesign #accept-all-cookies,
.ve-redesign #save-cookie-settings {
    background: #f0b84a !important;
    color: #14130f !important;
    box-shadow: 0 10px 24px rgba(240, 184, 74, 0.22);
}

.ve-redesign .btn-smooth-scroll:hover,
.ve-redesign .btn-select-plan:hover,
.ve-redesign form button[type="submit"]:hover {
    background: #19b99a !important;
    color: #071512 !important;
    transform: translateY(-2px);
}

.ve-redesign .tab-button {
    border-radius: 0 !important;
    border: 1px solid rgba(240, 184, 74, 0.20);
    background: transparent !important;
    color: #d9d1c1 !important;
}

.ve-redesign .tab-button.active-tab {
    background: #f0b84a !important;
    color: #14130f !important;
    box-shadow: none;
}

.ve-redesign .tab-content {
    border: 1px solid rgba(240, 184, 74, 0.18);
    box-shadow: none !important;
}

.ve-redesign .tab-content img,
.ve-redesign .feature-card img {
    border-radius: 4px !important;
    filter: saturate(0.88) contrast(1.04);
}

.ve-redesign .feature-card,
.ve-redesign .team-card,
.ve-redesign .pricing-card-equal-height,
.ve-redesign .accordion-item,
.ve-redesign #contacto form,
.ve-redesign #contacto .max-w-xl {
    box-shadow: none !important;
    border-left: 4px solid #19b99a !important;
}

.ve-redesign .feature-card {
    align-items: flex-start !important;
    text-align: left !important;
}

@media (min-width: 1024px) {
    .ve-redesign .feature-card:first-child {
        grid-column: span 2;
        display: grid !important;
        grid-template-columns: 220px 1fr;
        gap: 1.5rem;
        align-items: center !important;
    }
}

.ve-redesign .feature-card img {
    width: 100% !important;
    height: 150px !important;
}

.ve-redesign #planes .pricing-card-equal-height {
    position: relative;
    overflow: hidden;
}

.ve-redesign #planes .pricing-card-equal-height::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: #19b99a;
}

.ve-redesign #planes .featured-plan {
    background: #263225 !important;
    border-color: rgba(240, 184, 74, 0.58) !important;
}

.ve-redesign #planes .featured-plan::before {
    background: #f0b84a;
}

.ve-redesign .access-step {
    border-left-width: 6px !important;
    transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.ve-redesign .access-step:hover {
    transform: translateY(-3px);
}

.ve-redesign .access-step-1 {
    border-left-color: #19b99a !important;
}

.ve-redesign .access-step-2 {
    border-left-color: #f0b84a !important;
}

.ve-redesign .access-step-3 {
    border-left-color: #e85d4f !important;
}

.ve-redesign .access-step-4 {
    border-left-color: #f4efe4 !important;
}

.ve-redesign .access-step-1::before {
    background: #19b99a !important;
}

.ve-redesign .access-step-2::before {
    background: #f0b84a !important;
}

.ve-redesign .access-step-3::before {
    background: #e85d4f !important;
}

.ve-redesign .access-step-4::before {
    background: #f4efe4 !important;
}

.ve-redesign #pasos .bg-sky-500 {
    background: #e85d4f !important;
}

.ve-redesign #sobre .bg-sky-500 {
    background: #f0b84a !important;
}

.ve-redesign input,
.ve-redesign textarea {
    background: #11100d !important;
    border-color: rgba(240, 184, 74, 0.25) !important;
}

.ve-redesign #cookie-banner {
    background: #14130f !important;
    border-top-color: rgba(240, 184, 74, 0.35) !important;
}

@media (max-width: 767px) {
    .ve-redesign #inicio {
        text-align: left;
        min-height: 86vh;
    }

    .ve-redesign #inicio .relative.z-10 {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
        width: calc(100% - 2.5rem);
    }

    .ve-redesign .hero-layout {
        display: block;
    }

    .ve-redesign .hero-access-panel {
        margin-top: 1.6rem;
    }
}

/* Brazil redesign layer */
.br-redesign {
    background: #f3efe4;
    color: #14201c;
}

.br-redesign header {
    background: rgba(255, 250, 240, 0.93) !important;
    border-bottom: 1px solid rgba(40, 122, 91, 0.20);
    box-shadow: 0 12px 28px rgba(20, 32, 28, 0.10);
    backdrop-filter: blur(14px);
}

.br-redesign header a,
.br-redesign header button,
.br-redesign .site-title-responsive,
.br-redesign footer .text-sky-500 {
    color: #14201c !important;
}

.br-redesign .site-title-responsive,
.br-redesign footer .text-sky-500 {
    color: #287a5b !important;
}

.br-redesign a:hover {
    color: #d8a72e !important;
}

.br-redesign #inicio {
    min-height: 92vh;
    height: auto;
    justify-content: flex-start;
    text-align: left;
    background-position: center right;
}

.br-redesign #inicio::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 32, 28, 0.88) 0%, rgba(20, 32, 28, 0.62) 44%, rgba(20, 32, 28, 0.18) 100%),
        repeating-linear-gradient(90deg, rgba(216, 167, 46, 0.10) 0 1px, transparent 1px 28px);
    pointer-events: none;
}

.br-redesign .hero-shade {
    opacity: 0.12 !important;
}

.br-redesign #inicio .relative.z-10 {
    margin-left: max(1.5rem, calc((100vw - 1180px) / 2));
    margin-right: 1.5rem;
    max-width: 1180px;
    width: min(1180px, calc(100% - 3rem));
}

.br-redesign .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
    gap: 2rem;
    align-items: center;
}

.br-redesign .hero-copy {
    max-width: 760px;
}

.br-redesign .responsive-heading-h1 {
    color: #fffaf0 !important;
    letter-spacing: 0;
    text-wrap: balance;
}

.br-redesign #inicio .responsive-heading-h1::after {
    content: "";
    display: block;
    width: 104px;
    height: 5px;
    margin-top: 1.4rem;
    background: linear-gradient(90deg, #d8a72e, #4fa36c, #2f6f8f);
}

.br-redesign #inicio p {
    color: #f3efe4 !important;
    max-width: 720px;
}

.br-redesign .hero-access-panel {
    background: rgba(255, 250, 240, 0.88);
    border: 1px solid rgba(216, 167, 46, 0.34);
    border-left: 5px solid #287a5b;
    padding: 1.35rem;
    color: #14201c;
    backdrop-filter: blur(10px);
}

.br-redesign .hero-access-panel strong {
    display: block;
    margin: 0.4rem 0 1rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.br-redesign .hero-panel-kicker,
.br-redesign .level-badge,
.br-redesign .learning-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(40, 122, 91, 0.28);
    padding: 0.25rem 0.55rem;
    color: #287a5b;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.br-redesign .learning-tag {
    margin-top: 0.35rem;
    color: #2f6f8f;
    border-color: rgba(47, 111, 143, 0.32);
}

.br-redesign .hero-access-panel ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #31433c;
}

.br-redesign .hero-access-panel p {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: #68746d !important;
}

.br-redesign main > section:nth-of-type(even) {
    background: #e7efe6 !important;
}

.br-redesign main > section:nth-of-type(odd):not(#inicio) {
    background: #f3efe4 !important;
}

.br-redesign .bg-zinc-900,
.br-redesign .bg-zinc-800 {
    background-color: #fffaf0 !important;
}

.br-redesign .bg-zinc-700 {
    background-color: #eef4ea !important;
}

.br-redesign .text-zinc-100,
.br-redesign .text-zinc-200,
.br-redesign .text-zinc-300,
.br-redesign .text-zinc-400 {
    color: #31433c !important;
}

.br-redesign .responsive-heading-h2,
.br-redesign h2.text-sky-400 {
    color: #287a5b !important;
}

.br-redesign .text-sky-400,
.br-redesign .text-sky-300,
.br-redesign .text-sky-200 {
    color: #2f6f8f !important;
}

.br-redesign .bg-sky-500 {
    background-color: #287a5b !important;
}

.br-redesign .hover\:bg-sky-400:hover,
.br-redesign .hover\:bg-sky-600:hover {
    background-color: #d8a72e !important;
    color: #14201c !important;
}

.br-redesign .border-zinc-700,
.br-redesign .border-sky-400,
.br-redesign .border-sky-500 {
    border-color: rgba(40, 122, 91, 0.20) !important;
}

.br-redesign .rounded-xl,
.br-redesign .rounded-lg {
    border-radius: 8px !important;
}

.br-redesign .rounded-full {
    border-radius: 999px !important;
}

.br-redesign .btn-smooth-scroll,
.br-redesign .btn-select-plan,
.br-redesign form button[type="submit"],
.br-redesign #accept-all-cookies,
.br-redesign #save-cookie-settings {
    background: #287a5b !important;
    color: #fffaf0 !important;
    box-shadow: 0 10px 22px rgba(40, 122, 91, 0.18);
}

.br-redesign .btn-smooth-scroll:hover,
.br-redesign .btn-select-plan:hover,
.br-redesign form button[type="submit"]:hover {
    background: #d8a72e !important;
    color: #14201c !important;
    transform: translateY(-2px);
}

.br-redesign .tab-button {
    border-radius: 0 !important;
    border: 1px solid rgba(40, 122, 91, 0.22);
    background: #fffaf0 !important;
    color: #31433c !important;
}

.br-redesign .tab-button.active-tab {
    background: #287a5b !important;
    color: #fffaf0 !important;
    box-shadow: none;
}

.br-redesign .tab-content,
.br-redesign .feature-card,
.br-redesign .team-card,
.br-redesign .pricing-card-equal-height,
.br-redesign .accordion-item,
.br-redesign #contato .max-w-xl {
    background: #fffaf0 !important;
    border: 1px solid rgba(40, 122, 91, 0.18) !important;
    border-top: 4px solid #4fa36c !important;
    box-shadow: 0 14px 32px rgba(20, 32, 28, 0.08) !important;
}

.br-redesign .tab-content img,
.br-redesign .feature-card img {
    filter: saturate(1.02) contrast(1.02) brightness(1.03);
    border-radius: 6px !important;
}

.br-redesign .feature-card {
    align-items: flex-start !important;
    text-align: left !important;
}

@media (min-width: 1024px) {
    .br-redesign .feature-card:first-child {
        grid-column: span 2;
        display: grid !important;
        grid-template-columns: 220px 1fr;
        gap: 1.5rem;
        align-items: center !important;
    }
}

.br-redesign .feature-card img {
    width: 100% !important;
    height: 150px !important;
}

.br-redesign #planos .featured-plan {
    background: #e7efe6 !important;
    border-color: rgba(216, 167, 46, 0.55) !important;
}

.br-redesign .access-step {
    border-top-width: 4px !important;
    transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.br-redesign .access-step:hover {
    transform: translateY(-3px);
}

.br-redesign .access-step-1 { border-top-color: #4fa36c !important; }
.br-redesign .access-step-2 { border-top-color: #d8a72e !important; }
.br-redesign .access-step-3 { border-top-color: #2f6f8f !important; }
.br-redesign .access-step-4 { border-top-color: #b85f3b !important; }

.br-redesign input,
.br-redesign textarea {
    background: #fffaf0 !important;
    border-color: rgba(40, 122, 91, 0.25) !important;
    color: #14201c !important;
}

.br-redesign #cookie-banner {
    background: #fffaf0 !important;
    color: #14201c !important;
    border-top-color: rgba(40, 122, 91, 0.22) !important;
}

.br-redesign footer {
    background: #14201c !important;
}

.br-redesign footer .text-zinc-400,
.br-redesign footer .text-zinc-500,
.br-redesign footer a {
    color: #d8dfd5 !important;
}

@media (max-width: 767px) {
    .br-redesign #inicio {
        text-align: left;
        min-height: 86vh;
    }

    .br-redesign #inicio .relative.z-10 {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
        width: calc(100% - 2.5rem);
    }

    .br-redesign .hero-layout {
        display: block;
    }

    .br-redesign .hero-access-panel {
        margin-top: 1.6rem;
    }
}

/* Caderno Aberto Brasil: editorial study-board variant */
.br-caderno-grid {
    background: #f7f4ea !important;
    color: #24302a !important;
}

.br-caderno-grid header {
    background: #f7f4ea !important;
    border-bottom: 3px solid #24302a;
    box-shadow: none !important;
}

.br-caderno-grid header nav {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

.br-caderno-grid header img {
    height: 2.5rem !important;
    width: auto;
}

.br-caderno-grid .site-title-responsive,
.br-caderno-grid footer .text-sky-500 {
    color: #24302a !important;
}

.br-caderno-grid header a,
.br-caderno-grid header button {
    color: #24302a !important;
}

.br-caderno-grid header .hidden.lg\:flex {
    gap: 1.05rem !important;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
}

.br-caderno-grid header .hidden.lg\:flex a:nth-child(4),
.br-caderno-grid header .hidden.lg\:flex a:nth-child(6),
.br-caderno-grid header .hidden.lg\:flex a:nth-child(8) {
    display: none;
}

.br-caderno-grid #mobile-menu {
    background: #f7f4ea !important;
    border-bottom: 3px solid #24302a;
}

.br-caderno-grid #inicio {
    min-height: 88vh;
    height: auto !important;
    padding: 7rem 0 3.75rem;
    background-color: #f7f4ea !important;
    background-size: min(42vw, 520px) auto !important;
    background-position: right 7vw bottom 2.5rem !important;
    background-repeat: no-repeat !important;
    text-align: left !important;
}

.br-caderno-grid #inicio::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(#d9d2c2 1px, transparent 1px),
        linear-gradient(90deg, #d9d2c2 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.34;
}

.br-caderno-grid #inicio::after {
    content: "BRASIL / EDUCACAO / COMUNIDADE";
    position: absolute;
    left: 0;
    bottom: 2rem;
    width: min(58vw, 680px);
    padding: 0.7rem 2rem 0.7rem max(2rem, calc((100vw - 1180px) / 2));
    background: #24302a;
    color: #f7f4ea;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.br-caderno-grid .hero-shade {
    display: none;
}

.br-caderno-grid #inicio .relative.z-10 {
    max-width: 1180px !important;
    width: calc(100% - 3rem);
    padding: 0 !important;
}

.br-caderno-grid .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.58fr);
    gap: clamp(1.4rem, 4vw, 4.4rem);
    align-items: center;
}

.br-caderno-grid .hero-copy {
    position: relative;
    padding: clamp(1.25rem, 2.8vw, 2.2rem);
    background: rgba(247, 244, 234, 0.86);
    border-left: 10px solid #d24c36;
    outline: 3px solid rgba(36, 48, 42, 0.12);
}

.br-caderno-grid .responsive-heading-h1 {
    color: #24302a !important;
    font-size: clamp(2.3rem, 5vw, 4.6rem) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    max-width: 12ch;
    margin-bottom: 1.25rem !important;
}

.br-caderno-grid #inicio p {
    color: #39453d !important;
    font-size: clamp(1rem, 1.45vw, 1.18rem) !important;
    line-height: 1.7;
    max-width: 60ch;
    margin-bottom: 1.7rem !important;
}

.br-caderno-grid .hero-access-panel {
    background: #ffffff !important;
    color: #24302a !important;
    border: 3px solid #24302a;
    border-radius: 0 !important;
    box-shadow: 14px 14px 0 #f2b705;
    padding: clamp(1.1rem, 2.6vw, 1.75rem);
}

.br-caderno-grid .hero-panel-kicker,
.br-caderno-grid .level-badge,
.br-caderno-grid .learning-tag {
    display: inline-flex;
    width: fit-content;
    background: #1e6b5b;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0.32rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.br-caderno-grid .hero-access-panel strong {
    display: block;
    color: #24302a !important;
    font-size: clamp(1.35rem, 2vw, 1.95rem);
    line-height: 1.06;
    margin: 1rem 0;
}

.br-caderno-grid .hero-access-panel ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #39453d;
}

.br-caderno-grid .hero-access-panel li {
    margin-bottom: 0.65rem;
}

.br-caderno-grid .hero-access-panel p {
    border-top: 2px solid #e3dac7;
    color: #5b655d !important;
    font-size: 0.88rem !important;
    margin: 1rem 0 0 !important;
    padding-top: 0.85rem;
}

.br-caderno-grid main > section:not(#inicio) {
    background: #f7f4ea !important;
    color: #24302a !important;
    border-top: 2px solid rgba(36, 48, 42, 0.12);
}

.br-caderno-grid main > section:nth-of-type(even):not(#inicio) {
    background: #eef5ef !important;
}

.br-caderno-grid .responsive-heading-h2,
.br-caderno-grid h2.text-sky-400 {
    color: #24302a !important;
    text-align: left !important;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.br-caderno-grid .bg-zinc-900,
.br-caderno-grid .bg-zinc-800,
.br-caderno-grid .bg-zinc-700 {
    background-color: #ffffff !important;
}

.br-caderno-grid .text-zinc-100,
.br-caderno-grid .text-zinc-200,
.br-caderno-grid .text-zinc-300,
.br-caderno-grid .text-zinc-400,
.br-caderno-grid .text-zinc-500 {
    color: #39453d !important;
}

.br-caderno-grid .text-sky-400,
.br-caderno-grid .text-sky-300,
.br-caderno-grid .text-sky-200 {
    color: #1e6b5b !important;
}

.br-caderno-grid .bg-sky-500 {
    background-color: #d24c36 !important;
}

.br-caderno-grid .hover\:bg-sky-400:hover,
.br-caderno-grid .hover\:bg-sky-600:hover {
    background-color: #f2b705 !important;
    color: #24302a !important;
}

.br-caderno-grid .btn-smooth-scroll,
.br-caderno-grid .btn-select-plan,
.br-caderno-grid form button[type="submit"],
.br-caderno-grid #accept-all-cookies,
.br-caderno-grid #save-cookie-settings {
    border-radius: 0 !important;
    background: #d24c36 !important;
    color: #ffffff !important;
    box-shadow: 6px 6px 0 #24302a !important;
}

.br-caderno-grid .btn-smooth-scroll:hover,
.br-caderno-grid .btn-select-plan:hover,
.br-caderno-grid form button[type="submit"]:hover {
    background: #f2b705 !important;
    color: #24302a !important;
    transform: translate(-2px, -2px);
}

.br-caderno-grid .tab-button {
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #24302a !important;
    border: 2px solid #24302a;
    box-shadow: none !important;
}

.br-caderno-grid .tab-button.active-tab {
    background: #1e6b5b !important;
    color: #ffffff !important;
}

.br-caderno-grid .tab-content,
.br-caderno-grid .feature-card,
.br-caderno-grid .team-card,
.br-caderno-grid .pricing-card-equal-height,
.br-caderno-grid .accordion-item,
.br-caderno-grid #contato .max-w-xl {
    background: #ffffff !important;
    border: 2px solid #24302a !important;
    border-radius: 0 !important;
    box-shadow: 8px 8px 0 rgba(36, 48, 42, 0.14) !important;
}

.br-caderno-grid .feature-card:nth-child(2n),
.br-caderno-grid .team-card:nth-child(2),
.br-caderno-grid .access-step-2,
.br-caderno-grid .access-step-4 {
    box-shadow: 8px 8px 0 rgba(210, 76, 54, 0.22) !important;
}

.br-caderno-grid .tab-content img,
.br-caderno-grid .feature-card img,
.br-caderno-grid #sobre img {
    border-radius: 0 !important;
    border: 2px solid #24302a;
    filter: saturate(1.08) contrast(1.05);
}

.br-caderno-grid .feature-card {
    align-items: flex-start !important;
    text-align: left !important;
}

.br-caderno-grid .feature-card img {
    width: 100% !important;
    height: 150px !important;
}

.br-caderno-grid .featured-plan {
    background: #1e6b5b !important;
    border-color: #24302a !important;
}

.br-caderno-grid .featured-plan .text-white,
.br-caderno-grid .featured-plan .text-sky-50 {
    color: #ffffff !important;
}

.br-caderno-grid .access-step-1 { border-top: 9px solid #d24c36 !important; }
.br-caderno-grid .access-step-2 { border-top: 9px solid #f2b705 !important; }
.br-caderno-grid .access-step-3 { border-top: 9px solid #1e6b5b !important; }
.br-caderno-grid .access-step-4 { border-top: 9px solid #2e5fa8 !important; }

.br-caderno-grid input,
.br-caderno-grid textarea {
    background: #f7f4ea !important;
    border: 2px solid #24302a !important;
    border-radius: 0 !important;
    color: #24302a !important;
}

.br-caderno-grid #cookie-banner {
    background: #f7f4ea !important;
    color: #24302a !important;
    border-top: 3px solid #24302a !important;
}

.br-caderno-grid footer {
    background: #24302a !important;
}

.br-caderno-grid footer .text-zinc-400,
.br-caderno-grid footer .text-zinc-500,
.br-caderno-grid footer a {
    color: #e9eee6 !important;
}

@media (max-width: 1023px) {
    .br-caderno-grid #inicio {
        background-size: 58vw auto !important;
        background-position: right -3rem bottom 1rem !important;
    }

    .br-caderno-grid .hero-layout {
        grid-template-columns: 1fr;
    }

    .br-caderno-grid .hero-access-panel {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .br-caderno-grid #inicio {
        padding: 6rem 0 2.5rem;
        background-size: 92vw auto !important;
        background-position: right -7rem bottom 0 !important;
    }

    .br-caderno-grid #inicio::after {
        position: relative;
        display: block;
        width: 100%;
        bottom: auto;
        margin-top: 1.5rem;
    }

    .br-caderno-grid #inicio .relative.z-10 {
        width: calc(100% - 2rem);
    }

    .br-caderno-grid .responsive-heading-h1 {
        font-size: clamp(2.05rem, 12vw, 3rem) !important;
        max-width: 11ch;
    }
}

