:root {
    /* Brand colors: change these values to adapt the landing to another campaign. */
    --cg-color-primary: #d70619;
    --cg-color-primary-dark: #c40015;
    --cg-color-accent: #ffb53d;
    --cg-color-info: #0588d8;
    --cg-color-success: #8bd216;
    --primary-color: #274690;
    --secundary-color: #1da3fd;

    /* Neutral colors. */
    --cg-color-bg: #fbf2e8;
    --cg-color-surface: #fff;
    --cg-color-text: #1f1f1f;
    --cg-color-muted: #8c8c8c;
    --cg-color-soccer-black: #c40015;

    /* Typography. */
    --cg-font-main: "PT Sans", Arial, Helvetica, sans-serif;
    --cg-font-size-nav: 15px;
    --cg-font-size-eyebrow: 14px;
    --cg-font-size-body: 17px;

    /* Layout. */
    --cg-container: 1180px;
    --cg-container-terms: 980px;
    --cg-header-height: 64px;
    --cg-section-padding-y: 5rem;
    --cg-section-padding-x: 18px;
    --cg-mobile-padding-x: 16px;

    /* Shape and effects. */
    --cg-radius-sm: 8px;
    --cg-radius-pill: 999px;
    --cg-radius-brand: 22px 0 22px 0;
    --cg-shadow-soft: 0 16px 34px rgba(52, 39, 26, .18);
    --cg-shadow-red: 0 14px 28px rgba(215, 6, 25, .22);

    /* Motion. */
    --cg-transition-fast: .2s ease;
    --cg-transition-normal: .45s ease;
    --cg-transition-reveal: .7s cubic-bezier(.22, 1, .36, 1);

    /* Compatibility aliases used by existing sections. */
    --red: var(--cg-color-primary);
    --red-dark: var(--cg-color-primary-dark);
    --cream: var(--cg-color-bg);
    --orange: var(--cg-color-accent);
    --blue: var(--cg-color-info);
    --green: var(--cg-color-success);
    --ink: var(--cg-color-text);
    --muted: var(--cg-color-muted);
    --white: var(--cg-color-surface);
    --black: var(--cg-color-text);
    --shadow: var(--cg-shadow-soft);
}

* {
    box-sizing: border-box;
}

/* Base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--cg-header-height);
    background: var(--cg-color-surface);
}

body {
    margin: 0;
    color: var(--cg-color-text);
    font-family: var(--cg-font-main);
    background: var(--cg-color-surface);
}

main {
    display: block;
    min-height: 100vh;
    background: var(--cg-color-surface);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 0px;
}

/* Header / Navigation */
.cg-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(42px, 7vw, 96px);
    min-height: var(--cg-header-height);
    padding: 20px clamp(24px, 5.5vw, 74px);
    background: var(--cg-color-surface);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.067);
}

.cg-logo img {
    width: 92px;
}

.check-icon-option .input-square[type="radio"]+.wrapper-info-option, .check-icon-option .input-square[type="checkbox"]+.wrapper-info-option {
	align-items: center;
	border: 2px solid #dddfe4;
	border-radius: 4px;
	display: flex;
	height: 47px;
	padding: 0 15px;
}

.check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option, .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option {
	background-color: #dddfe4;
	border-color: #dddfe4;
}

.check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option i, .check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option p, .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option i, .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option p, .product-box .check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option i, .product-box .check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option p, .product-box .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option i, .product-box .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option p {
	color: #274690;
}

.check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option i, .check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option p, .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option i, .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option p, .product-box .check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option i, .product-box .check-icon-option .input-square[type="radio"]:checked+.wrapper-info-option p, .product-box .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option i, .product-box .check-icon-option .input-square[type="checkbox"]:checked+.wrapper-info-option p {
	color: #274690;
}

.check-icon-option .input-square[type="radio"]+.wrapper-info-option i, .check-icon-option .input-square[type="checkbox"]+.wrapper-info-option i {
	cursor: pointer;
	border: 0;
	border-radius: 0;
	color: #999;
	font-size: 25px;
	transition: 0.3s ease;
	margin: 0 8px 0 auto;
	width: auto;
}

.check-icon-option label p {
	font-size: 18px;
	color: #999;
}

.cg-menu-check,
.cg-menu-toggle {
    display: none;
}

