/* ==========================================================================
   CERAVE PORTUGAL - ESTILOS BASE, CABEÇALHO & CARROSSEL HERO
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Cores CeraVe */
    --cerave-navy: #0B3353;         /* Azul escuro dos títulos e menu principal */
    --cerave-navy-deep: #003057;    /* Azul marinho dos textos do banner */
    --cerave-navy-hover: #0772BA;   /* Azul ao passar o cursor */
    --cerave-blue: #0072CE;         /* Azul característico da marca / botão de pesquisa */
    --cerave-blue-hover: #005FA3;   /* Azul escurecido no hover */
    --cerave-teal: #00A2AC;         /* Verde azulado das linhas de destaque */
    --cerave-top-links: #4A5568;    /* Cinza escuro dos links utilitários */
    --cerave-input-bg: #F2F4F7;     /* Fundo do campo de pesquisa */
    --cerave-input-border: #E2E8F0; /* Borda sutil do campo */
    --cerave-border: #E6ECF0;       /* Divisória inferior do cabeçalho */
    --cerave-white: #FFFFFF;
    --cerave-text: #212529;

    /* Tipografias */
    --font-nav: 'Barlow', 'DIN Alternate', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-base: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Dimensões */
    --header-max-width: 1420px;
}

/* Reset básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.5;
    color: var(--cerave-text);
    background-color: var(--cerave-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

ul, ol {
    list-style: none;
}

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

button, input {
    font: inherit;
    outline: none;
}

/* ==========================================================================
   CABEÇALHO / HEADER
   ========================================================================== */
