
:root {
    --font-base: 16px;
    --scale: 1.25;
}

    
         body {
            background-color: #FAD7E5;
            color: black;
            font-family: Arial, sans-serif;
            overflow-x: hidden;
            font-size: var(--font-base);
            line-height: 1.5;
        }

        /* Jerarquía tipográfica */
        h1 {
            font-family: 'Poppins', sans-serif;
            font-size: calc(var(--font-base) * 1.14); /* 31.5px */
            margin-bottom: 0.75em;
        }
        
        h2 {
            font-family: 'Poppins', sans-serif;
            font-size: calc(var(--font-base) * 1.14); /* 24.5px */
            margin-bottom: 0.75em;
        }
        
        h3 {
            font-size: calc(var(--font-base) * 1.14); /* 21px */
            margin-bottom: 0.5em;
        }
        
        h4 {
            font-size: calc(var(--font-base) * 1.14); /* 17.5px */
            margin-bottom: 0.5em;
        }
        
        p, li, a {
            font-size: var(--font-base); /* 14px */
        }
        
        .small-text {
            font-size: calc(var(--font-base) * 1); /* ~12px */
        }

        /* Componentes específicos */
        .header {
            background-color: #D92A35;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        
        .header::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            height: 120px;
            background: #D92A35;
            transform: skewY(-3deg);
            z-index: 1;
        }

        .header img {
            margin: 20px 0;
            max-width: 50%;
            height: auto;
            image-rendering: -webkit-optimize-contrast;
        }
        
        .header-logo {
            width: 200px;
        }
        
        .header-main-img {
            width: 100%;
            max-width: 300px;
        }
        
        .social-section {
            margin: 15px 0;
            position: relative;
            z-index: 2;
        }
        
        .follow-text {
            color: white;
            font-size: calc(var(--font-base) * 1.14); /* ~16px */
            margin-bottom: 10px;
        }
        
        .social-icons img {
            width: 28px;
            margin: 0 8px;
        }
        
        .section-title {
            position: relative;
            z-index: 3;
            margin: 40px 0 0;
            text-align: center;
        }
        
        .section-title img {
            width: 100%;
            max-width: 300px;
        }
        
        .products {
            position: relative;
            z-index: 2;
            padding: 20px 0;
        }
        
        .product-section {
            margin-bottom: 40px;
        }
        
        .product-image {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
            display: block;
        }
        
        .red-text {
            color: #D92A35;
            font-weight: bold;
        }
        
        .red-text-light {
            color: #D92A35;
            font-weight: lighter;
            font-size: calc(var(--font-base) * 1.14); /* ~12px */
        }
        
        .product-title {
            font-family: 'Poppins', sans-serif;
            font-size: calc(var(--font-base) * 1.14); /* 24.5px */
            margin-bottom: 0.5em;
        }
        
        .product-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: calc(var(--font-base) * 1.14); /* 21px */
            margin-bottom: 0.5em;
        }
        
        .product-description {
            margin-bottom: 1em;
        }
        
        .footer {
            background-color: #D92A35;
            color: white;
            text-align: center;
            padding: 25px 15px;
        }
        
        .footer-columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
            gap: 20px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 150px;
            margin: 10px 0;
        }
        
        .footer-logo {
            width: 50px;
            margin-bottom: 10px;
        }
        
        .footer-social img {
            width: 28px;
            margin: 0 5px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin: 5px 0;
        }
        
        /* Media Queries para dispositivos móviles */
        @media (max-width: 768px) {
            :root {
                --font-base: 15px;
            }
            
            .header {
                padding: 10px 0;
            }
            
            .header::after {
                bottom: -30px;
                height: 60px;
            }
            
            .header-logo {
                width: 80px;
            }
            
            .section-title {
                margin: 30px 0 0;
            }
            
            .product-row {
                flex-direction: column;
            }
            
            .reverse-on-mobile {
                flex-direction: column-reverse;
            }
            
            .footer-columns {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            :root {
                --font-base: 12px;
            }
            
            .header::after {
                bottom: -20px;
                height: 40px;
            }
            
            .follow-text {
                font-size: calc(var(--font-base) * 1.16); /* ~14px */
            }
            
            .social-icons img {
                width: 24px;
                margin: 0 6px;
            }
        }