.cg-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 4.5vw, 54px);
    color: var(--cg-color-muted);
    font-weight: 600;
}

.cg-nav a {
    font-size: var(--cg-font-size-nav);
}

.cg-nav a:hover {
    opacity: .86;
}

.cg-nav-cta {
    background: linear-gradient(135deg, #274690 0%, #1da3fd 100%);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(24, 142, 216, 0.4);
    transition: all 0.3s ease;
}

/* Hero banner */
.hero-section {
    background-image: url(/images/landing-page/2026/colgate-mx/banner.png);
    background-size: cover;
    background-position: bottom;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 655px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-section {
      min-height: 70vh;
      max-height: inherit;
    }
  }

.hero-section::before {
    display: none !important;
}

.btn-ticket-banner {
    background-color: var(--secundary-color);
    display: block;
}

@keyframes cg-scroll-arrow {
    0%,
    100% {
        opacity: .25;
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translate(4px, 4px);
    }
}

@media (max-width: 1024px) {
    .cg-scroll-cue {
        display: none;
    }
}

@media (min-width: 1440px) {
    .cg-scroll-cue {
        display: none;
    }
}

/* Participation steps */   
.number-step {
    background-color: var(--primary-color);
    color: var(--cg-color-surface);
    padding: 20px 20px;
    border-radius: 1000px;
}

.number-step-txt {
    font-weight: bolder;
    color: var(--primary-color);
}

.content h4 {
    font-weight: bolder;
    font-size: 20px;
    color: var(--secundary-color);
}

/* .bg-steps {
    background-image: url(/images/landing-page/2026/colgate-mx/bg-hojas.png);
    background-position: tp;
    background-repeat: no-repeat;
    background-size: cover;    
} */

.content-step{
    display: flex;
    align-items: center;
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.title-steps {
    font-size: 32px
}

.steps-title {
    color: var(--secundary-color);
}
       
.step-number-box {
    background-color: var(--primary-color);
    color: white;
    min-width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    position: relative;
}

.step-number-box::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-color);
}

.step-content-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0px 22px rgb(0 124 167 / 27%);
    padding: 20px;
    height: 100%;
    display: flex;
    margin-top: 0px;
    max-width: 800px;
    align-items: center;
    min-height: 200px;
    margin-left: -1rem;
}

.number-input input,
.product-description .input-group input{
    width: auto !important;
}

@media screen and (max-width:767px) {
    .content-step{
        flex-wrap: wrap;
        margin-top: .8rem;
        margin-bottom: .8rem;
    }

    .step-number-box{
        margin-left: auto;
        margin-right: auto;
    }

    .step-content-card{
        margin-left: 0;
        margin-top: -.5rem;
    }

    .step-number-box::after{
        left: 48%;
        top: 100%;
        right: inherit;
        transform: rotate(90deg) translateX(-50%);
    }
}

.step-icon {
    color: var(--secundary-color);
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plus-icon {
    color: var(--secundary-color);
    font-size: 1.2rem;
    margin-right: 8px;
}

.bg-b {
    background-color: #f0f9ff;/* 
    background-image: url(/images/landing-page/2026/colgate-mx/bg-hojas.png); */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-h {
    /* background-image: url(/images/landing-page/2026/colgate-mx/bg-hojas.png); */
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0faff;
    position: relative;
}

.balon {
	position: absolute;
    top: 4%;
	left: 142px; 
	width: 350px; 
	z-index: 0; 
	pointer-events: none;
}

.balon-2 {
    position: absolute;
    bottom: 5%;
    right: 362px;
    width: 260px;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 767.98px) {
/*     .step-number-box::after {
                display: none;
    }
    .step-number-box {
        min-width: 100%;
        height: 60px;
        margin-bottom: 10px;
    } */
}

.cg-how {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.cg-how__inner {
    max-width: 600px;
    margin: 0 auto;
}

#cg-how-title {
    text-align: center;
    color: #333333;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.personaje-fondo {
    bottom: 14%;
    left: -467px;
}

.producto-fondo {
    position: absolute;
    bottom: 24%;
    right: -467px;
    width: 350px;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.1));
}