.header {
    width: 100%;
    background-color: var(--cerave-white);
    border-bottom: 1px solid var(--cerave-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(11, 51, 83, 0.04);
}

.header__container {
    width: 100%;
    max-width: var(--header-max-width);
    margin: 0 auto;
    padding: 10px 32px 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LOGO */
.header__logo-area {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header__logo-link {
    display: block;
    line-height: 0;
}

.header__logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.header__logo-link:hover .header__logo-img {
    opacity: 0.96;
}

/* ÁREA DIREITA (TOPO + NAVEGAÇÃO) */
.header__aside {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

/* LINHA SUPERIOR (LINKS + PESQUISAR) */
.header__top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.header__top-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__top-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--cerave-top-links);
    letter-spacing: 0.1px;
}

.header__top-link:hover {
    color: var(--cerave-blue);
    text-decoration: underline;
}

/* CAMPO DE PESQUISA */
.header__search {
    display: flex;
    align-items: center;
}

.header__search-form {
    display: flex;
    align-items: center;
    height: 36px;
    background-color: var(--cerave-input-bg);
    border: 1px solid var(--cerave-input-border);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header__search-form:focus-within {
    border-color: var(--cerave-blue);
    box-shadow: 0 0 0 2px rgba(0, 114, 206, 0.15);
}

.header__search-input {
    border: none;
    background: transparent;
    padding: 0 14px;
    font-size: 13.5px;
    color: var(--cerave-text);
    width: 175px;
    height: 100%;
}

.header__search-input::placeholder {
    color: #7A869A;
    font-weight: 400;
}

.header__search-btn {
    width: 36px;
    height: 36px;
    background-color: var(--cerave-blue);
    border: none;
    color: var(--cerave-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.header__search-btn:hover {
    background-color: var(--cerave-blue-hover);
}

.header__search-icon {
    width: 16px;
    height: 16px;
}

/* MENU PRINCIPAL DE NAVEGAÇÃO */
.header__nav {
    display: flex;
    align-items: center;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header__nav-item {
    position: relative;
}

.header__nav-link {
    font-family: var(--font-nav);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--cerave-navy);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--cerave-blue);
    transition: width 0.25s ease;
}

.header__nav-link:hover {
    color: var(--cerave-blue);
}

.header__nav-link:hover::after {
    width: 100%;
}

/* BOTÃO MOBILE (HAMBÚRGUER) */
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__mobile-bar {
    width: 100%;
    height: 3px;
    background-color: var(--cerave-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   CARROSSEL HERO PRINCIPAL (PROPORÇÃO ORIGINAL 1920x750)
   ========================================================================== */
.hero-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #F8FAFC;
    user-select: none;
}

.hero-carousel__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1920 / 750;
}

.hero-carousel__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-carousel__slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-carousel__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

/* CONTEÚDO TEXTUAL DO SLIDE (LADO ESQUERDO) */
.hero-carousel__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    margin-left: clamp(24px, 7.5vw, 130px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
}

.hero-carousel__subtitle {
    font-family: var(--font-nav);
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cerave-navy-deep);
    line-height: 1.35;
}

.hero-carousel__title {
    font-family: var(--font-nav);
    font-size: clamp(20px, 2.2vw, 29px);
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--cerave-navy-deep);
    line-height: 1.25;
}

.hero-carousel__title--large {
    font-size: clamp(24px, 2.7vw, 34px);
    letter-spacing: 1.5px;
}

.hero-carousel__text {
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 500;
    color: var(--cerave-navy-deep);
    margin-top: -6px;
}

.highlight-teal {
    color: var(--cerave-teal);
}

.highlight-blue {
    color: var(--cerave-navy-hover);
}

/* BOTÃO DO BANNER */
.hero-carousel__btn {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 34px;
    border: 1.5px solid var(--cerave-navy-deep);
    background-color: transparent;
    color: var(--cerave-navy-deep);
    font-family: var(--font-nav);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 1px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.hero-carousel__btn:hover {
    background-color: var(--cerave-navy-deep);
    color: var(--cerave-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 48, 87, 0.2);
}

/* SETAS DE NAVEGAÇÃO */
.hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cerave-navy);
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.hero-carousel__nav svg {
    width: 20px;
    height: 20px;
}

.hero-carousel__nav--prev {
    left: 18px;
}

.hero-carousel__nav--next {
    right: 18px;
}

.hero-carousel__nav:hover {
    background-color: var(--cerave-white);
    color: var(--cerave-blue);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

/* INDICADORES (DOTS) */
.hero-carousel__pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-carousel__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #5A6A7D;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.hero-carousel__dot.is-active {
    background-color: #364455;
    border-color: #364455;
    transform: scale(1.15);
}

.hero-carousel__dot:hover:not(.is-active) {
    border-color: var(--cerave-navy);
    background-color: rgba(90, 106, 125, 0.3);
}

/* ==========================================================================
   SEÇÃO: EXPLORAR PRODUTOS POR CATEGORIA
   ========================================================================== */
.categories-section {
    width: 100%;
    background-color: var(--cerave-white);
    padding: 64px 24px 72px 24px;
}

.categories-container {
    width: 100%;
    max-width: var(--header-max-width);
    margin: 0 auto;
}

.categories-section__title {
    font-family: var(--font-nav);
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 700;
    color: var(--cerave-navy);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background-color: #F4F6F8;
    border: 1px solid transparent;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 380px;
    padding: 34px 20px 28px 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.category-card__image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.category-card__image {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.category-card__title {
    font-family: var(--font-nav);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--cerave-navy);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 16px;
    transition: color 0.2s ease;
}

.category-card:hover {
    background-color: var(--cerave-white);
    border-color: #E2E8F0;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(11, 51, 83, 0.1);
}

.category-card:hover .category-card__image {
    transform: scale(1.04);
}

.category-card:hover .category-card__title {
    color: var(--cerave-blue);
}

.categories-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.categories-section__btn {
    display: inline-block;
    padding: 12px 36px;
    border: 1.5px solid var(--cerave-blue);
    background-color: transparent;
    color: var(--cerave-blue);
    font-family: var(--font-nav);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.categories-section__btn:hover {
    background-color: var(--cerave-blue);
    color: var(--cerave-white);
    box-shadow: 0 4px 14px rgba(0, 114, 206, 0.22);
    transform: translateY(-1px);
}

/* ==========================================================================
   SEÇÃO: QUAL A IMPORTÂNCIA DAS CERAMIDAS (VÍDEO IMERSIVO)
   ========================================================================== */
.ceramides-section {
    width: 100%;
    background-color: #0072BA;
    overflow: hidden;
}

.ceramides-container {
    width: 100%;
    max-width: var(--header-max-width);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 480px;
}

.ceramides-content {
    flex: 0 0 42%;
    max-width: 520px;
    padding: 60px 40px 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--cerave-white);
    z-index: 2;
}

.ceramides-tag {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--cerave-white);
}

.ceramides-divider {
    width: 130px;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.85);
    margin: 18px 0 28px 0;
}

.ceramides-title {
    font-family: var(--font-nav);
    font-size: clamp(23px, 2.3vw, 31px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--cerave-white);
    margin-bottom: 14px;
}

.ceramides-desc {
    font-family: var(--font-base);
    font-size: clamp(14px, 1.1vw, 15.5px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 420px;
}

.ceramides-action {
    margin-top: 36px;
}

.ceramides-btn {
    display: inline-block;
    padding: 11px 28px;
    border: 1.5px solid var(--cerave-white);
    background-color: transparent;
    color: var(--cerave-white);
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.ceramides-btn:hover {
    background-color: var(--cerave-white);
    color: #0072BA;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.ceramides-video-wrap {
    flex: 0 0 58%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0072BA;
}

.ceramides-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   SEÇÃO: BANNER DESTAQUE (PORQUÊ CERAMIDAS)
   ========================================================================== */
.why-ceramides-section {
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.why-ceramides-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 750;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.why-ceramides-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 1;
}

.why-ceramides-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    margin-left: clamp(24px, 7.5vw, 130px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-ceramides-banner__surtitle {
    font-family: var(--font-nav);
    font-size: clamp(12.5px, 1.1vw, 14px);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--cerave-blue);
    margin-bottom: 12px;
}

.why-ceramides-banner__title {
    font-family: var(--font-nav);
    font-size: clamp(22px, 2.3vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--cerave-navy);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.why-ceramides-banner__desc {
    font-family: var(--font-base);
    font-size: clamp(14px, 1.1vw, 15.5px);
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 24px;
}

.why-ceramides-banner__link {
    font-family: var(--font-nav);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--cerave-blue);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    display: inline-block;
}

.why-ceramides-banner__link:hover {
    color: var(--cerave-blue-hover);
    text-decoration: underline;
    transform: translateX(3px);
}

/* ==========================================================================
   SEÇÃO: FAVORITOS DOS CONSUMIDORES (3 SLOTS DE PRODUTOS / KITS)
   ========================================================================== */
.favorites-section {
    width: 100%;
    background-color: var(--cerave-white);
    padding: 68px 24px 76px 24px;
}

.favorites-container {
    width: 100%;
    max-width: var(--header-max-width);
    margin: 0 auto;
}

.favorites-section__title {
    font-family: var(--font-nav);
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 700;
    color: var(--cerave-navy);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.2px;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
}

.favorites-slot {
    display: flex;
    flex-direction: column;
}

.favorites-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 16px 12px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.favorites-card:hover {
    transform: translateY(-5px);
}

.favorites-card__image-wrap {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.favorites-card__image {
    max-height: 240px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.favorites-card:hover .favorites-card__image {
    transform: scale(1.05);
}

.favorites-card__title {
    font-family: var(--font-nav);
    font-size: 17px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin-bottom: 8px;
    transition: color 0.2s ease;
    line-height: 1.35;
}

.favorites-card:hover .favorites-card__title {
    color: var(--cerave-blue);
}

.favorites-card__desc {
    font-family: var(--font-base);
    font-size: 14px;
    color: #555555;
    line-height: 1.45;
    max-width: 270px;
    margin-bottom: 14px;
}

.favorites-card__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.favorites-stars {
    display: inline-flex;
    align-items: center;
    gap: 2.5px;
}

.star {
    width: 15px;
    height: 15px;
}

.star--filled {
    fill: var(--cerave-blue);
}

.star--empty {
    stroke: var(--cerave-blue);
}

.favorites-rating-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cerave-navy);
    margin-left: 2px;
}

.favorites-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.favorites-section__btn {
    display: inline-block;
    padding: 12px 36px;
    border: 1.5px solid var(--cerave-blue);
    background-color: transparent;
    color: var(--cerave-blue);
    font-family: var(--font-nav);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.favorites-section__btn:hover {
    background-color: var(--cerave-blue);
    color: var(--cerave-white);
    box-shadow: 0 4px 14px rgba(0, 114, 206, 0.22);
    transform: translateY(-1px);
}

/* ==========================================================================
   SEÇÃO: TENS ALGUMA QUESTÃO? (ATENDIMENTO / FAQ)
   ========================================================================== */
.questions-section {
    width: 100%;
    background-color: #F2F4F7;
    padding: 68px 24px 74px 24px;
    border-top: 1px solid var(--cerave-border);
    border-bottom: 1px solid var(--cerave-border);
}

.questions-container {
    width: 100%;
    max-width: var(--header-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.questions-surtitle {
    font-family: var(--font-nav);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cerave-blue);
    margin-bottom: 14px;
}

.questions-title {
    font-family: var(--font-nav);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    color: var(--cerave-navy);
    margin-bottom: 34px;
    letter-spacing: -0.2px;
}

.questions-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.questions-btn {
    display: inline-block;
    padding: 13px 32px;
    border: 1.5px solid var(--cerave-blue);
    background-color: var(--cerave-white);
    color: var(--cerave-blue);
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
}

.questions-btn:hover {
    background-color: var(--cerave-blue);
    color: var(--cerave-white);
    box-shadow: 0 4px 14px rgba(0, 114, 206, 0.25);
    transform: translateY(-1px);
}

/* ==========================================================================
   RODAPÉ OFICIAL / FOOTER
   ========================================================================== */
.footer {
    width: 100%;
    background-color: #0E3353;
    color: var(--cerave-white);
    padding: 60px 24px 44px 24px;
}

.footer__container {
    width: 100%;
    max-width: var(--header-max-width);
    margin: 0 auto;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer__logo-wrap {
    flex-shrink: 0;
}

.footer__logo-link {
    display: block;
    line-height: 0;
}

.footer__logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.footer__logo-link:hover .footer__logo-img {
    opacity: 0.9;
}

.footer__nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 64px;
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__nav-link {
    font-family: var(--font-nav);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--cerave-white);
    transition: color 0.2s ease, opacity 0.2s ease;
    display: inline-block;
}

.footer__nav-link:hover {
    color: #4BA3E3;
    opacity: 0.95;
}

.footer__divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.22);
    margin: 44px 0 32px 0;
}

.footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer__legal {
    flex: 1;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__legal-line {
    font-family: var(--font-base);
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer__legal-line strong {
    font-family: var(--font-nav);
    font-weight: 700;
    color: var(--cerave-white);
    letter-spacing: 0.4px;
}

.footer__legal-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.footer__legal-link:hover {
    color: #4BA3E3;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer__social-link {
    color: var(--cerave-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
    color: #4BA3E3;
    transform: translateY(-2px);
}

.footer__social-icon {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1080px) {
    .header__nav-list {
        gap: 22px;
    }
    
    .header__nav-link {
        font-size: 13.5px;
    }

    .header__container {
        padding: 10px 20px;
        gap: 24px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-card {
        height: 350px;
    }
}

@media (max-width: 920px) {
    .header__container {
        padding: 12px 16px;
    }

    .header__mobile-toggle {
        display: flex;
    }

    .header__aside {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--cerave-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 24px;
        overflow-y: auto;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .header__aside.is-active {
        left: 0;
    }

    .header__top-bar {
        width: 100%;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 16px;
        order: 2;
        border-top: 1px solid var(--cerave-border);
        padding-top: 20px;
    }

    .header__top-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .header__top-link {
        font-size: 15px;
    }

    .header__search {
        width: 100%;
    }

    .header__search-form {
        width: 100%;
    }

    .header__search-input {
        width: 100%;
    }

    .header__nav {
        width: 100%;
        order: 1;
    }

    .header__nav-list {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header__nav-link {
        font-size: 16px;
        padding: 8px 0;
    }

    .hero-carousel__content {
        margin-left: 24px;
        max-width: 440px;
    }

    .ceramides-container {
        flex-direction: column;
        min-height: auto;
    }

    .ceramides-content {
        flex: 1;
        max-width: 100%;
        padding: 48px 24px;
    }

    .ceramides-video-wrap {
        flex: 1;
        width: 100%;
        height: 360px;
    }

    .why-ceramides-banner {
        aspect-ratio: auto;
        min-height: 420px;
        padding: 36px 0;
    }

    .why-ceramides-banner__content {
        margin-left: 20px;
        max-width: 480px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        border-radius: 4px;
    }

    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer__top {
        flex-direction: column;
        gap: 36px;
    }

    .footer__nav {
        width: 100%;
        justify-content: space-between;
        gap: 28px;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .hero-carousel__viewport {
        aspect-ratio: 16 / 10;
        min-height: 260px;
    }

    .hero-carousel__image {
        object-fit: cover;
    }

    .hero-carousel__content {
        margin: 0 auto;
        padding: 12px;
        max-width: 92%;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(4px);
        border-radius: 4px;
        gap: 8px;
    }

    .hero-carousel__nav {
        width: 32px;
        height: 32px;
    }

    .categories-section {
        padding: 44px 16px 52px 16px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        height: 270px;
        padding: 20px 12px 16px 12px;
    }

    .category-card__image {
        max-height: 145px;
    }

    .category-card__title {
        font-size: 12px;
        margin-top: 10px;
    }

    .why-ceramides-banner {
        min-height: 380px;
    }

    .why-ceramides-banner__content {
        margin: 0 auto;
        max-width: 92%;
        padding: 18px;
    }

    .favorites-section {
        padding: 44px 16px 54px 16px;
    }

    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .favorites-card__image-wrap {
        height: 200px;
    }

    .favorites-card__image {
        max-height: 190px;
    }

    .questions-section {
        padding: 48px 16px 54px 16px;
    }

    .questions-actions {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .questions-btn {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 44px 16px 36px 16px;
    }

    .footer__nav {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 440px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        height: 290px;
    }
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumb {
    padding: 18px 24px;
    font-size: 13px;
    color: #64748B;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.breadcrumb__item a {
    color: var(--cerave-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
    color: var(--cerave-blue-hover);
}

.breadcrumb__item.active {
    color: var(--cerave-navy);
    font-weight: 600;
}

.breadcrumb__separator {
    color: #94A3B8;
    font-size: 11px;
}

/* ==========================================================================
   PÁGINA DE CATEGORIA: HERO, INTRO & CATÁLOGO
   ========================================================================== */
.category-hero {
    position: relative;
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    background-color: #0B3353;
    overflow: hidden;
}

.category-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.category-hero__container {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
}

.category-hero__title {
    font-family: var(--font-nav);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cerave-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.category-hero__title-accent {
    font-size: 1.15em;
    letter-spacing: 1px;
}

.category-intro {
    padding: 36px 24px 24px 24px;
}

.category-intro__text {
    font-family: var(--font-base);
    font-size: 15.5px;
    line-height: 1.65;
    color: #4A5568;
    max-width: 960px;
}

.catalog-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px 28px 24px;
    border-bottom: 1px solid var(--cerave-border);
}

.catalog-controls__count {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    color: var(--cerave-navy);
}

.catalog-controls__num {
    color: var(--cerave-blue);
}

.catalog-controls__filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-filter-btn {
    padding: 7px 16px;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #64748B;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.catalog-filter-btn:hover,
.catalog-filter-btn.is-active {
    background: var(--cerave-blue);
    border-color: var(--cerave-blue);
    color: #FFFFFF;
}

.catalog-section {
    padding: 40px 24px 80px 24px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    padding: 20px 16px 18px 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 48, 87, 0.1);
    border-color: #CBD5E1;
}

.catalog-card__link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-card__badge {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--cerave-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
    min-height: 28px;
}

.catalog-card__img-wrap {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.catalog-card__img {
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.catalog-card:hover .catalog-card__img {
    transform: scale(1.05);
}

.catalog-card__title {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    color: var(--cerave-navy);
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 42px;
    transition: color 0.2s ease;
}

.catalog-card:hover .catalog-card__title {
    color: var(--cerave-blue);
}

.catalog-card__benefit {
    font-size: 13px;
    color: #64748B;
    line-height: 1.45;
    margin-bottom: 12px;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 16px;
}

.catalog-card__stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.catalog-card__stars .star {
    width: 13px;
    height: 13px;
}

.catalog-card__rating-val {
    font-size: 12px;
    font-weight: 600;
    color: var(--cerave-navy);
}

.catalog-card__action {
    margin-top: auto;
    display: flex;
    gap: 8px;
    width: 100%;
}

.catalog-card__btn {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 8px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--cerave-blue);
    border: 1.5px solid var(--cerave-blue);
    background: transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.catalog-card__btn:hover {
    background: var(--cerave-blue);
    color: #FFFFFF;
}

/* ==========================================================================
   PÁGINA DO PRODUTO (PDP)
   ========================================================================== */
.pdp {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    padding: 30px 24px 60px 24px;
}

.pdp__gallery {
    flex: 0 0 46%;
    position: sticky;
    top: 90px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pdp__gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--cerave-navy);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pdp__gallery-main {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp__gallery-img {
    max-height: 400px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp__gallery-img:hover {
    transform: scale(1.08);
}

.pdp__details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pdp__ratings-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pdp__stars {
    display: inline-flex;
    align-items: center;
    gap: 2.5px;
}

.pdp__stars .star {
    width: 15px;
    height: 15px;
}

.pdp__rating-val {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cerave-navy);
}

.pdp__rating-divider {
    color: #CBD5E1;
}

.pdp__write-review {
    font-size: 13px;
    color: var(--cerave-blue);
    text-decoration: underline;
}

.pdp__write-review:hover {
    color: var(--cerave-blue-hover);
}

.pdp__title {
    font-family: var(--font-nav);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 700;
    color: var(--cerave-navy);
    line-height: 1.25;
    margin-bottom: 10px;
}

.pdp__tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pdp__skin-badge {
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--cerave-blue);
    text-transform: uppercase;
}

.pdp__attribute {
    font-family: var(--font-nav);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #64748B;
    text-transform: uppercase;
}

.pdp__benefit {
    font-family: var(--font-nav);
    font-size: 16px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin-bottom: 14px;
    line-height: 1.4;
}

.pdp__desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #4A5568;
    margin-bottom: 24px;
}

.pdp__sizes-area {
    margin-bottom: 24px;
}

.pdp__sizes-label {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 700;
    color: var(--cerave-navy);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pdp__sizes-list {
    display: flex;
    gap: 8px;
}

.pdp-size {
    padding: 6px 14px;
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid var(--cerave-blue);
    background: #FFFFFF;
    color: var(--cerave-blue);
    border-radius: 2px;
}

.pdp-size.is-selected {
    background: var(--cerave-blue);
    color: #FFFFFF;
}

.pdp__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.pdp__btn {
    padding: 13px 28px;
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pdp__btn--primary {
    background: var(--cerave-blue);
    color: #FFFFFF;
    border: 1.5px solid var(--cerave-blue);
}

.pdp__btn--primary:hover {
    background: var(--cerave-blue-hover);
    border-color: var(--cerave-blue-hover);
    box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3);
}

.pdp__btn--ghost {
    background: transparent;
    color: var(--cerave-blue);
    border: 1.5px solid var(--cerave-blue);
}

.pdp__btn--ghost:hover {
    background: var(--cerave-blue);
    color: #FFFFFF;
}

/* ACORDEÕES */
.pdp-accordions {
    border-top: 1px solid #E2E8F0;
}

.pdp-accordion {
    border-bottom: 1px solid #E2E8F0;
}

.pdp-accordion__summary {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-nav);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--cerave-navy);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}

.pdp-accordion__summary::-webkit-details-marker {
    display: none;
}

.pdp-accordion__summary:hover {
    color: var(--cerave-blue);
}

.pdp-accordion__icon {
    width: 14px;
    height: 14px;
    position: relative;
}

.pdp-accordion__icon::before,
.pdp-accordion__icon::after {
    content: '';
    position: absolute;
    background-color: var(--cerave-navy);
    transition: transform 0.25s ease;
}

.pdp-accordion__icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.pdp-accordion__icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.pdp-accordion[open] .pdp-accordion__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.pdp-accordion__content {
    padding: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
}

.pdp-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdp-benefits-list li {
    position: relative;
    padding-left: 20px;
}

.pdp-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cerave-blue);
    font-weight: bold;
}

.pdp-ingredients {
    font-size: 12.5px;
    line-height: 1.7;
    color: #64748B;
    text-transform: uppercase;
}

/* PRODUTOS RECOMENDADOS NA PDP */
.pdp-related {
    padding: 60px 24px 80px 24px;
    border-top: 1px solid var(--cerave-border);
}

.pdp-related__heading {
    font-family: var(--font-nav);
    font-size: 26px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin-bottom: 32px;
    text-align: center;
}

.pdp-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.pdp-related__card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pdp-related__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 48, 87, 0.08);
}

.pdp-related__link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pdp-related__img {
    height: 180px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.pdp-related__card:hover .pdp-related__img {
    transform: scale(1.05);
}

.pdp-related__title {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.pdp-related__card:hover .pdp-related__title {
    color: var(--cerave-blue);
}

.pdp-related__benefit {
    font-size: 12.5px;
    color: #64748B;
    line-height: 1.4;
}

/* RESPONSIVIDADE CATEGORIA E PDP */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pdp {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pdp {
        flex-direction: column;
        padding: 20px 16px 40px 16px;
    }

    .pdp__gallery {
        position: static;
        width: 100%;
    }

    .pdp__gallery-main {
        height: 320px;
    }

    .pdp-related__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .pdp__actions {
        flex-direction: column;
    }

    .pdp__btn {
        width: 100%;
    }
}

/* ==========================================================================
   INSTITUTIONAL & SUPPORT PAGES
   ========================================================================== */
.static-hero {
    background: linear-gradient(135deg, #0B3353 0%, #0072CE 100%);
    color: #FFFFFF;
    padding: 48px 24px;
    margin-bottom: 40px;
}

.static-hero__title {
    font-family: var(--font-nav);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
}

.static-hero__subtitle {
    font-size: 16px;
    opacity: 0.9;
    max-width: 780px;
    line-height: 1.6;
}

.static-content {
    max-width: 1000px;
    margin: 0 auto 80px auto;
    padding: 0 24px;
    line-height: 1.75;
    color: #334155;
}

.static-content h2 {
    font-family: var(--font-nav);
    color: var(--cerave-navy);
    font-size: 24px;
    margin: 36px 0 16px 0;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 8px;
}

.static-content h3 {
    font-family: var(--font-nav);
    color: var(--cerave-blue);
    font-size: 19px;
    margin: 24px 0 10px 0;
}

.static-content p {
    margin-bottom: 18px;
    font-size: 15px;
}

.static-content ul, .static-content ol {
    margin: 0 0 20px 24px;
    font-size: 15px;
}

.static-content li {
    margin-bottom: 8px;
}

/* CARDS DE INGREDIENTES */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 36px 0;
}

.ingredient-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 48, 87, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 48, 87, 0.08);
}

.ingredient-card__tag {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--cerave-blue);
    background: #EBF5FF;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.ingredient-card__title {
    font-family: var(--font-nav);
    font-size: 20px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin-bottom: 10px;
}

/* FORMULÁRIO DE CONTACTO */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-label {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 700;
    color: var(--cerave-navy);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #CBD5E1;
    border-radius: 4px;
    font-family: var(--font-base);
    font-size: 14.5px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--cerave-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.15);
}

/* COOKIES PREFERENCES */
.cookie-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 18px;
}

.cookie-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #CBD5E1;
    transition: .3s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--cerave-blue);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

input:disabled + .slider {
    background-color: #94A3B8;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SISTEMA DE CARRINHO, PREÇOS COM DESCONTO (-40%) E CHECKOUT
   ========================================================================== */

/* 1. BOTÃO DO CARRINHO NO CABEÇALHO */
.header__cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--cerave-navy);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    position: relative;
}

.header__cart-btn:hover {
    background-color: rgba(0, 117, 190, 0.08);
    color: var(--cerave-blue);
}

.header__cart-btn svg {
    color: var(--cerave-blue);
    transition: transform 0.2s ease;
}

.header__cart-btn:hover svg {
    transform: scale(1.1);
}

.header__cart-badge {
    background-color: var(--cerave-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header__cart-btn--mobile {
    display: none;
    padding: 8px;
    margin-right: 8px;
}

@media (max-width: 991px) {
    .header__cart-btn--mobile {
        display: inline-flex;
    }
    #headerCartBtnDesktop {
        display: none;
    }
}

/* 2. OVERLAY E DRAWER LATERAL DO CARRINHO */
body.cart-open {
    overflow: hidden;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 32, 58, 0.6);
    backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
    background-color: #ffffff;
}

.cart-drawer__header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer__header-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin: 0;
    letter-spacing: 0.5px;
}

.cart-drawer__header-count {
    font-size: 14px;
    color: #64748B;
    font-weight: 500;
}

.cart-drawer__close {
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #64748B;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s;
}

.cart-drawer__close:hover {
    color: var(--cerave-navy);
}

/* Barra de Portes Grátis */
.cart-drawer__shipping-status {
    background-color: #F8FAFC;
    padding: 14px 24px;
    border-bottom: 1px solid #E2E8F0;
}

.cart-drawer__shipping-msg {
    font-size: 13px;
    color: #334155;
    margin-bottom: 8px;
}

.cart-drawer__shipping-msg strong {
    color: var(--cerave-blue);
}

.cart-drawer__progress-bar {
    width: 100%;
    height: 7px;
    background-color: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
}

.cart-drawer__progress-fill {
    height: 100%;
    background-color: var(--cerave-blue);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.cart-drawer__progress-fill.is-free {
    background-color: #16A34A;
}

/* Lista de Itens */
.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 14px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.cart-item:hover {
    border-color: #CBD5E1;
}

.cart-item__img-link {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8FAFC;
    border-radius: 6px;
    padding: 4px;
}

.cart-item__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--cerave-navy);
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item__title:hover {
    color: var(--cerave-blue);
}

.cart-item__size {
    font-size: 11px;
    color: #64748B;
    margin-top: 2px;
}

.cart-item__prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.cart-item__price-promo {
    font-size: 15px;
    font-weight: 800;
    color: var(--cerave-blue);
}

.cart-item__price-orig {
    font-size: 12px;
    color: #94A3B8;
    text-decoration: line-through;
}

.cart-item__discount-tag {
    font-size: 10px;
    font-weight: 800;
    background-color: #EBF7EE;
    color: #16A34A;
    padding: 1px 5px;
    border-radius: 4px;
}

.cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.cart-item__qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    overflow: hidden;
    height: 28px;
}

.cart-item__qty-btn {
    background-color: #F8FAFC;
    border: none;
    width: 28px;
    height: 100%;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: background-color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item__qty-btn:hover {
    background-color: #E2E8F0;
    color: var(--cerave-blue);
}

.cart-item__qty-val {
    min-width: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--cerave-navy);
}

.cart-item__remove-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px 6px;
}

.cart-item__remove-btn:hover {
    color: #DC2626;
}

/* Estado Vazio */
.cart-drawer__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
}

