@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');
@import url('https://pro.fontawesome.com/releases/v5.12.0/css/all.css');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    background-color: #fff;
    color: #111;
    height: 100%;
    margin: 0;
}

:root {
    --color-primary: #3A10E0;
    --color-secondary: #333333;
    --color-complementar: #666666;
    --color-analogic-one: #F8F8FF;
    --color-analogic-two: #CFCFCF;
    --color-acento: #B0B0B0;
    --color-background: #fff;
    --color-muted: #ddd;
    --color-white: #fff;
    --gray-100: #c0c0c0;

    --slider-width: 100%;
    --slider-height: 400px;
    --control-bg: rgba(0, 0, 0, 0.4);
    --control-color: #FFF;

    --font-base: 16px;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;

    --gap: 12px;
    --thumb-size: 80px;


    --font-body: "Montserrat", sans-serif;
    --font-title: "TikTok Sans", sans-serif;
}

/* layout.css - Container, Grid e Flex */

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.container-fluid {
    width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.col {
    padding: 0 8px;
    flex: 1;
}

.col-20 {
    flex: 0 0 22.22%;
    max-width: 22.22%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-2 {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
}

.col-1{
    flex: 0 0 8.3333%;
    max-width: 8.3333%;
}

@media (max-width: 768px) {
    .col-6,
    .col-9,
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-20,
    .col-3,
    .col-4,
    .col-2,
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    /* O container interno é que vai ter fundo */
    z-index: 1000;
    display: flex;
    justify-content: center;
    /* Para centralizar o container */
    padding: 16px 0;
    /* Espaço para não colar no topo */
}

.header-container {
    width: 90%;
    max-width: 1200px;
    background: var(--color-analogic-one);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo img {
    max-width: 60%;
    height: auto;
}

.main-nav>ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav>ul>li {
    position: relative;
    margin: 0 15px;
}

.main-nav>ul>li>a {
    text-decoration: none;
    color: var(--color-secondary);
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 300;
    padding: 12px 6px;
    display: inline-block;
    line-height: 1.2;
}

.main-nav>ul>li>a:hover {
    color: var(--color-primary);
}

/* Dropdown (submenu) */
.main-nav ul li .dropdown {
    position: absolute;
    top: 100%;
    /* Grudado logo abaixo do item pai */
    left: 0;
    background: var(--color-analogic-one);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: none;
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    z-index: 999;
}

.main-nav ul li .dropdown li {
    margin: 0;
    padding: 0;
}

.main-nav ul li .dropdown li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-secondary);
    white-space: nowrap;
}

.main-nav ul li .dropdown li a:hover {
    background-color: #f0f0f0;
}

.dropdown li a i {
    margin-right: 8px;
    width: 18px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgb(182, 109, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Para navegadores modernos */
    color: transparent;
}

.main-nav>ul>li.has-dropdown:hover .dropdown {
    display: block;
}

/* BOTÕES HEADER */
.header-actions a {
    margin-left: 10px;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    font-family: var(--font-body);
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-primary);
    backdrop-filter: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-color: rgba(0, 123, 255, 0.5);
    color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-background);
    backdrop-filter: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-secondary);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-color: rgba(0, 123, 255, 0.5);
    color: var(--color-background);
    box-shadow: 2px 8px 40px rgba(0, 123, 255, 0.4);
}

.hamburger-menu {
    display: none;
}

@media (max-width: 768px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--color-analogic-one);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1500;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 16px;
}

.mobile-nav ul li a:hover {
    color: var(--color-primary);
}

#menu-close {
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.mobile-nav.active {
    right: 0;
}

#menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-secondary);
}

.mobile-nav .has-submenu ul {
    display: none;
    padding-left: 15px;
    /* Recuo visual */
}

.mobile-nav .has-submenu.active ul {
    display: block;
}

.mobile-nav .has-submenu ul li a i {
    margin-right: 8px;
    width: 18px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgb(182, 109, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Para navegadores modernos */
    color: transparent;
}

.title_home {
    text-align: center;
    font-size: 72px;
    font-family: var(--font-body);
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 60px 40px 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(211, 211, 211, 0.8) 100%) text;
}

.sub_home {
    font-family: var(--font-body);
    font-size: 28px;
    text-align: center;
    font-weight: 400;
    line-height: 1.4em;
    padding: 12px 40px;
    color: var(--color-analogic-one);
}