.cg-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cg-step {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 145px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.cg-step:nth-child(odd) {
    margin-right: auto;
    padding-right: 90px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.cg-step:nth-child(odd) .cg-step__number {
    right: -40px;
    border-radius: 0 50px 50px 0;
}

.cg-step:nth-child(even) {
    margin-left: auto;
    flex-direction: row-reverse;
    padding-left: 75px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    left: 35px;
}

.cg-step:nth-child(even) .cg-step__number {
    left: -40px;
    border-radius: 50px 0 0 50px;
}

.cg-step__number {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cg-step:nth-child(1) .cg-step__number { 
    background-color: var(--secundary-color); 
}

.cg-step:nth-child(2) .cg-step__number { 
    background-color: var(--primary-color); 
}

.cg-step:nth-child(3) .cg-step__number { 
    background-color: var(--secundary-color); 
}

.cg-step__icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    flex-shrink: 0;
}

.cg-step__copy {
    flex-grow: 1;
}

.cg-step__copy h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #222222;
    font-weight: 700;
}

.cg-step__copy p {
    margin: 0;
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
}

/* Promotional banner */
.cg-promo-banner {
    width: 100%;
    aspect-ratio: 1400 / 500;
    overflow: hidden;
    background: var(--cg-color-bg);
}

.cg-promo-banner picture,
.cg-promo-banner img {
    width: 100%;
    height: 100%;
}

.cg-promo-banner picture {
    display: block;
}

.cg-promo-banner img {
    object-fit: cover;
    transform: none;
}

/* Product detail */
.slick-list {
    padding: 50px 0px 100px 0px;
}

.product-related h2 {
    color: #222;
    padding-top: 30px !important;
    padding-bottom: 0px;
    border-bottom: 0px solid #dddada;
    margin-bottom: 20px;
    width: 100%;
}

.cg-product {
    position: relative;
    padding: var(--cg-section-padding-y) 80px;
    background: var(--cg-color-surface);
    overflow: hidden;
}

.cg-product__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
    width: min(var(--cg-container), 100%);
    margin: 0 auto;
}

.cg-product__deco {
    position: absolute;
    z-index: 0;
    width: clamp(54px, 8vw, 118px);
    height: auto;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 16px 22px rgba(5, 136, 216, .16));
    transform: translateY(28px) scale(.86) rotate(var(--cg-deco-rotate, 0deg));
    transform-origin: center;
}

.cg-product__deco.is-visible {
    opacity: .92;
    transform: translateY(0) scale(1) rotate(var(--cg-deco-rotate, 0deg));
    transition: opacity .7s ease, transform var(--cg-transition-reveal);
}

.cg-product__deco--leaf-1 {
    --cg-deco-rotate: 14deg;
    top: 6%;
    left: clamp(10px, 2vw, 32px);
}

.cg-product__deco--leaf-2 {
    --cg-deco-rotate: -59deg;
    right: clamp(10px, 2vw, 32px);
    bottom: 9%;
    width: clamp(48px, 7vw, 96px);
}

.cg-product__deco--leaf-3 {
    --cg-deco-rotate: 3deg;
    top: 48%;
    left: clamp(-10px, 1vw, 18px);
    width: clamp(42px, 5.8vw, 78px);
    opacity: 0;
}

.cg-product__deco--leaf-4 {
    --cg-deco-rotate: 10deg;
    top: 18%;
    right: clamp(-8px, 1.2vw, 20px);
    width: clamp(40px, 5.5vw, 74px);
    opacity: 0;
}

.cg-product__deco--crystal-1 {
    --cg-deco-rotate: 192deg;
    right: clamp(26px, 6vw, 104px);
    top: 4%;
    width: clamp(42px, 6vw, 84px);
}

.cg-product__deco--crystal-2 {
    --cg-deco-rotate: -12deg;
    left: clamp(26px, 6vw, 104px);
    bottom: 7%;
    width: clamp(44px, 6.5vw, 92px);
}

.cg-product__deco--crystal-3 {
    --cg-deco-rotate: -28deg;
    left: clamp(8px, 3vw, 54px);
    top: 20%;
    width: clamp(34px, 4.6vw, 62px);
}

.cg-product__deco--crystal-4 {
    --cg-deco-rotate: 36deg;
    right: clamp(18px, 4vw, 72px);
    bottom: 42%;
    width: clamp(36px, 5vw, 68px);
}