.cart-drawer__empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 117, 190, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cart-drawer__empty h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin-bottom: 8px;
}

.cart-drawer__empty p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    max-width: 280px;
    margin-bottom: 24px;
}

.cart-drawer__btn-shop {
    display: inline-block;
    background-color: var(--cerave-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.cart-drawer__btn-shop:hover {
    background-color: #005B94;
}

/* Rodapé do Drawer */
.cart-drawer__footer {
    padding: 16px 24px 20px;
    border-top: 1px solid #E2E8F0;
    background-color: #ffffff;
}

.cart-drawer__savings-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #EBF7EE;
    color: #15803D;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
}

.cart-summary__val {
    font-weight: 600;
    color: var(--cerave-navy);
}

.cart-summary__val.is-free {
    color: #16A34A;
    font-weight: 800;
}

.cart-summary__row--total {
    border-top: 1px dashed #CBD5E1;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--cerave-navy);
}

.cart-summary__val-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--cerave-blue);
}

.cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-drawer__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--cerave-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color 0.2s, transform 0.15s;
}

.cart-drawer__checkout-btn:hover {
    background-color: #005B94;
    transform: translateY(-1px);
}

.cart-drawer__continue-btn {
    background: transparent;
    border: none;
    color: #64748B;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
}

.cart-drawer__continue-btn:hover {
    color: var(--cerave-navy);
}

