/*////////////// CSS REVISTO //////////////*/

:root {
    /* Cores */
    --color-primary: #ff936d;
    --color-primary-dark: #ff7d68;
    --color-primary-active: #ff946d9b;
    --color-secondary: #04ACD3;
    --color-secondary-active: #04ACD39b;
    --bg-filter-box: #bedee7;
    --color-heading: #181E4B;
    --color-text: #5E6282;
    --color-white: #fff;
    --color-dark: #343a40;

    /* Vantagens */
    --subcolor-1: #006380;
    --subcolor-2: #F15A2B;
    --subcolor-3: #F0BB1F;

    /* Percursos */
    --percurso-a: #87286C;
    --percurso-b: #715762;
    --percurso-c: #B15378;
    --percurso-d: #F0BB1F;
    --percurso-e: #F15A2B;

    /* Sombras */
    --soft-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    --shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

body {
    background-color: var(--color-white);
    max-width: 2560px;
    margin: 0 auto;
    overflow-x: hidden;
}

main {
    padding-top: 100px;

}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =============================
   LAYOUT GERAL
   ============================= */
.c-white {
    color: var(--color-white);
}

.c-orange {
    color: var(--color-primary);
}

.c-blue {
    color: var(--color-secondary);
}

.section-base {
    position: relative;
    padding-block: clamp(3rem, 8vw, 4.5rem);
    overflow: hidden;
}

.bold {
    font-weight: 600;
}

.g-3 {
    gap: 1rem;
}

.g-5 {
    gap: 2rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-block: clamp(1.5rem, 4vw, 3rem);
}

.banner-img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =============================
   TIPOGRAFIA
   ============================= */

h1,
h2 {
    font-family: "Poppins", sans-serif;
    color: var(--color-heading);
    font-size: clamp(36px, 3vw, 44px);
}

h3 {
    font-family: "Poppins", sans-serif;
    color: var(--color-heading);
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: var(--color-heading);
    font-size: clamp(14px, 1.4vw, 16px);
}

p,
span,
a,
button,
li {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1.4vw, 16px);
    color: var(--color-text);
}

h3.h3-intro,
.p-intro {
    color: var(--color-text);
    font-weight: 700;
    margin: 2vmin 0;
    font-size: clamp(14px, 1.4vw, 16px);
}

i {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1.4vw, 16px);
}

a,
button {
    text-decoration: none;
}

a.link, .perguntas .accordion a,
p.link,
button.link {
    display: block;
    width: fit-content;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    background: none;
    border: none;
}
.perguntas .accordion a{
    display: inline;
}
a.link:hover, .perguntas .accordion a:hover,
p.link:hover,
button.link:hover {
    color: var(--color-primary);
}

a.link:active, .perguntas .accordion a:active,
p.link:active,
button.link:active {
    color: var(--color-primary-active);
}


/* =============================
   ESTADOS DE SELEÇÃO
   ============================= */

.selectlaranja {
    color: var(--color-white);
    background-color: var(--color-primary);
}

/* =============================
   BOTÕES
   ============================= */

/* Versão outline laranja */
.btncircuitos-original {
    display: block;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 10px;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding: 8px 16px;
    align-self: center;
    transition: all 0.2s ease-in-out;
}

.btncircuitos-original:hover, .ul-style .btncircuitos-original:hover,
.btn-shop-car2:hover, .btn-filtro:hover {
    transform: scale(1.05);
}

.btn-filtro{
    display: block;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 10px;
    border: 2px solid var(--color-secondary);
    cursor: pointer;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding: 8px 16px;
    align-self: center;
    transition: all 0.2s ease-in-out;
}

/* Versão filled laranja com gradiente */
.btn-shop-car2 {
    display: block;
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    width: fit-content;
    color: var(--color-white) !important;
    cursor: pointer;
    border-radius: 10px;
    font-size: clamp(14px, 1vw, 16px);
    text-decoration: none;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding: 8px 16px;
    transition: all 0.2s ease-in-out;
}

.btn-shop-car2 .icon-shop-car {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 600;
    margin-right: 6px;
}

/* =============================
   OWL CAROUSEL
   ============================= */


/* DOTS */
.owl-dots {
    display: flex;
    height: 3px;
    gap: 5px;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1.5rem;
    width: fit-content;
    justify-content: center;
    align-items: center;
    margin: auto;
}

button.owl-dot {
    flex: 1;
    height: 100%;
    background: var(--color-secondary-active) !important;
    color: var(--color-secondary-active) !important;
    width: 10px;
}

button.owl-dot.active {
    background: var(--color-secondary) !important;
}

.owl-dot span {
    display: none;
    width: 13px;
    height: 13px;
}

/* SETAS */

.owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.owl-prev i,
.owl-next i,
.owl-prev,
.owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--color-secondary);
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 1;
    font-size: 20px;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 175px;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-prev:hover {
    opacity: 0.6;
    transform: translateX(-2px);
}

.owl-next:hover {
    opacity: 0.6;
    transform: translateX(2px);
}

.owl-prev:active,
.owl-next:active {
    opacity: 0.4;
    transform: translateX(0);
}

.owl-prev.disabled,
.owl-next.disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}


/* =============================
   MENU DINÂMICO (FLOATING)
   ============================= */

.menu-dinamico div.floating-action-menu>.action-menu {
    visibility: hidden;
    transform: translateY(65px);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 300ms;
}

.menu-dinamico div.floating-action-menu.active>.action-menu {
    visibility: visible;
    transform: translate(0);
    opacity: 1;
    padding-bottom: 5px;
    max-height: 1000px;
}

.menu-dinamico div.floating-action-menu>.action-menu>.floating-action {
    padding-right: 7px;
}

.menu-dinamico div.floating-action-menu>.action-menu .btn-floating,
.menu-dinamico div.floating-action-menu>.action-menu .badge {
    transform: scale(0.4);
    transition: all 500ms ease-in-out;
}

.menu-dinamico div.floating-action-menu.active>.action-menu .btn-floating,
.menu-dinamico div.floating-action-menu.active>.action-menu .badge {
    transform: scale(1);
}

.menu-dinamico div.floating-action-menu>.action-button>.btn-floating {
    transition: all 500ms linear;
    background-color: var(--color-primary) !important;
    padding: 16px 8px;
    border-radius: 10px 0 0 10px;
    color: var(--color-white);
    writing-mode: vertical-rl;
    text-decoration: none;
    transform: rotate(180deg);
}

.menu-dinamico div.floating-action-menu>.action-button>.btn-floating:hover {
    box-shadow: var(--shadow) !important;
}

.menu-dinamico div.floating-action-menu.active>.action-button>.btn-floating {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.menu-dinamico div.floating-action-menu.active>.action-button>.btn-floating:hover {
    box-shadow: var(--shadow) !important;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.menu-dinamico div.floating-action-menu>.action-button>.btn-floating>i {
    transition: transform 500ms ease-in-out;
}

.menu-dinamico div.floating-action-menu.active>.action-button>.btn-floating>i {
    transform: rotate(-315deg);
}

.menu-dinamico .icon-plus::before {
    padding-bottom: 8px;
}

.badge-dark {
    color: var(--color-white);
    background-color: var(--color-dark);
    padding: 16px 8px;
    margin-top: 5px;
    border-radius: 0 10px 10px 0;
}

/* =============================
   VÍDEO (ratio 16:9)
   ============================= */

.video-ccv-index-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 9/16 = 56.25% — equivalente a calc(900% / 16) mas mais legível */
    border-radius: 40px;
    overflow: hidden;
}

.video-ccv-index {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
}