.cg-product__gallery {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.cg-product__image-stage {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: clamp(24px, 5vw, 54px);
    background: var(--cg-color-surface);
    border-radius: var(--cg-radius-sm);
    overflow: hidden;
    cursor: zoom-in;
}

.cg-product__image-stage img {
    width: min(420px, 100%);
    max-height: 100%;
    object-fit: contain;
    transform-origin: center;
    transition: opacity .22s ease, transform .22s ease;
}

.cg-product__image-stage:hover img {
    transform: scale(1.8);
}

.cg-product__image-stage img.is-changing {
    opacity: 0;
    transform: scale(.97);
}

.cg-product__thumbs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cg-product__thumb {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 9px;
    background: var(--cg-color-surface);
    border: 2px solid rgba(215, 6, 25, .18);
    border-radius: var(--cg-radius-sm);
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.cg-product__thumb:hover,
.cg-product__thumb.is-active {
    border-color: var(--cg-color-primary);
    box-shadow: 0 10px 24px rgba(215, 6, 25, .14);
    transform: translateY(-2px);
}

.cg-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.cg-product__details {
    min-width: 0;
}

.cg-product__brand {
    margin: 0 0 8px;
    color: var(--cg-color-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .12em;
}

.cg-product__details h2 {
    margin: 0;
    color: var(--cg-color-text);
    font-size: 2rem;
    line-height: 1.04;
}

.cg-product__price {
    margin-top: 18px;
    color: var(--cg-color-text);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
}

.cg-product__validity {
    margin: 16px 0 0;
    color: var(--cg-color-muted);
    font-size: 12px;
    font-weight: 400;
}

.cg-product__description {
    margin: 20px 0 24px;
    color: var(--cg-color-text);
    font-size: 17px;
    line-height: 1.5;
}

.cg-product__quantity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 8px;
}

.cg-product__quantity>span {
    color: var(--cg-color-text);
    font-size: 15px;
    font-weight: 900;
}

.cg-quantity {
    display: inline-grid;
    grid-template-columns: 42px 58px 42px;
    align-items: center;
    min-height: 42px;
    background: var(--cg-color-surface);
    border: 1px solid rgba(215, 6, 25, .22);
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
}

.cg-quantity__button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--cg-color-primary);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.cg-quantity__button:hover {
    color: var(--cg-color-surface);
    background: var(--cg-color-primary);
}

.cg-quantity__value {
    color: var(--cg-color-text);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.cg-product__info {
    display: grid;
    gap: 10px;
}

.cg-product__info details {
    border: 1px solid rgba(31, 31, 31, .14);
    border-radius: var(--cg-radius-sm);
    background: #fff;
}

.cg-product__info summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 50px;
    padding: 0 16px;
    color: var(--cg-color-text);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.cg-product__info summary::-webkit-details-marker {
    display: none;
}

.cg-product__info summary::after {
    content: "+";
    color: var(--cg-color-primary);
    font-size: 24px;
    line-height: 1;
}

.cg-product__info details[open] summary::after {
    content: "-";
}

.cg-product__info details p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--cg-color-muted);
    line-height: 1.45;
}

.icons {
    padding-left: 10px;
}

.cg-product__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 26px;
    padding: 0 30px;
    color: var(--cg-color-surface);
    font-weight: 900;
    text-align: center;
    background: var(--cg-color-primary);
    border-radius: 0 0px 22px 22px;
    box-shadow: var(--cg-shadow-red);
    transition: transform var(--cg-transition-fast), background var(--cg-transition-fast);
}

.cg-product__button:hover {
    background: var(--cg-color-primary-dark);
    transform: translateY(-2px);
}

/* Floating cart */
.cg-floating-cart {
    position: fixed;
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 40;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding: 0;
    color: var(--cg-color-surface);
    background: var(--cg-color-primary);
    border: 3px solid var(--cg-color-surface);
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(215, 6, 25, .28);
    cursor: pointer;
    isolation: isolate;
    transition: transform var(--cg-transition-fast), background var(--cg-transition-fast);
}

.cg-floating-cart:hover {
    background: var(--cg-color-primary-dark);
    transform: translateY(-3px);
}

.cg-floating-cart.is-bumping {
    animation: cg-cart-bump .42s ease;
}

.cg-floating-cart__glow {
    position: absolute;
    inset: -12px;
    z-index: -1;
    background: radial-gradient(circle, rgba(215, 6, 25, .18), rgba(215, 6, 25, 0) 68%);
    border-radius: inherit;
    animation: cg-cart-glow 2.4s ease-in-out infinite;
}