.cart-drawer__trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    color: #94A3B8;
}

.cart-drawer__trust-dot {
    color: #CBD5E1;
}

/* Toast de Adição */
.cart-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--cerave-navy);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.cart-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* 3. PREÇOS NOS CARDS DE CATÁLOGO E PDP */
.catalog-card__price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 8px 0 12px 0;
}

.catalog-card__price-promo {
    font-size: 17px;
    font-weight: 800;
    color: var(--cerave-blue);
}

.catalog-card__price-original {
    font-size: 12px;
    color: #94A3B8;
    text-decoration: line-through;
}

.catalog-card__discount {
    font-size: 10px;
    font-weight: 800;
    background-color: #EBF7EE;
    color: #16A34A;
    padding: 2px 6px;
    border-radius: 4px;
}

.catalog-card__action {
    display: flex;
    gap: 8px;
    width: 100%;
}

.catalog-card__btn-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cerave-blue);
    color: #ffffff;
    border: none;
    font-size: 11px;
    font-weight: 800;
    padding: 10px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.catalog-card__btn-cart:hover {
    background-color: #005B94;
}

/* Preços e Quantidade na PDP */
.pdp__price-wrap {
    margin: 16px 0 20px 0;
    padding: 14px 18px;
    background-color: #F8FAFC;
    border-left: 4px solid var(--cerave-blue);
    border-radius: 4px;
}