.title_text {
    text-align: center;
    font-size: 3.4rem;
    font-family: var(--font-title);
    -webkit-text-fill-color: transparent;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(182, 109, 255) 100%) text;
}

.text_white {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-analogic-one);
    padding: 12px 20px;
}

.round-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-icon i {
    font-size: 24px;
}

/* Imagens  */

img {
    height: auto;
    max-width: 100%;
}

/* cabeçalhos clicáveis */
.title-collapse {
    position: relative;
    margin: 0;
    padding: 1rem 0;
    background: var(--color-white);
    color: var(--color-primary);
    cursor: pointer;
    user-select: none;
}

/* ícone + ou – */
.title-collapse::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.title-collapse.open::after {
    content: '–';
}

/* conteúdo escondido */
.text-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    padding: 0 1rem;
}

.text-collapse.open {
    /* max-height grande o suficiente para conter o conteúdo */
    max-height: 500px;
    padding: 1rem;
}

.section__home {
    padding: 6rem 0;
    background: #3A10E0;
    background: linear-gradient(133deg, #3A10E0 0%, #800000 87%);
}

.card__tech {
    padding: 6rem 0;
    background: #2D3BBD;
    background: linear-gradient(133deg, #3A10E0 40%, #800000 90%);
    border-radius: 40px;
}

.card__dental {
    width: 80%;
    margin: 1rem auto;
    padding: 2.8rem 1rem;
    background: rgb(255, 255, 255);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-left: 8px solid var(--color-complementar);
}

.card__dental h2 {
    font-size: 2.8rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--color-primary);
    margin-bottom: .5rem;
}

.card__dental h3 {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--font-body);
    color: var(--color-primary);
    margin-bottom: .5rem;
}

.card__dental p {
    font-size: 1rem;
    font-weight: 300;
    font-family: var(--font-body);
    color: var(--color-secondary);
}

.img-dashboard-home {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    /* Centraliza com margem superior */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    object-fit: contain;
    /* Mantém a imagem proporcional sem cortar */
}

.section {
    padding: 6rem 0;
    background: var(--color-analogic-one);
}

