/** Shopify CDN: Minification failed

Line 620:0 Unexpected "}"

**/
.product-hero {
    padding: var(--section-padding-top, 6rem) 0 var(--section-padding-bottom, 6rem);
    background: linear-gradient(135deg, #FFFEF7 0%, #FFFCF0 15%, #FFF9E6 35%, #FFF6DC 55%, #FFF2D0 75%, #FFFCF0 100%);
    min-height: 30vh;
    display: flex;
    align-items: center;
    position: relative;
    transition: padding 0.3s ease, min-height 0.3s ease;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255, 246, 220, 0.5) 0%, rgba(255, 252, 240, 0.3) 25%, rgba(255, 249, 235, 0.4) 50%, rgba(255, 244, 210, 0.3) 75%, rgba(255, 254, 247, 0.5) 100%),
        radial-gradient(circle at 20% 80%, rgba(255, 250, 230, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 248, 225, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.product-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(255, 252, 240, 0.6) 0%, rgba(255, 246, 220, 0.4) 20%, rgba(255, 240, 200, 0.3) 40%, rgba(255, 235, 190, 0.2) 60%, rgba(255, 230, 180, 0.1) 80%, transparent 100%);
    filter: blur(40px);
    -webkit-filter: blur(40px);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-10px, -15px) scale(1.05);
    }
    50% {
        transform: translate(15px, -10px) scale(0.95);
    }
    75% {
        transform: translate(-5px, 15px) scale(1.02);
    }
}

.product-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: padding 0.3s ease;
    position: relative;
    z-index: 2;
}

.product-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    text-align: left;
    transition: gap 0.3s ease, grid-template-columns 0.3s ease;
    position: relative;
}

.product-hero__content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: 0.4;
}

.product-hero__header {
    width: 100%;
    transition: text-align 0.3s ease;
}



.product-hero__text-content {
    text-align: left;
    transition: text-align 0.3s ease;
}

.product-hero__title {
    font-size: clamp(3.2rem, 6vw, 6.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #2D3748;
    margin: 0 0 2.4rem 0;
    letter-spacing: -0.02em;
    text-align: left;
    display: block;
    width: 100%;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    text-wrap: balance;
    transition: font-size 0.3s ease, margin-bottom 0.3s ease, text-align 0.3s ease, line-height 0.3s ease;
    position: relative;
    z-index: 2;
}



/* Ajustes de espaciado cuando no hay CTA ni descripción */
.product-hero__title.no-bottom-margin {
    margin-bottom: 0;
}

.product-hero__title.compact-margin {
    margin-bottom: 1.2rem;
}

.product-hero__title .highlight {
    color: #001f41;
    background: linear-gradient(135deg, #001f41 0%, #003366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 31, 65, 0.3);
}

.product-hero__description {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 2.4rem;
    max-width: 90%;
    position: relative;
    z-index: 2;
}



.product-hero__cta {
    display: none;
    margin-top: 3rem;
    transition: margin-top 0.3s ease, text-align 0.3s ease;
}

.product-hero__cta-button {
    background: linear-gradient(135deg, #001f41 0%, #003366 100%);
    color: white;
    border: none;
    padding: 1.6rem 3.2rem;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 31, 65, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}



.product-hero__cta-button:hover::before {
    left: 100%;
}

.product-hero__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 31, 65, 0.4);
    background: linear-gradient(135deg, #003366 0%, #001f41 100%);
}

.product-hero__cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 31, 65, 0.3);
}

.product-hero__cta-button:focus {
    outline: 3px solid rgba(0, 31, 65, 0.3);
    outline-offset: 2px;
}

.product-hero__cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 31, 65, 0.2);
}

.product-hero__cta-button:disabled:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 31, 65, 0.2);
    background: linear-gradient(135deg, #001f41 0%, #003366 100%);
}

.product-hero__cta-button:disabled:hover::before {
    left: -100%;
}

.product-hero__cta-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.product-hero__cta-button:hover .product-hero__cta-icon {
    transform: translateX(4px);
}

.product-hero__media {
    width: 100%;
    position: relative;
}