.pdp__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.pdp__price-promo {
    font-size: 26px;
    font-weight: 800;
    color: var(--cerave-navy);
}

.pdp__price-original {
    font-size: 16px;
    color: #94A3B8;
    text-decoration: line-through;
}

.pdp__price-discount {
    font-size: 12px;
    font-weight: 800;
    background-color: #EBF7EE;
    color: #16A34A;
    padding: 3px 8px;
    border-radius: 4px;
}

.pdp__price-note {
    font-size: 12px;
    color: #64748B;
    margin-top: 4px;
}

.pdp__quantity-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pdp__quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    height: 44px;
    overflow: hidden;
}

.pdp__qty-btn {
    background-color: #F8FAFC;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: background-color 0.15s;
}

.pdp__qty-btn:hover {
    background-color: #E2E8F0;
    color: var(--cerave-blue);
}

.pdp__qty-input {
    width: 44px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--cerave-navy);
    -moz-appearance: textfield;
}

.pdp__qty-input::-webkit-outer-spin-button,
.pdp__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 4. PÁGINA DE CHECKOUT */
.checkout-page {
    background-color: #F8FAFC;
    min-height: 100vh;
}

.checkout-header {
    background-color: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    padding: 18px 0;
}

.checkout-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-header__logo {
    height: 36px;
    width: auto;
}