.cg-floating-cart__icon {
    font-size: 34px;
    line-height: 1;
}

.cg-floating-cart__count {
    position: absolute;
    top: -7px;
    right: -6px;
    display: grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    color: var(--cg-color-surface);
    font-size: 16px;
    font-weight: 900;
    background: #087c55;
    border: 3px solid var(--cg-color-surface);
    border-radius: var(--cg-radius-pill);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

@keyframes cg-cart-bump {
    0%,
    100% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.09) rotate(-5deg);
    }
}

@keyframes cg-cart-glow {
    0%,
    100% {
        opacity: .55;
        transform: scale(.94);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Gallery / Footer */
.cg-ending {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--cg-color-bg);
    overflow: visible;
}

.cg-gallery {
    padding: var(--cg-section-padding-y) 0;
    background-color: var(--cg-color-surface);
}

.cg-gallery__inner {
    width: min(var(--cg-container), 100%);
    margin: 0 auto;
}

.cg-gallery__heading {
    margin-bottom: 34px;
    text-align: center;
}

.cg-gallery__heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--cg-color-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cg-gallery__heading h2 {
    margin: 0;
    color: var(--cg-color-text);
    font-size: 2.5rem;
    line-height: 1;
}

.cg-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.cg-gallery__item {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cg-color-surface);
    border-radius: var(--cg-radius-sm);
    box-shadow: var(--cg-shadow-soft);
}

.cg-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--cg-transition-normal), filter var(--cg-transition-normal);
}

.cg-gallery__item figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    width: fit-content;
    max-width: calc(100% - 28px);
    padding: 0 14px;
    color: var(--cg-color-surface);
    font-weight: 900;
    background: var(--cg-color-primary);
    border-radius: 18px 0 18px 0;
    transform: translateY(12px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.cg-gallery__item:hover img {
    filter: saturate(1.08);
    transform: scale(1.08);
}

.cg-gallery__item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

/* Terms page */
.cg-terms-page {
    min-height: 100vh;
    color: var(--cg-color-text);
    background:
        linear-gradient(135deg, rgba(215, 6, 25, .08), rgba(255, 181, 61, .12)),
        var(--cg-color-bg);
}

.cg-terms-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 40px);
    flex-wrap: wrap;
    min-height: 104px;
    padding: 18px 24px;
    background: var(--cg-color-primary);
    box-shadow: 0 12px 28px rgba(120, 0, 14, .18);
}

.cg-terms-header__logo {
    display: inline-flex;
    align-items: center;
}

.cg-terms-header__logo img {
    width: 142px;
}

.cg-terms-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    color: var(--cg-color-primary);
    font-weight: 900;
    text-align: center;
    background: var(--cg-color-surface);
    border-radius: var(--cg-radius-brand);
    box-shadow: 0 10px 24px rgba(120, 0, 14, .16);
}

.cg-terms-main {
    padding: clamp(38px, 7vw, 78px) 18px clamp(54px, 8vw, 96px);
}

.cg-terms-card {
    width: min(var(--cg-container-terms), 100%);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 38px);
    background: var(--cg-color-surface);
    border: 2px solid rgba(215, 6, 25, .12);
    border-radius: var(--cg-radius-sm);
    box-shadow: var(--cg-shadow-soft);
}

.cg-terms-hero {
    width: min(var(--cg-container-terms), 100%);
    margin: 0 auto 22px;
    padding: clamp(24px, 4vw, 38px);
    color: var(--cg-color-surface);
    text-align: center;
    background: var(--cg-color-primary);
    border-radius: var(--cg-radius-sm);
    box-shadow: var(--cg-shadow-soft);
}

.cg-terms-eyebrow {
    margin: 0 0 10px;
    color: currentColor;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .85;
}

.cg-terms-hero h1 {
    margin: 0;
    color: var(--cg-color-surface);
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1;
}

.cg-terms-hero p:last-child {
    width: min(720px, 100%);
    margin: 18px auto 0;
    color: var(--cg-color-surface);
    font-size: 18px;
    line-height: 1.55;
    opacity: .92;
}

.cg-terms-index {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 22px 0 0;
    padding: 22px 0;
    border-bottom: 1px solid rgba(31, 31, 31, .12);
}

