/*-------------------------
           NUEVO STYLE
-------------------------*/
     
        .product-card {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
        }
        
        .product-content {
            display: flex;
            flex-wrap: wrap;
        }
            
        .info-section {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
            flex: 1;
        }
        
        .model-name {
            color: #6c757d;
            font-size: 20px;
            font-weight: 500;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .product-title {
            font-size: 20px;
            font-weight: 500;
            color: #6c757d;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .product-subtitle {
            color: #6c757d;
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.5;
        }
        
        .specs-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .spec-item {
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 3px solid #c4b175;
            width: calc(50% - 7.5px);
            box-sizing: border-box;
        }
        
        .spec-label {
            font-size: 12px;
            color: #6c757d;
            font-weight: 500;
            text-transform: uppercase;
        }
        
        .spec-value {
            font-size: 14px;
            color: #212529;
            font-weight: 600;
            margin-top: 2px;
        }
        
        .price-section {
            margin-bottom: 30px;
        }
        
        .price {
            font-size: 18px;
            font-weight: 700;
            color: #c4b175;
            margin-bottom: 5px;
        }
        
        .price-note {
            font-size: 13px;
            color: #6c757d;
            font-style: italic;
        }
        
        .cta-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .cta-primary {
            background: linear-gradient(135deg, #e3e4e5 0%, #bababa 100%);
            color: #000;
            border: none;
            padding: 18px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(138, 138, 138, 0.4);
        }
        
        .cta-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .cta-primary:hover:before {
            left: 100%;
        }
        
        .cta-secondary {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
            padding: 16px 30px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .cta-secondary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-1px);
        }
        
       /* .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            border-radius: 50px;
            padding: 15px 25px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse 2s infinite;
        }
        */

            .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 25px; /* Reducido a la mitad */
    padding: 7px 12px; /* Reducido a la mitad */
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); /* Ajuste proporcional */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 5px; /* También reducido */
    animation: pulse 2s infinite;
    font-size: 0.8em; /* Reducir tamaño del texto */
}


        @keyframes pulse {
            0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7); }
            100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
        }
        
        .whatsapp-float:hover {
            transform: scale(1.05);
        }
        
        .trust-badges {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #e9ecef;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6c757d;
            font-size: 12px;
        }
        
        .icon {
            width: 16px;
            height: 16px;
            fill: #a7996b;
        }
        
        @media (max-width: 768px) {
            .info-section {
                width: 100%;
                padding: 30px;
            }
            
            .spec-item {
                width: 100%;
            }
        }
  
   

/*# sourceMappingURL=main.css.map */