.checkout-header__security {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.checkout-header__back-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--cerave-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.checkout-header__back-link:hover {
    text-decoration: underline;
    color: #005B94;
}

.checkout-main {
    padding: 36px 16px 60px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 991px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-card {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    overflow: hidden;
}

.checkout-card__header {
    background-color: #F1F5F9;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #E2E8F0;
}

.checkout-card__step {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--cerave-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin: 0;
}

.checkout-card__body {
    padding: 24px 20px;
}

.checkout-field {
    margin-bottom: 18px;
}

.checkout-field:last-child {
    margin-bottom: 0;
}

.checkout-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.checkout-input,
.checkout-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 14px;
    color: var(--cerave-navy);
    background-color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-input:focus,
.checkout-select:focus {
    outline: none;
    border-color: var(--cerave-blue);
    box-shadow: 0 0 0 3px rgba(0, 117, 190, 0.15);
}

.checkout-field__hint {
    display: block;
    font-size: 11px;
    color: #64748B;
    margin-top: 4px;
}

.checkout-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.checkout-grid-3 {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.5fr;
    gap: 14px;
}

@media (max-width: 600px) {
    .checkout-grid-2,
    .checkout-grid-3 {
        grid-template-columns: 1fr;
    }
}

.checkout-phone-wrap {
    display: flex;
    align-items: center;
}

.checkout-phone-prefix {
    background-color: #F1F5F9;
    border: 1px solid #CBD5E1;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.checkout-phone-wrap .checkout-input {
    border-radius: 0 6px 6px 0;
}

.checkout-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
}

.checkout-checkbox-label input {
    margin-top: 3px;
    accent-color: var(--cerave-blue);
}

/* Opções de Envio */
.checkout-shipping-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--cerave-blue);
    background-color: #F0F7FC;
    border-radius: 8px;
    cursor: pointer;
}

.checkout-shipping-option input {
    accent-color: var(--cerave-blue);
    width: 18px;
    height: 18px;
}

.checkout-shipping-info {
    flex: 1;
}

.checkout-shipping-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cerave-navy);
}