.cg-terms-index a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    color: var(--cg-color-primary);
    font-size: 14px;
    font-weight: 900;
    background: #fff3f4;
    border: 1px solid rgba(215, 6, 25, .16);
    border-radius: var(--cg-radius-pill);
}

.cg-terms-block {
    position: relative;
    padding: 24px 0 24px 74px;
    border-bottom: 1px solid rgba(31, 31, 31, .12);
    scroll-margin-top: 24px;
}

.cg-terms-block:last-child {
    border-bottom: 0;
}

.cg-terms-block>span {
    position: absolute;
    top: 22px;
    left: 0;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--cg-color-surface);
    font-weight: 900;
    background: var(--cg-color-primary);
    border-radius: 50%;
}

.cg-terms-card h2 {
    margin: 0 0 10px;
    color: var(--cg-color-primary-dark);
    font-size: 22px;
    line-height: 1.2;
}

.cg-terms-card p {
    margin: 0;
    color: var(--cg-color-text);
    line-height: 1.6;
}

.cg-scroll-top {
    position: fixed;
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 40;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    color: var(--cg-color-surface);
    background: var(--cg-color-primary);
    border: 2px solid var(--cg-color-surface);
    border-radius: 50%;
    box-shadow: var(--cg-shadow-red);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--cg-transition-fast), transform var(--cg-transition-fast), visibility var(--cg-transition-fast), background var(--cg-transition-fast);
}

.cg-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cg-scroll-top:hover {
    background: var(--cg-color-primary-dark);
    transform: translateY(-3px);
}

.cg-scroll-top span {
    display: block;
    width: 14px;
    height: 14px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
    transform: translateY(4px) rotate(45deg);
}

/* PREMIO */
.cg-prize {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.bg-premio {
    background-image: url(/images/landing-page/2026/colgate-mx/banner.png);
    background-size: cover;
    background-position: bottom;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 555px;
    display: flex;
    align-items: center;
}

.bg-premio::before {
    display: none;
}

.cg-prize__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 40px;
}

.cg-prize__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cg-prize__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff00;
    border-radius: 30px;
    z-index: 20;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.cg-prize__img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.15));
}

.cg-prize__content {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    z-index: 20;
    position: relative;
}

.cg-prize__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin:0 0 20px 0;
}

#cg-prize-title, .cg-prize__title h2 {
    color: var(--primary-color) !important;
}

.cg-prize__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cg-prize__reminder {
    display: flex;
    align-items: flex-start;
    background-color: #f0f9ff;
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 15px 15px 0;
    margin-bottom: 20px;
}

.cg-prize__reminder strong, p {
    font-size: 16px;
}

.cg-prize__terms {
    margin-top: 20px;
}

.cg-prize__reminder-icon {
    color: #41719c;
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 2px;
}