.btn {
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: var(--color-analogic-one);
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(58, 16, 224, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-color: rgba(0, 123, 255, 0.5);
    color: var(--color-analogic-one);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.btn-contato {
    margin-top: 20px;
    font-weight: 300;
    font-family: var(--font-body);
    display: inline-block;
    text-align: center;
    position: relative;
    background: linear-gradient(133deg, rgba(45, 59, 189, 1) 0%, rgba(51, 51, 51, 1) 87%);
    color: var(--color-white);
    padding: 22px 48px;
    font-size: 18px;
    border: none;
    border-radius: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    /* Garante que o conteúdo do botão fique acima dos efeitos */
}

.btn-contato::before,
.btn-contato::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    /* Deixa o efeito mais suave tipo glass */
    transform: translateX(-50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.btn-contato::before {
    top: 0;
    clip-path: polygon(0 0, 100% 0, 91% 10%, 8% 10%, 0 0, 0 0);
}

.btn-contato::after {
    top: 0;
    clip-path: polygon(0 100%, 100% 100%, 91% 90%, 8% 90%, 0 100%, 0 100%);
}

/* Efeito ao Hover: Mais brilho e deslocamento das faixas decorativas */
.btn-contato:hover {
    background: linear-gradient(133deg, rgba(65, 85, 255, 1) 0%, rgba(71, 71, 71, 1) 87%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(45, 59, 189, 0.5);
}

.btn-contato:hover::before {
    transform: translateX(-50%) translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.btn-contato:hover::after {
    transform: translateX(-50%) translateY(5px);
    background: rgba(255, 255, 255, 0.08);
}

.btn-group {
    display: inline-flex;
}

.btn-group .btn {
    border-right: 1px solid var(--color-background);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: var(--color-background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.text-secondary {
    color: var(--color-secondary);
}

.text-primary {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

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

.bg-primary i {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
}

.bg-primary h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 4rem;
}

.bg-secondary {
    background-color: var(--color-secondary);
    padding: 4rem 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: var(--color-background);
    padding: var(--space-md);
}

.modal.show {
    display: flex;
}

/* utilities.css - Textos, Alinhamentos, Espaçamentos */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: var(--space-sm);
    font-weight: bold;
    color: var(--color-secondary);
}

h1 {
    font-size: 3rem;
}

h1 span {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-primary);
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: .9rem;
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.p-1 {
    padding: var(--space-sm);
}

.p-2 {
    padding: var(--space-md);
}

.p-3 {
    padding: var(--space-lg);
}

.m-1 {
    margin: var(--space-sm);
}

.m-2 {
    margin: var(--space-md);
}

.m-3 {
    margin: var(--space-lg);
}

.wave-divider {
    position: relative;
    background-color: #f4f4f4;
    height: 60px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: block;
}

.icon-down {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: #0d47d9;
    font-size: 20px;
    font-weight: bold;
    background: #f4f4f4;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-hover {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #2D3BBD;
    background: linear-gradient(133deg, rgba(45, 59, 189, 1) 0%, rgba(51, 51, 51, 1) 87%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin: 8px;
    height: 420px;
}

.card-hover:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.card-hover .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateY(20px) scale(1.05);
    transition: all 0.5s ease;
    z-index: 0;
}

.card-hover:hover .card-image {
    opacity: 1;
    transform: translateY(0) scale(1.1);
}

.card-hover .card_content {
    position: relative;
    padding: 20px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    top: 20%;
    margin: 20px;
}

.card_content h3 {
    font-size: 1.6rem !important;
}

.card-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-secondary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin: 8px;
    padding: 20px;
    height: 240px;
}

.card-content:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.card-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: left;
    color: var(--color-analogic-one);
}

.card-content p {
    font-size: 1rem;
    font-weight: 300;
    font-family: var(--font-body);
    text-align: left;
    color: var(--color-analogic-one);
}

.card-conter {
    margin-top: 16px;
    border-radius: 20px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
    background-color: var(--color-primary);
}

.counter-container {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: #202022;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(left, #202022, #444);
    background: -moz-linear-gradient(left, #202022, #444);
    background: -o-linear-gradient(left, #202022, #444);
    background: linear-gradient(to right, #202022, #444);
}

.counter-item h3 {
    text-align: center;
    font-size: 72px;
    font-family: var(--font-body);
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 60px 40px 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(211, 211, 211, 0.8) 100%) text;
}

.counter-item p {
    font-size: 18px;
    color: var(--color-white);
    font-weight: 300;
}

/* Slider */
.vertical-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.vertical-slider .slides {
    display: flex;
    flex-direction: column;
    transition: transform 0.8s ease;
}

.vertical-slider .slide {
    flex: 0 0 auto;
}

.vertical-slider .slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* controles à direita */
.vertical-slider .controls {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.vertical-slider .controls btn-fav {
    background: rgba(0, 0, 0, 0.4);
    color: #FFF;
    border: none;
    padding: .5rem .75rem;
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background .3s;
}

.vertical-slider .controls btn-fav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.form-contato {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin: 2px 6px;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid var(--color-secondary);
    border-radius: 8px;
    font-size: 1rem;
    margin: 2px 6px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    outline: none;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 12px 0;
    margin: 0;
}

.breadcrumb li+li {
    position: relative;
    margin-left: 8px;
}

.breadcrumb li+li::before {
    content: '🛒';
    color: #444;
    padding-right: .4rem;
    font-size: 1.4rem;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: none;
    color: #1d78b5;
}

.breadcrumb li:last-child {
    color: #333;
}

.filter-content {
    overflow: auto;
    max-height: 230px;
    padding: 8px;
}

.filter-content a {
    text-decoration: none;
    font-size: 1rem;
    color: #444;
    transition: transform 0.3s ease-in-out;
    padding: 4px 0;
}

.filter-content a:hover {
    color: var(--color-analogic-two);
}

/* Container flex para alinhar */
.quantity-stepper {
    display: inline-flex;
    align-items: center;
    border: none;
    overflow: hidden;
}

/* Botões de menos/mais */
.quantity-stepper .step-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-stepper .step-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.quantity-stepper .step-btn:hover:not(:disabled) {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* Input central */
.quantity-stepper .step-input {
    width: 3rem;
    text-align: center;
    border: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    outline: none;
}

.minus {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.plus {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.product-gallery {
    display: flex;
    gap: var(--gap);
    max-width: 900px;
    margin: 0 auto;
}

/* === miniaturas === */
.thumbnails {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.thumbnails .thumb {
    width: var(--thumb-size);
    height: var(--thumb-size);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.thumbnails .thumb.active {
    border-color: var(--color-primary);
}

/* === imagem principal === */
.main-image {
    flex: 1;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
    cursor: zoom-in;
}

.card-product {
    padding: .5rem;
}

textarea.form-duvida {
    width: 100%;
    height: 100px;
    resize: none;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 1rem 0;
    border-radius: 20px 20px 20px 5px;
    vertical-align: middle;
    font-size: 14px;
    font-family: Arial, sans-serif;
    -webkit-transform: skew(2deg);
    -ms-transform: skew(2deg);
    transform: skew(358deg);
}

.calculo-frente {
    display: flex;
    align-items: center;
    background: var(--color-secondary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    max-width: 85%;
}

/* ícone */
.calculo-frente .calc-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
}

/* texto */
.calculo-frente .calc-label {
    font-weight: 300;
    color: var(--color-primary);
    white-space: nowrap;
    margin-right: .5rem;
    font-size: .85rem;
}

/* input numérico */
.calculo-frente .calc-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 1rem;
    outline: none;
}

/* botão */
.calculo-frente .calc-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.55rem 1rem;
    font-size: 1rem;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.calculo-frente .calc-btn:hover {
    background: #0f254a;
}

.parallax_home {
    background-image: url('/images/slide/parallax_bg.png');
    min-height: 420px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.parallax_home h1 {
    padding-top: 5%;
    font-size: 3.2rem !important;
    font-weight: 300;
    color: #fff;
}

.parallax_home h1 span {
    font-size: 2rem !important;
    font-weight: 700;
    color: #FFF;
    padding: 0 .6rem;
}

.accordion {
    width: 100%;
    margin: 2.5rem auto;
    background: var(--color-analogic-one);
    padding: 1rem;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 0.75rem 1rem;
    background: var(--color-background);
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-button {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-background);
    color: var(--color-secondary);
    border-bottom: 3px solid var(--color-primary);
}

.accordion-item.active .accordion-collapse {
    max-height: 300px;
    /* ajuste conforme necessário */
    padding: 0.75rem 1rem;
}

.accordion-body {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--color-secondary);
}


footer {
    padding: 2.6rem 0;
    background-color: var(--color-secondary);
}

footer h5 {
    color: var(--color-analogic-one) !important;
    font-size: 1.2rem;
}

footer a,
footer p {
    color: var(--color-analogic-one) !important;
    font-size: .85rem;
    text-decoration: none;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer ul li a {
    text-decoration: none;
    font-size: var(--space-md);
    color: var(--color-analogic-one);
    transition: all 0.25s ease 0s;
}

footer a:hover,
footer ul li a:hover {
    color: #c0c0c0 !important;
}

footer .menu__footer {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    /* Espaço entre os itens */
    background-color: transparent;
    padding: 1rem;
    justify-content: center;
}

footer .menu__footer li{
    color: #f4f4f4;
}

footer .menu__footer li a {
    text-decoration: none;
    color: #f4f4f4;
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

footer .menu__footer li a:hover {
    background-color: transparent;
    border-radius: 4px;
    color: #c0c0c0;
}

.span-text {
    font-size: .75rem;
    color: var(--color-analogic-one);
    font-weight: 300;
    text-align: center;
}

.footer__social {
    display: flex;
    column-gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer__social-link {
    font-size: 1.2rem !important;
    text-decoration: none;
    color: var(--color-analogic-one) !important;
    transition: all 0.25s ease 0s;
}

.footer__social-link:hover {
    color: #c0c0c0 !important;
}

.footer__social-link i {
    display: block;
}

.newsletter-signup {
    display: flex;
    max-width: 600px;
    margin: 1rem auto;
}

.newsletter-signup__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 50px 0 0 50px;
    /* 50px cria o efeito “pílula” */
    font-size: 1rem;
    outline: none;
}

.newsletter-signup__button {
    padding: 0 1.5rem;
    border: 1px solid #ccc;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    /* arredonda só o lado direito */
    transition: background 0.3s;
}

.newsletter-signup__button:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.paysvg {
    font-size: 1.2rem;
}

.paysvg img {
    height: 72px;
    max-width: auto;
    padding: 6px;
}

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

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: .75rem;
        margin-bottom: var(--space-sm);
        font-weight: 400;
    }

    .btn-contato {
        padding: 12px 24px !important;
    }

    .paysvg img {
        width: 10% !important;
    }

    .title_home {
        font-size: 32px !important;
        padding: 2.4rem 1rem !important;
    }

    .sub_home {
        font-size: 16px;
    }
}