.checkout-shipping-badge {
    background-color: #EBF7EE;
    color: #16A34A;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.checkout-shipping-desc {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.checkout-shipping-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--cerave-navy);
}

.checkout-shipping-price.is-free {
    color: #16A34A;
}

/* Métodos de Pagamento */
.checkout-payments-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.checkout-pay-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.checkout-pay-tab:hover {
    border-color: #94A3B8;
}

.checkout-pay-tab.is-active {
    border-color: var(--cerave-blue);
    background-color: #F0F7FC;
}

.checkout-pay-tab input {
    accent-color: var(--cerave-blue);
    width: 18px;
    height: 18px;
}

.checkout-pay-tab__content {
    flex: 1;
}

.checkout-pay-tab__top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cerave-navy);
}

.checkout-pay-tag {
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.mbway-badge {
    background-color: #DC2626;
    color: #ffffff;
}

.mb-badge {
    background-color: #003057;
    color: #ffffff;
}

.checkout-pay-tab__desc {
    display: block;
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

.checkout-pay-details {
    display: none;
    padding-top: 10px;
}

.checkout-pay-details.is-active {
    display: block;
}

.checkout-pay-info-box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.checkout-card-form {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 18px;
}

/* Botão de Finalização */
.checkout-actions {
    margin-top: 24px;
}

.checkout-submit-btn {
    width: 100%;
    background-color: var(--cerave-blue);
    color: #ffffff;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0, 117, 190, 0.3);
}

.checkout-submit-btn:hover:not(:disabled) {
    background-color: #005B94;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 117, 190, 0.4);
}

.checkout-submit-btn:disabled {
    background-color: #94A3B8;
    cursor: not-allowed;
    box-shadow: none;
}

.checkout-privacy-note {
    font-size: 11px;
    color: #64748B;
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
}

.checkout-privacy-note a {
    color: var(--cerave-blue);
}

/* Sidebar Resumo do Pedido */
.checkout-summary-card {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 24px;
    position: sticky;
    top: 24px;
}

.checkout-summary-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cerave-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
    margin: 0 0 16px 0;
}

.checkout-summary-count {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

.checkout-summary-items {
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 4px;
    margin-bottom: 20px;
}

.checkout-summary-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.checkout-summary-item__img-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-summary-item__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.checkout-summary-item__qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #475569;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-summary-item__info {
    flex: 1;
}

.checkout-summary-item__title {
    font-size: 12px;
    font-weight: 700;
    color: var(--cerave-navy);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checkout-summary-item__size {
    font-size: 11px;
    color: #64748B;
}

.checkout-summary-item__prices {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
}

.checkout-summary-item__price {
    font-size: 13px;
    font-weight: 800;
    color: var(--cerave-blue);
}

.checkout-summary-item__orig {
    font-size: 11px;
    color: #94A3B8;
    text-decoration: line-through;
}

.checkout-empty-cart {
    text-align: center;
    padding: 30px 10px;
    color: #64748B;
}

.checkout-empty-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cerave-blue);
    text-decoration: underline;
}

/* Cupão */
.checkout-coupon-box {
    padding: 16px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 16px;
}

.checkout-coupon-form {
    display: flex;
    gap: 8px;
}

.checkout-coupon-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 13px;
    text-transform: uppercase;
}

.checkout-coupon-btn {
    background-color: var(--cerave-navy);
    color: #ffffff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    padding: 0 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.checkout-coupon-btn:hover {
    background-color: var(--cerave-blue);
}

.checkout-coupon-feedback {
    font-size: 12px;
    margin-top: 6px;
}

.checkout-coupon-feedback.is-success {
    color: #16A34A;
    font-weight: 600;
}

.checkout-coupon-feedback.is-error {
    color: #DC2626;
}

.checkout-coupon-tip {
    font-size: 11px;
    color: #64748B;
    margin-top: 6px;
}

/* Totais no Resumo */
.checkout-summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.checkout-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
}

.checkout-summary-orig {
    text-decoration: line-through;
    color: #94A3B8;
}

.checkout-summary-line--savings {
    color: #16A34A;
    font-weight: 700;
}

.checkout-summary-line--coupon {
    color: #2563EB;
    font-weight: 700;
}

.checkout-summary-shipping.is-free {
    color: #16A34A;
    font-weight: 700;
}

.checkout-summary-line--total {
    border-top: 2px solid #E2E8F0;
    padding-top: 14px;
    margin-top: 4px;
    align-items: baseline;
}

.checkout-summary-line--total strong {
    font-size: 15px;
    color: var(--cerave-navy);
}

.checkout-summary-line--total small {
    display: block;
    font-size: 11px;
    color: #64748B;
    font-weight: normal;
}

.checkout-summary-total-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--cerave-blue);
}

.checkout-guarantees {
    border-top: 1px dashed #CBD5E1;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #475569;
}

/* Modal de Sucesso */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 32, 58, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.order-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.order-modal__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.order-modal__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--cerave-navy);
    margin: 0 0 6px 0;
}

.order-modal__subtitle {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 14px;
}

.order-modal__number-badge {
    display: inline-block;
    background-color: #F1F5F9;
    color: #334155;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.order-modal__number-badge strong {
    color: var(--cerave-blue);
}

.order-payment-box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 18px;
    text-align: left;
    margin-bottom: 20px;
}

.order-payment-box__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--cerave-navy);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.order-payment-box--mbway .order-payment-box__badge {
    background-color: #DC2626;
}

.order-payment-box h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin: 0 0 6px 0;
}