.product-hero__image {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 31, 65, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-hero__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 2rem;
    z-index: 1;
    pointer-events: none;
}

.product-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.product-hero__image:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .product-hero__container {
        max-width: 1000px;
        padding: 0 2rem;
    }
    
    .product-hero__content {
        gap: 5rem;
    }
    
    .product-hero__title {
        font-size: clamp(3rem, 6vw, 5.5rem);
    }
}

@media screen and (max-width: 990px) {
    .product-hero {
        padding: 5rem 0;
        min-height: 80vh;
    }

    .product-hero__container {
        padding: 0 2rem;
    }

    .product-hero__content {
        gap: 4rem;
    }

    .product-hero__title {
        font-size: clamp(2.8rem, 7vw, 4.8rem);
        margin-bottom: 2.4rem;
        line-height: 1.15;
    }

    .product-hero__description {
        font-size: 1.7rem;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .product-hero__cta {
        margin-top: 3.5rem;
    }
    
    .product-hero__cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 768px) {
    .product-hero {
        padding: 3rem 0;
        min-height: 50vh;
    }
    
    /* Ajustar altura mínima cuando no hay CTA ni descripción */
    .product-hero.compact-height {
        min-height: 40vh;
    }

    .product-hero__container {
        padding: 0 1.5rem;
    }

    .product-hero__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .product-hero__header {
        text-align: center;
        order: 1;
    }

    .product-hero__media {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        margin-top: -6rem;
    }

    .product-hero__text-content {
        text-align: center;
    }

    .product-hero__title {
        font-size: clamp(2.6rem, 8vw, 4.2rem);
        margin-bottom: 1.8rem;
        line-height: 1.2;
        text-align: center;
    }
    
    /* Ajustes de espaciado compacto para mobile */
    .product-hero__title.compact-margin {
        margin-bottom: 1.2rem;
    }
    
    .product-hero__title.no-bottom-margin {
        margin-bottom: 0;
    }

    .product-hero__description {
        font-size: 1.6rem;
        max-width: 100%;
        line-height: 1.6;
        margin: 0 auto 1.5rem auto;
    }
    
    .product-hero__cta {
        margin-top: 2rem;
        text-align: center;
    }
    
    .product-hero__cta-button {
        padding: 1.4rem 2.8rem;
        font-size: 1.6rem;
        width: auto;
        min-width: 200px;
        justify-content: center;
    }

    .product-hero__image {
        border-radius: 1.8rem;
    }
}

@media screen and (max-width: 640px) {
    .product-hero {
        padding: 2.5rem 0;
        min-height: 45vh;
    }
    
    /* Ajustar altura mínima cuando no hay CTA ni descripción */
    .product-hero.compact-height {
        min-height: 35vh;
    }

    .product-hero__container {
        padding: 0 1.2rem;
    }

    .product-hero__content {
        gap: 2rem;
    }

    .product-hero__title {
        font-size: clamp(2.4rem, 9vw, 3.8rem);
        margin-bottom: 1.5rem;
        line-height: 1.25;
    }
    
    /* Ajustes de espaciado compacto para mobile pequeño */
    .product-hero__title.compact-margin {
        margin-bottom: 1rem;
    }
    
    .product-hero__title.no-bottom-margin {
        margin-bottom: 0;
    }

    .product-hero__description {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .product-hero__cta {
        margin-top: 1.5rem;
    }
    
    .product-hero__cta-button {
        padding: 1.2rem 2.4rem;
        font-size: 1.5rem;
        min-width: 180px;
    }
}



@media screen and (max-width: 480px) {
    .product-hero {
        padding: 3rem 0;
        min-height: 65vh;
    }

    .product-hero__container {
        padding: 0 1rem;
    }

    .product-hero__content {
        gap: 2.5rem;
    }

    .product-hero__stars {
        margin-bottom: 1.8rem;
    }

    .star {
        width: 16px;
        height: 16px;
        gap: 0.3rem;
    }

    .product-hero__title {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        margin-bottom: 1.8rem;
        line-height: 1.3;
    }

    .product-hero__description {
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 0 auto 1.5rem auto;
    }
    
    .product-hero__cta {
        margin-top: 2rem;
    }
    
    .product-hero__cta-button {
        padding: 1.2rem 2.4rem;
        font-size: 1.4rem;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .product-hero__image {
        border-radius: 1.4rem;
    }
}

@media screen and (max-width: 375px) {
    .product-hero {
        padding: 2.5rem 0;
        min-height: 60vh;
    }

    .product-hero__container {
        padding: 0 0.8rem;
    }

    .product-hero__content {
        gap: 2rem;
    }

    .product-hero__stars {
        margin-bottom: 1.5rem;
    }

    .star {
        width: 15px;
        height: 15px;
        gap: 0.25rem;
    }

    .product-hero__title {
        font-size: clamp(2rem, 11vw, 2.8rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .product-hero__description {
        font-size: 1.3rem;
        line-height: 1.4;
        margin: 0 auto 1.2rem auto;
    }
    
    .product-hero__cta {
        margin-top: 1.8rem;
    }
    
    .product-hero__cta-button {
        padding: 1.1rem 2.2rem;
        font-size: 1.3rem;
        max-width: 240px;
    }

    .product-hero__image {
        border-radius: 1.2rem;
    }
}

/* Color scheme variations */
.color-scheme-2 {
    background: linear-gradient(135deg, #FFFEF9 0%, #FFFCF5 50%, #FFF8F0 100%);
}

.color-scheme-2::before {
    background: linear-gradient(45deg, rgba(255, 248, 240, 0.2) 0%, rgba(255, 252, 245, 0.1) 50%, rgba(255, 254, 249, 0.2) 100%);
}

.color-scheme-3 {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF7 50%, #FFFCF0 100%);
}

.color-scheme-3::before {
    background: linear-gradient(45deg, rgba(255, 252, 240, 0.1) 0%, rgba(255, 254, 247, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.color-scheme-4 {
    background: linear-gradient(135deg, #FFFFFE 0%, #FFFEF9 25%, #FFFCF5 75%, #FFF9F0 100%);
}

.color-scheme-4::before {
    background: linear-gradient(45deg, rgba(255, 249, 240, 0.15) 0%, rgba(255, 252, 245, 0.1) 50%, rgba(255, 255, 254, 0.15) 100%);
}

/* Animation for smooth entrance */
.product-hero__header {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.product-hero__media {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient text effect for better visual hierarchy */
/* .product-hero__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80%;
    height: 4px;
    margin-left: 10%;
    background: linear-gradient(135deg, #001f41 0%, #003366 100%);
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
    box-shadow: 0 2px 4px rgba(0, 31, 65, 0.3);
    display: none; /* Oculto por defecto */
} */

/* Solo mostrar en dispositivos móviles */
@media screen and (max-width: 768px) {
    .product-hero__title::after {
        display: block;
    }
}

.product-hero__title {
    position: relative;
    padding-bottom: 1rem;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .product-hero__image img {
        transition: none;
    }

    .product-hero__image:hover img {
        transform: none;
    }

    .product-hero__header,
    .product-hero__media {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .product-hero__title::after {
        animation: none;
        opacity: 1;
    }
}

/* Enhanced focus states for accessibility */
.star:focus {
    outline: 2px solid #001f41;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .product-hero__cta-button {
        min-height: 44px; /* Minimum touch target size */
    }
    
    .product-hero__cta-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    

}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .product-hero {
        padding: 2rem 0;
        min-height: 100vh;
    }
    
    .product-hero__content {
        gap: 2rem;
    }
    
    .product-hero__title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .product-hero__description {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .product-hero__cta {
        margin-top: 1.5rem;
    }
    
    .product-hero__cta-button {
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-hero__cta-button {
        border-width: 1px;
    }
    
    .product-hero__title::after {
        height: 3px;
    }
}

/* Loading spinner para el botón CTA */
.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Botón flotante para mobile */
.product-hero__floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid rgba(0, 31, 65, 0.15);
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    box-shadow: 0 -4px 20px rgba(0, 31, 65, 0.1);
}

.product-hero__floating-button {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #001f41 0%, #003366 100%);
    color: white;
    border: none;
    padding: 1.6rem 2rem;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 31, 65, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}



.product-hero__floating-button:hover::before {
    left: 100%;
}

.product-hero__floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 31, 65, 0.4);
    background: linear-gradient(135deg, #003366 0%, #001f41 100%);
}

.product-hero__floating-button:active {
    transform: translateY(0);
}

.product-hero__floating-button:focus {
    outline: 3px solid rgba(0, 31, 65, 0.3);
    outline-offset: 2px;
}

.product-hero__floating-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 31, 65, 0.2);
}

.product-hero__floating-button:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 31, 65, 0.2);
    background: linear-gradient(135deg, #001f41 0%, #003366 100%);
}

.product-hero__floating-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.product-hero__floating-button:hover .product-hero__floating-icon {
    transform: translateX(3px);
}

/* Responsive del botón flotante */
@media screen and (max-width: 768px) {
    .product-hero__floating-cta {
        padding: 1.2rem;
    }
    
    .product-hero__floating-button {
        padding: 1.4rem 2rem;
        font-size: 1.6rem;
        max-width: 350px;
    }
}

@media screen and (max-width: 640px) {
    .product-hero__floating-cta {
        padding: 1rem;
    }
    
    .product-hero__floating-button {
        padding: 1.2rem 1.8rem;
        font-size: 1.5rem;
        max-width: 320px;
    }
}

@media screen and (max-width: 480px) {
    .product-hero__floating-button {
        padding: 1rem 1.6rem;
        font-size: 1.4rem;
        max-width: 300px;
    }
}

/* Ocultar botón flotante en desktop */
@media screen and (min-width: 769px) {
    .product-hero__floating-cta {
        display: none;
    }
}

/* Estilos del gráfico animado */
.product-hero__chart {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.chart-container {
    background: transparent;
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 2rem;
    z-index: 1;
    pointer-events: none;
}

.chart-wrapper {
    position: relative;
    height: 200px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(0, 31, 65, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 31, 65, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    filter: blur(0.3px);
    opacity: 0.8;
}

.grid-line {
    position: absolute;
    background: rgba(0, 31, 65, 0.06);
    opacity: 0;
    animation: fadeInGrid 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.grid-line.horizontal {
    height: 1px;
    left: 0;
    right: 0;
    top: calc(var(--line-index) * 40px);
    animation-delay: calc(var(--line-index) * 0.2s);
}

.grid-line.vertical {
    width: 1px;
    top: 0;
    bottom: 0;
    left: calc(var(--line-index) * 60px);
    animation-delay: calc(var(--line-index) * 0.2s);
}

.chart-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.chart-path {
    fill: none;
    stroke: #001f41;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease 1s forwards;
}

/* Líneas incrementales del gráfico */
.chart-path-segment {
    fill: none;
    stroke: #001f41;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 2px 4px rgba(0, 31, 65, 0.2));
}

.chart-path-segment:nth-child(1) { animation: drawSegment 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards; }
.chart-path-segment:nth-child(2) { animation: drawSegment 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards; }
.chart-path-segment:nth-child(3) { animation: drawSegment 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.4s forwards; }
.chart-path-segment:nth-child(4) { animation: drawSegment 1.2s cubic-bezier(0.4, 0, 0.2, 1) 3s forwards; }
.chart-path-segment:nth-child(5) { animation: drawSegment 1.2s cubic-bezier(0.4, 0, 0.2, 1) 3.6s forwards; }

.chart-number {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.chart-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 31, 65, 0.1) 0%, rgba(0, 31, 65, 0.3) 50%, rgba(0, 31, 65, 0.1) 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-number.growing::before {
    opacity: 1;
}

.number-counter {
    font-size: 3.2rem;
    font-weight: 800;
    color: #001f41;
    display: inline-block;
    min-width: 80px;
    transition: all 0.15s ease;
    transform-origin: center;
    text-shadow: 0 1px 2px rgba(0, 31, 65, 0.1);
}

.number-unit {
    font-size: 2.4rem;
    font-weight: 700;
    color: #003366;
    margin-left: 0.5rem;
}

/* Animaciones */
@keyframes fadeInGrid {
    to {
        opacity: 1;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawSegment {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.chart-number {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.user-icon {
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    opacity: 1;
    transform: scale(1);
}

.plus-symbol {
    font-size: 2.4rem;
    font-weight: 700;
    color: #003366;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}

.plus-symbol.show {
    opacity: 1;
    transform: scale(1);
}

/* Contador animado */
.number-counter.animate {
    animation: countUp 2s ease 2.5s forwards;
}

@keyframes countUp {
    from {
        content: "0";
    }
    to {
        content: attr(data-target);
    }
}

/* Responsive del gráfico */
@media screen and (max-width: 480px) {
    .product-hero {
        padding: 2rem 0;
        min-height: 40vh;
    }
    
    /* Ajustar altura mínima cuando no hay CTA ni descripción */
    .product-hero.compact-height {
        min-height: 30vh;
    }

    .product-hero__container {
        padding: 0 1rem;
    }

    .product-hero__content {
        gap: 1.5rem;
    }

    .product-hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }
    
    /* Ajustes de espaciado compacto para mobile muy pequeño */
    .product-hero__title.compact-margin {
        margin-bottom: 0.8rem;
    }
    
    .product-hero__title.no-bottom-margin {
        margin-bottom: 0;
    }

    .product-hero__description {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .product-hero__cta {
        margin-top: 1.2rem;
    }
    
    .product-hero__cta-button {
        padding: 1rem 2rem;
        font-size: 1.4rem;
        min-width: 160px;
    }
}

@media screen and (max-width: 768px) {
    .product-hero__chart {
        max-width: 100%;
    }
    
    .chart-container {
        padding: 2rem;
        border-radius: 1.5rem;
    }
    
    .chart-wrapper {
        height: 180px;
    }
    
    .number-counter {
        font-size: 2.8rem;
    }
    
    .plus-symbol {
        font-size: 2.2rem;
    }
    
    .user-icon {
        width: 2.2rem;
        height: 2.2rem;
    }
}

@media screen and (max-width: 480px) {
    .chart-container {
        padding: 1.5rem;
        border-radius: 1.2rem;
    }
    
    .chart-wrapper {
        height: 160px;
        margin-bottom: 1.5rem;
    }
    
    .number-counter {
        font-size: 2.4rem;
        min-width: 60px;
    }
    
    .plus-symbol {
        font-size: 2rem;
    }
    
    .user-icon {
        width: 2rem;
        height: 2rem;
    }
}

@media screen and (max-width: 375px) {
    .product-hero {
        padding: 1.5rem 0;
        min-height: 35vh;
    }
    
    /* Ajustar altura mínima cuando no hay CTA ni descripción */
    .product-hero.compact-height {
        min-height: 25vh;
    }

    .product-hero__container {
        padding: 0 0.8rem;
    }

    .product-hero__content {
        gap: 1.2rem;
    }

    .product-hero__title {
        font-size: clamp(2rem, 11vw, 3.2rem);
        margin-bottom: 1rem;
        line-height: 1.15;
    }
    
    /* Ajustes de espaciado compacto para mobile muy pequeño */
    .product-hero__title.compact-margin {
        margin-bottom: 0.6rem;
    }
    
    .product-hero__title.no-bottom-margin {
        margin-bottom: 0;
    }

    .product-hero__description {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .product-hero__cta {
        margin-top: 1rem;
    }
    
    .product-hero__cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1.3rem;
        min-width: 150px;
    }
    
    .chart-container {
        padding: 1.2rem;
        border-radius: 1rem;
    }
    
    .chart-wrapper {
        height: 140px;
    }
    
    .number-counter {
        font-size: 2.2rem;
        min-width: 50px;
    }
    
    .plus-symbol {
        font-size: 1.8rem;
    }
    
    .user-icon {
        width: 1.8rem;
        height: 1.8rem;
    }
}