.cg-prize__reminder p {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.cg-prize__button {
    display: inline-block;
    background-color: var(--secundary-color);
    color: var(--cg-color-surface);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(91, 155, 213, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cg-prize__button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(65, 113, 156, 0.4);
}

.pro-logo {
    margin-left: 1rem;
}

@media (max-width: 1200px) {
    .balon {
        position: absolute;
        top: 4%;
        left: -80px; 
        width: 280px; 
        z-index: 0; 
        pointer-events: none;
    }

    .balon-2 {
        position: absolute;
        bottom: 5%;
        right: -50px;
        width: 260px;
        z-index: 0;
        pointer-events: none;
    }
}

@media (max-width: 1000px) {
    .product-info {
        text-align: center;
    }

    .form-row {
        justify-content: center;
    }
}

.title-banner{
    width: 100%;
    max-width: 100%;
}

@media screen and (min-width: 991px){
    .slider-right-nav.slick-initialized.slick-slider.slick-vertical::after{
        display: none;
    }
}

@media screen and (max-width:991px) {
    .title-banner{
        width: 100%;
        max-width: 360px;
    }

    .slick-list{
        padding: 0px 0px 50px 0px;
    }

    .hero-content{
        /* padding-bottom: 1.5rem; */
    }

    .cg-prize__description{
        font-size: 12px;
    }

    .cg-prize__reminder p,
    .cg-prize__reminder p strong{
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .cg-header {
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px;
    }

    .cg-nav {
        margin-left: auto;
        gap: 18px;
    }

    .cg-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cg-step {
        min-height: auto;
        grid-template-columns: 76px 1fr;
        justify-items: start;
        align-items: center;
        text-align: left;
    }

    .cg-step__icon {
        grid-column: 1;
    }

    .cg-step__copy {
        grid-column: 2;
    }

    .cg-product__inner {
        grid-template-columns: 1fr;
    }

    .cg-product__gallery {
        grid-template-columns: 1fr;
    }

    .cg-product__image-stage {
        order: 1;
    }

    .cg-product__thumbs {
        order: 2;
        grid-template-columns: repeat(3, 74px);
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .cg-product__details {
        max-width: 680px;
    }

    .cg-product__deco,
    .cg-product__deco--leaf-1,
    .cg-product__deco--leaf-2,
    .cg-product__deco--leaf-3,
    .cg-product__deco--leaf-4,
    .cg-product__deco--crystal-1,
    .cg-product__deco--crystal-2,
    .cg-product__deco--crystal-3,
    .cg-product__deco--crystal-4 {
        display: none;
    }

    .cg-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .desarrollado-f {
        justify-content: center;
    }

    .derechos {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 810px) {
    .cg-header {
        min-height: auto;
        padding: 10px 16px;
    }

    .cg-menu-toggle {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: auto;
        padding: 0;
        color: var(--cg-color-surface);
        background-color: var(--cg-color-primary);
        border: 2px solid rgba(255, 255, 255, .78);
        border-radius: var(--cg-radius-sm);
        cursor: pointer;
    }

    .cg-menu-toggle span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform .2s ease, opacity .2s ease;
    }

    .cg-menu-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }

    .cg-menu-toggle span:nth-child(3) {
        transform: translateY(7px);
    }

    .cg-menu-check:checked + .cg-menu-toggle span:nth-child(1) {
        transform: rotate(45deg);
    }

    .cg-menu-check:checked + .cg-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .cg-menu-check:checked + .cg-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .cg-nav {
        width: 100%;
        max-height: 0;
        margin-left: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        transition: max-height .24s ease;
    }

    .cg-menu-check:checked ~ .cg-nav {
        max-height: 220px;
    }

    .cg-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        font-size: 14px;
        text-align: center;
        border-radius: var(--cg-radius-sm);
        background: rgba(255, 255, 255, .12);
    }

    .cg-nav-cta {
        min-width: 0;
        width: 100%;
        padding: 12px 18px;
        border-radius: 18px 0 18px 0;
        background: var(--cg-color-surface) !important;
    }

    .cg-banner {
        height: auto;
        min-height: 0;
        aspect-ratio: 1080 / 700;
    }

    .cg-promo-banner {
        aspect-ratio: 1080 / 700;
    }

    .cg-how {
        padding: 44px 16px;
    }

    .cg-how h2 {
        margin-bottom: 28px;
    }

    .cg-step {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 30px 18px 24px;
        text-align: center;
    }

    .cg-step__icon,
    .cg-step__copy {
        grid-column: auto;
    }

    .cg-step__copy h3 {
        font-size: 20px;
    }

    .cg-product {
        padding: 46px 16px;
    }

    .cg-product__image-stage {
        padding: 22px;
    }

    .cg-product__thumbs {
        grid-template-columns: repeat(3, 64px);
        gap: 8px;
    }

    .cg-product__details h2 {
        font-size: 30px;
    }

    .cg-product__button {
        width: 100%;
    }

    .cg-gallery {
        padding: 46px 16px;
    }

    .cg-gallery__heading {
        margin-bottom: 26px;
    }

    .cg-gallery__grid {
        grid-template-columns: 1fr;
    }

    .cg-gallery__item figcaption {
        opacity: 1;
        transform: none;
    }

    .cg-terms-header {
        gap: 16px;
        padding: 16px;
    }

    .cg-terms-header__logo img {
        width: 124px;
    }

    .cg-terms-header__button {
        width: min(100%, 260px);
    }

    .cg-terms-main {
        padding: 32px 16px;
    }

    .cg-terms-hero,
    .cg-terms-card {
        padding: 24px 18px;
    }

    .cg-terms-index {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 16px;
    }

    .cg-terms-index a {
        flex: 0 0 auto;
    }

    .cg-terms-block {
        padding: 72px 16px 22px;
    }

    .cg-terms-block>span {
        top: 18px;
    }
}

@media (max-width: 768px) {
    .cg-step {
        width: 90%;
    }

    .cg-step:nth-child(even) {
        left: -22px;
    }

    .cg-prize {
        padding: 50px 0px;
    }
    
    .cg-prize__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cg-prize__image-wrapper {
        padding: 20px;
    }
    
    .cg-prize__title {
        font-size: 1.8rem;
    }
    
    .cg-prize__button {
        display: block;
        text-align: center;
        padding: 15px 20px;
    }

    .slick-list {
        padding: 0px 0px 50px 0px;
        
    }

    .cg-prize {
        text-align: center;
    }

    .cg-prize__content {
        padding: 40px 60px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 24px;
    }
    
    .cg-step {
        width: 100% !important;
        margin: 0 0 20px 0 !important;
        border-radius: 25px !important;
        padding: 20px !important;
        flex-direction: column !important;
        text-align: center;
    }
    
    .cg-step__number {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    
    .cg-step__icon {
        margin-bottom: 10px;
    }

    .cg-step:nth-child(even) {
        left: 0px;
    }

/*     .slick-list {
        padding: 20px 0px 0px 0px;
    } */

    .desarrollado-f {
        flex-direction: column;
        align-items: center !important;
        margin-top: 10px !important;
    }

    .pro-logo {
        margin: 0px;
    }

    footer {
        margin-bottom: 0px;
    }

    .cg-prize__content {
        padding: 20px 30px;
    }

    .balon {
        position: absolute;
        top: 4%;
        left: -80px; 
        width: 180px; 
        z-index: 0; 
        pointer-events: none;
    }

    .balon-2 {
        position: absolute;
        bottom: 20%;
        right: -50px;
        width: 180px;
        z-index: 0;
        pointer-events: none;
    }
}

.slick-list.draggable{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media screen and (max-width:991px) and (min-width: 768px) {
    /* .slick-vertical .slick-slide div{
        width: 100%;
        margin: 0;
    } */
}

.color-bg, .product-related {
    background-color: transparent !important;
}

.notie-textbox-inner {
    color: var(--primary-color) !important;
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-right-slick {
      margin: 0 auto;
      width: 100%;
      max-width: 620px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
/*     .slider-right-nav .slick-slide > div {
      margin: 0 auto;
      margin-top: 0px;
    } */
}

@media screen and (max-width:991px) {
    /* .slider-right-nav .slick-slide{
        max-width: 100px;
    }
    .slider-right-nav .slick-slide > div,
    .slider-right-nav .slick-slide > div img{
        max-width: 80px;
    } */

    .cg-prize__grid{
        grid-template-columns: 1fr;
    }

    .cg-prize__img{
        max-width: 420px;
    }
}

.custom-control-input:checked ~ .custom-control-label::before{
    display: none;
}

@media (min-width: 992px) {
    .wrapper-input-icon {
        margin: inherit;
    }
}

.info-promo{
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 992px) {
    .wrapper-input-icon {
        margin: inherit;
    }
  }

  @media (min-width: 992px) {
    .wrapper-input-icon {
      margin: inherit;
    }
  }

  .theme-modal.newsletter-popup .modal-dialog .modal-content .modal-body .modal-bg .close {
    right: 24px !important;
    top: -3px !important;
  }

  .pasos{
    background-color: #112e1f;
    color: #fff;
    padding: 18px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .pasos p{
    font-family: 'ProximaSoft-Regular' !important;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #fff;
  }

  .pasos b{
    font-family: 'ProximaSoft-Bold';
  }

  .pasos b.b-mark{
    background-color: #006e00;
    border-radius: 8px;
    font-family: 'ProximaSoft-Bold';
    padding: 2px 4px;
  }

  .vigencia{
    margin-bottom: 12px;
    padding: 6px 26px;
    background-color: #006e00;
    border-radius: 40px;
    line-height: 1;
  }

  .vigencia p{
    color: #fff;
    margin-bottom: 0;
/*     -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #112e1f; */
    font-family: 'ProximaSoft-Regular' !important;
    font-size: 12px;
  }

  @media (max-width: 768px) {
    .pasos {
    /*   display: block; */
    }

    .pasos p{
        font-size: 12px;
        margin-bottom: 6px;
    }
  }