.order-payment-box p {
    font-size: 13px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.order-payment-box__alert {
    background-color: #FEF3C7;
    color: #92400E;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 12px;
}

.mb-table {
    background-color: #ffffff;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    padding: 12px 14px;
    margin: 12px 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #334155;
}

.mb-row strong {
    color: var(--cerave-navy);
    font-family: monospace;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.mb-note {
    font-size: 11px;
    color: #64748B;
}

.order-modal__delivery-info {
    text-align: left;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.order-modal__delivery-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin: 0 0 6px 0;
}

.order-modal__delivery-info p {
    font-size: 12px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.order-modal__btn {
    display: inline-block;
    width: 100%;
    background-color: var(--cerave-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
}

.order-modal__btn:hover {
    background-color: #005B94;
}

/* ==========================================================================
   ESTILOS DOS KITS PROMOCIONAIS CERAVE (FAVORITOS & PDP DE KITS)
   ========================================================================== */

.favorites-slot {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px 20px 20px;
    box-shadow: 0 4px 18px rgba(0, 48, 87, 0.07);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.favorites-slot:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 48, 87, 0.14);
    border-color: #CBD5E1;
}

.favorites-slot--featured {
    border: 2px solid var(--cerave-blue);
    background: linear-gradient(180deg, #F0F7FC 0%, #FFFFFF 35%);
}

.favorites-kit-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cerave-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 117, 190, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.favorites-kit-badge--gold {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    box-shadow: 0 3px 10px rgba(217, 119, 6, 0.4);
}

.favorites-kit-badge--purple {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.4);
}

.kit-packshot-visual,
.kit-bundle-visual {
    width: 100%;
    height: 225px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    padding: 8px 12px;
}

.kit-packshot-img {
    max-width: 100%;
    max-height: 205px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.favorites-slot:hover .kit-packshot-img,
.catalog-card:hover .kit-packshot-img {
    transform: scale(1.04);
}

.kit-bundle-items-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 48, 87, 0.9);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    z-index: 5;
}

.favorites-card__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--cerave-navy);
    line-height: 1.3;
    margin: 0 0 6px 0;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.favorites-card__desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
    margin: 0 0 12px 0;
    min-height: 38px;
}

.kit-included-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 14px;
}

.kit-pill {
    background-color: #F1F5F9;
    color: #334155;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
}

.kit-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.kit-price-promo {
    font-size: 24px;
    font-weight: 800;
    color: var(--cerave-navy);
}

.kit-price-original {
    font-size: 15px;
    color: #94A3B8;
    text-decoration: line-through;
}

.kit-price-discount {
    font-size: 12px;
    font-weight: 800;
    background-color: #EBF7EE;
    color: #16A34A;
    padding: 2px 7px;
    border-radius: 4px;
}

.kit-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    width: 100%;
}

.kit-btn-add {
    width: 100%;
    background-color: var(--cerave-blue);
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 800;
    padding: 13px 16px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s, transform 0.15s;
    box-shadow: 0 3px 10px rgba(0, 117, 190, 0.25);
}

.kit-btn-add:hover {
    background-color: #005B94;
    transform: translateY(-1px);
}

.kit-btn-details {
    width: 100%;
    text-align: center;
    color: var(--cerave-navy);
    font-size: 12px;
    font-weight: 700;
    padding: 9px;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.kit-btn-details:hover {
    border-color: var(--cerave-navy);
    background-color: #F8FAFC;
    color: var(--cerave-blue);
}

/* Lista de Produtos dentro da PDP do Kit */
.kit-pdp-products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.kit-product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
}

.kit-product-item__step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--cerave-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kit-product-item__img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    background: #ffffff;
    padding: 4px;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
}

.kit-product-item__info {
    flex: 1;
}

.kit-product-item__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin: 0 0 2px 0;
}

.kit-product-item__size {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 4px;
}

.kit-product-item__desc {
    font-size: 12px;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   CHECKOUT UPSELL / ORDER BUMP (VENDA CASADA POR 5,00 €)
   ========================================================================== */
.checkout-upsell-card {
    border: 2px solid #0075BE !important;
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%) !important;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 117, 190, 0.12) !important;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.checkout-upsell-card.is-inactive {
    border-color: #CBD5E1 !important;
    background: #F8FAFC !important;
    box-shadow: none !important;
    opacity: 0.88;
}

.checkout-upsell-header {
    background: linear-gradient(90deg, #0075BE 0%, #004F82 100%);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-upsell-badge {
    color: #ffffff;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkout-upsell-savings-pill {
    background: #22C55E;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 12px;
    letter-spacing: 0.3px;
}

.checkout-upsell-box {
    padding: 18px 20px;
}

.checkout-upsell-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #0075BE;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(0, 117, 190, 0.08);
    transition: all 0.2s ease;
    user-select: none;
}

.checkout-upsell-card.is-inactive .checkout-upsell-checkbox-label {
    border-color: #E2E8F0;
    box-shadow: none;
}

.checkout-upsell-checkbox {
    width: 22px;
    height: 22px;
    accent-color: #0075BE;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-upsell-headline {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.checkout-upsell-headline strong {
    font-family: var(--font-nav);
    font-size: 15px;
    color: var(--cerave-navy);
    line-height: 1.3;
}

.checkout-upsell-subheadline {
    font-size: 12.5px;
    color: #475569;
}

.checkout-upsell-subheadline del {
    color: #94A3B8;
}

.checkout-upsell-subheadline strong {
    color: #16A34A;
    font-weight: 800;
}

.checkout-upsell-body {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 16px;
    padding: 6px 0;
}

.checkout-upsell-media {
    width: 80px;
    height: 100px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
}

.checkout-upsell-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.checkout-upsell-content {
    flex: 1;
}

.checkout-upsell-title {
    font-family: var(--font-nav);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--cerave-navy);
    margin: 0 0 6px 0;
}

.checkout-upsell-desc {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.45;
    margin: 0 0 8px 0;
}

.checkout-upsell-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    padding: 3px 10px;
    border-radius: 6px;
}

.checkout-upsell-tag-promo {
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 800;
    color: #0075BE;
}

.checkout-upsell-tag-orig {
    font-size: 12px;
    color: #94A3B8;
    text-decoration: line-through;
}

.checkout-upsell-tag-discount {
    font-size: 11px;
    font-weight: 700;
    color: #16A34A;
}

.checkout-upsell-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px dashed #CBD5E1;
}

.checkout-upsell-tip {
    font-size: 11.5px;
    color: #64748B;
    display: block;
    line-height: 1.4;
}

/* Order Summary line item for Upsell */
.checkout-summary-line--upsell {
    color: #0075BE !important;
    font-weight: 600;
}

.checkout-upsell-amount {
    color: #0075BE;
    font-weight: 800;
}

.checkout-upsell-tag-mini {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 800;
    color: #ffffff;
    background: #0075BE;
    padding: 1px 6px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.checkout-summary-item--upsell {
    background: #F0F7FF;
    border-radius: 6px;
    padding: 6px;
    border: 1px dashed #0075BE;
}

.checkout-upsell-remove-btn {
    background: none;
    border: none;
    color: #DC2626;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 3px;
    text-decoration: underline;
}